diff --git a/aurorastation.dme b/aurorastation.dme index f26db745806..4da42f5e9d9 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -2098,7 +2098,6 @@ #include "code\modules\cooking\plasticbag.dm" #include "code\modules\cooking\plates.dm" #include "code\modules\cooking\trays.dm" -#include "code\modules\cooking\machinery\foodcart.dm" #include "code\modules\cooking\machinery\gibber.dm" #include "code\modules\cooking\machinery\icecream.dm" #include "code\modules\cooking\machinery\smartfridge.dm" @@ -2267,7 +2266,6 @@ #include "code\modules\ghostroles\spawner\atom\diona_nymph.dm" #include "code\modules\ghostroles\spawner\atom\golem.dm" #include "code\modules\ghostroles\spawner\atom\greimorian_servant.dm" -#include "code\modules\ghostroles\spawner\atom\hivebot.dm" #include "code\modules\ghostroles\spawner\atom\living_plant.dm" #include "code\modules\ghostroles\spawner\atom\matriarchmaintdrone.dm" #include "code\modules\ghostroles\spawner\atom\mining_drone.dm" @@ -4004,10 +4002,7 @@ #include "maps\away\ships\coc\gadpathur_patrol\gadpathur_patrol_doors.dm" #include "maps\away\ships\coc\gadpathur_patrol\gadpathur_patrol_ghostroles.dm" #include "maps\away\ships\dominia\dominian_corvette\dominian_corvette.dm" -#include "maps\away\ships\dominia\dominian_corvette\dominian_corvette_areas.dm" #include "maps\away\ships\dominia\dominian_corvette\dominian_corvette_ghostroles.dm" -#include "maps\away\ships\dominia\dominian_corvette\dominian_corvette_landmarks.dm" -#include "maps\away\ships\dominia\dominian_corvette\dominian_corvette_shuttle.dm" #include "maps\away\ships\dominia\dominian_science_vessel\dominian_science_vessel.dm" #include "maps\away\ships\dominia\dominian_science_vessel\dominian_science_vessel_areas.dm" #include "maps\away\ships\dominia\dominian_science_vessel\dominian_science_vessel_ghostroles.dm" diff --git a/code/__DEFINES/background.dm b/code/__DEFINES/background.dm index 11065102620..ae936abb57d 100644 --- a/code/__DEFINES/background.dm +++ b/code/__DEFINES/background.dm @@ -167,7 +167,6 @@ #define ACCENT_ZAZ_LOW "Zazalai Mountains Peasant" #define ACCENT_ZAZ_HIGH "Zazalai Mountains Noble" #define ACCENT_OUEREA "Ouerea" -#define ACCENT_UNATHI_MOROZI "Unathi Morozi" #define ACCENT_SKRELL "Standard Nral'Malic" #define ACCENT_HOMEWORLD "Qerrbalak" diff --git a/code/__DEFINES/global.dm b/code/__DEFINES/global.dm index cfbcb78adc0..1d4ecedfe97 100644 --- a/code/__DEFINES/global.dm +++ b/code/__DEFINES/global.dm @@ -68,7 +68,6 @@ GLOBAL_LIST_EMPTY(latejoin) GLOBAL_LIST_EMPTY(latejoin_cryo) GLOBAL_LIST_EMPTY(latejoin_cyborg) GLOBAL_LIST_EMPTY(latejoin_living_quarters_lift) -GLOBAL_LIST_EMPTY(latejoin_medbay_recovery) GLOBAL_LIST_EMPTY(kickoffsloc) GLOBAL_LIST_EMPTY(virtual_reality_spawn) diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index c47c4570b30..d79d51ec91e 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -177,8 +177,6 @@ #define RADIAL_BASE_LAYER 6 #define RADIAL_CONTENT_LAYER 7 -#define BALLOON_CHAT_PLANE 9 - /// This plane masks out lighting, to create an "emissive" effect for e.g glowing screens in otherwise dark areas. #define EMISSIVE_PLANE 10 #define EMISSIVE_TARGET "*emissive" diff --git a/code/__DEFINES/species_languages.dm b/code/__DEFINES/species_languages.dm index 52da8480ae0..3332d6ec047 100644 --- a/code/__DEFINES/species_languages.dm +++ b/code/__DEFINES/species_languages.dm @@ -71,7 +71,6 @@ #define LANGUAGE_GREIMORIAN "Greimorian Chattering" //Intelligent Greimorians #define LANGUAGE_GREIMORIAN_HIVEMIND "Greimorian Hivemind" //Intelligent Greimorian Hivemind #define LANGUAGE_PURPOSE "Encrypted Transmission" //Purpose -#define LANGUAGE_HIVEBOT "Hivebot Network" //Hivebots // Lesser-form Languages #define LANGUAGE_GIBBERING "Gibbering" // alberyk diff --git a/code/_onclick/hud/rendering/_renderer.dm b/code/_onclick/hud/rendering/_renderer.dm index a5a7bde03c7..bfb7e768bc5 100644 --- a/code/_onclick/hud/rendering/_renderer.dm +++ b/code/_onclick/hud/rendering/_renderer.dm @@ -286,13 +286,6 @@ INITIALIZE_IMMEDIATE(/atom/movable/renderer) plane = HUD_PLANE renderer_flags = RENDERER_FLAG_AUTO -/// Draws balloon alert elements. NOT RUNECHAT -/atom/movable/renderer/balloon_alert - name = "Balloon Chat" - group = RENDER_GROUP_SCREEN - plane = BALLOON_CHAT_PLANE - renderer_flags = RENDERER_FLAG_AUTO - /* * * Group renderers diff --git a/code/controllers/subsystems/job.dm b/code/controllers/subsystems/job.dm index 2d26f780403..4db9b5a10e7 100644 --- a/code/controllers/subsystems/job.dm +++ b/code/controllers/subsystems/job.dm @@ -598,12 +598,12 @@ SUBSYSTEM_DEF(jobs) . = spawnpos.msg spawnpos.after_join(H) else - to_chat(H, "Your chosen spawnpoint ([spawnpos.display_name]) is unavailable for your chosen job. Spawning you at the [SSatlas.current_map.default_spawn] instead.") + to_chat(H, "Your chosen spawnpoint ([spawnpos.display_name]) is unavailable for your chosen job. Spawning you at the Arrivals shuttle instead.") H.forceMove(pick(GLOB.latejoin)) - . = "is inbound from the [SSatlas.current_map.default_spawn]" + . = "is inbound from the [SSatlas.current_map.dock_name]" else H.forceMove(pick(GLOB.latejoin)) - . = "is inbound from the [SSatlas.current_map.default_spawn]" + . = "is inbound from the [SSatlas.current_map.dock_name]" H.mind.selected_faction = SSjobs.GetFaction(H) diff --git a/code/datums/trading/food.dm b/code/datums/trading/food.dm index ab927688c45..11387871e4f 100644 --- a/code/datums/trading/food.dm +++ b/code/datums/trading/food.dm @@ -251,7 +251,7 @@ /obj/item/reagent_containers/food/drinks/bottle/treebark_firewater = TRADER_THIS_TYPE, /obj/item/reagent_containers/food/drinks/bottle/veterans_choice = TRADER_THIS_TYPE, /obj/item/reagent_containers/food/drinks/bottle/small/midynhr_water = TRADER_THIS_TYPE, - /obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor = TRADER_THIS_TYPE, + /obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor = TRADER_THIS_TYPE, /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine = TRADER_THIS_TYPE, /obj/item/reagent_containers/food/drinks/bottle/small/khlibnyz = TRADER_THIS_TYPE, /obj/item/reagent_containers/food/drinks/bottle/hrozamal_soda = TRADER_THIS_TYPE diff --git a/code/defines/gases.dm b/code/defines/gases.dm index 3d62ffca155..a5d8f3ecb1b 100644 --- a/code/defines/gases.dm +++ b/code/defines/gases.dm @@ -122,9 +122,3 @@ specific_heat = 11 molar_mass = 0.011 flags = XGM_GAS_FUSION_FUEL - -/singleton/xgm_gas/nitrogendioxide - id = GAS_NO2 - name = "Nitrogen Dioxide" - specific_heat = 33 // J/(mol*K) - molar_mass = 0.046 // kg/mol diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index 5b6095e96d8..f4d19f47a97 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -276,6 +276,13 @@ icon_state = "crutch" item_state = "crutch" +/obj/item/cane/white + name = "white cane" + desc = "A white cane, used by the visually impaired." + icon_state = "whitecane" + item_state = "whitecane" + can_support = FALSE + /obj/item/cane/shillelagh name = "adhomian shillelagh" desc = "A sturdy walking stick made from adhomian wood." @@ -296,26 +303,22 @@ pickup_sound = 'sound/items/pickup/crowbar.ogg' var/on = FALSE can_support = FALSE - var/extended_icon_state = "telecane_1" - var/extended_item_state = "telestick" - var/retracted_icon_state = "telecane" - var/retracted_item_state = "telestick_0" /obj/item/cane/telecane/attack_self(mob/user) on = !on if(on) - user.visible_message(SPAN_NOTICE("With a flick of their wrist, [user] extends their [src.name]"), SPAN_NOTICE("You extend the [src.name]."), SPAN_NOTICE("You hear a click.")) - icon_state = extended_icon_state - item_state = extended_item_state + user.visible_message(SPAN_WARNING("With a flick of their wrist, [user] extends their telescopic cane."), SPAN_WARNING("You extend the cane."), SPAN_WARNING("You hear an ominous click.")) + icon_state = "telecane_1" + item_state = "telestick" w_class = WEIGHT_CLASS_BULKY slot_flags = null force = 14 attack_verb = list("smacked", "struck", "slapped") can_support = TRUE else - user.visible_message(SPAN_NOTICE("\The [user] collapses their [src.name]."), SPAN_NOTICE("You collapse the [src.name]."), SPAN_NOTICE("You hear a click.")) - icon_state = retracted_icon_state - item_state = retracted_item_state + user.visible_message(SPAN_NOTICE("\The [user] collapses their telescopic cane."), SPAN_NOTICE("You collapse the cane."), SPAN_NOTICE("You hear a click.")) + icon_state = "telecane" + item_state = "telestick_0" w_class = WEIGHT_CLASS_SMALL slot_flags = SLOT_BELT force = 3 @@ -323,23 +326,13 @@ can_support = FALSE if(istype(user,/mob/living/carbon/human)) - update_held_icon() + var/mob/living/carbon/human/H = user + H.update_inv_l_hand() + H.update_inv_r_hand() playsound(src.loc, 'sound/weapons/click.ogg', 50, 1) add_fingerprint(user) -/obj/item/cane/telecane/white - name = "white cane" - desc = "A white cane, used by the visually impaired." - icon = 'icons/obj/item/whitecane.dmi' - icon_state = "whitecane" - drop_sound = /singleton/sound_category/generic_drop_sound - pickup_sound = /singleton/sound_category/generic_pickup_sound - extended_icon_state = "whitecane_extended" - extended_item_state = "whitecane" - retracted_icon_state = "whitecane" - retracted_item_state = "whitecane_0" - /obj/item/disk name = "disk" icon = 'icons/obj/items.dmi' diff --git a/code/game/atom/atom_defense.dm b/code/game/atom/atom_defense.dm index 8c408791900..1bf1fa61d2e 100644 --- a/code/game/atom/atom_defense.dm +++ b/code/game/atom/atom_defense.dm @@ -1,8 +1,3 @@ -/// Called after the atom takes damage and integrity is below integrity_failure level -/atom/proc/atom_break(damage_flag) - SHOULD_CALL_PARENT(TRUE) -// SEND_SIGNAL(src, COMSIG_ATOM_BREAK, damage_flag) - /// A cut-out proc for [/atom/proc/bullet_act] so living mobs can have their own armor behavior checks without causing issues with needing their own on_hit call /atom/proc/check_projectile_armor(def_zone, obj/projectile/impacting_projectile, is_silent) // if(uses_integrity) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index a6d17d0a709..e83fb3711c3 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -119,7 +119,7 @@ department_flag = MEDSCI faction = "Station" alt_titles = list("Anomalist") - alt_outfits = list("Anomalist" = /obj/outfit/job/scientist/anomalist) + alt_outfits = list("Anomalist" = "/obj/outfit/job/scientist/anomalist") total_positions = 2 spawn_positions = 2 supervisors = "the research director" diff --git a/code/game/machinery/Sleeper.dm b/code/game/machinery/Sleeper.dm index 9a172195153..be74bbb5e41 100644 --- a/code/game/machinery/Sleeper.dm +++ b/code/game/machinery/Sleeper.dm @@ -85,10 +85,7 @@ /obj/machinery/sleeper/update_icon() flick("[initial(icon_state)]-anim", src) if(occupant) - if(stat & NOPOWER || stat & BROKEN) - icon_state = "[initial(icon_state)]-closed" - else - icon_state = "[initial(icon_state)]-working" + icon_state = "[initial(icon_state)]-closed" return else icon_state = initial(icon_state) @@ -275,7 +272,7 @@ to_chat(user, "You [src.panel_open ? "open" : "close"] the maintenance panel.") ClearOverlays() if(src.panel_open) - AddOverlays("[initial(icon_state)]-panel") + AddOverlays("[initial(icon_state)]-o") return TRUE else if(default_part_replacement(user, attacking_item)) return TRUE diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 9d80a3a3418..bbc55313f24 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -657,8 +657,7 @@ pixel_x = 10; /obj/machinery/alarm/interact(mob/user) ui_interact(user) - if (wiresexposed) - wires.interact(user) + wires.interact(user) /obj/machinery/alarm/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 1, var/master_ui = null, var/datum/ui_state/state = GLOB.default_state) var/data = list() diff --git a/code/game/machinery/autolathe/autolathe.dm b/code/game/machinery/autolathe/autolathe.dm index 6b5baf4e1c8..e7ae37870d1 100644 --- a/code/game/machinery/autolathe/autolathe.dm +++ b/code/game/machinery/autolathe/autolathe.dm @@ -170,6 +170,15 @@ if(stat) return TRUE + if(panel_open) + //Don't eat multitools or wirecutters used on an open lathe. + if(attacking_item.ismultitool() || attacking_item.iswirecutter()) + if(panel_open) + wires.interact(user) + else + to_chat(user, SPAN_WARNING("\The [src]'s wires aren't exposed.")) + return TRUE + if(attacking_item.loc != user && !istype(attacking_item, /obj/item/stack)) return FALSE @@ -180,8 +189,6 @@ return TRUE /obj/machinery/autolathe/attack_hand(mob/user) - if(panel_open) - wires.interact(user) user.set_machine(src) ui_interact(user) diff --git a/code/game/machinery/biogenerator.dm b/code/game/machinery/biogenerator.dm index 6232ed66147..a66b185eb0b 100644 --- a/code/game/machinery/biogenerator.dm +++ b/code/game/machinery/biogenerator.dm @@ -120,10 +120,6 @@ FOODSTUFFS name = "Universal Enzyme (50u)" object = /obj/item/reagent_containers/food/condiment/enzyme -/singleton/biorecipe/food/blood - name = "Synthetic Blood (50u)" - object = /obj/item/reagent_containers/food/condiment/blood - /singleton/biorecipe/food/pepper name = "Pepper Grinder" object = /obj/item/reagent_containers/food/condiment/shaker/peppermill @@ -249,28 +245,6 @@ ITEMS object = /obj/item/storage/bag/plants cost = 250 -// Like soap, but better! -/singleton/biorecipe/item/mop - name = "Mop" - object = /obj/item/mop - cost = 400 - -/singleton/biorecipe/item/filterbox - name = "Cigarette Filters" - object = /obj/item/storage/cigfilters - cost = 200 - -/singleton/biorecipe/item/cigarettepaper - name = "Cigarette Paper" - object = /obj/item/storage/box/fancy/cigpaper - cost = 200 - -// Intended to accomodate hydroponicists preparing their own first-aid kits for themselves or the crew. -/singleton/biorecipe/item/emptyfirstaid - name = "Empty First Aid Kit" - object = /obj/item/storage/firstaid/empty - cost = 200 - /* FLAGS */ @@ -381,10 +355,6 @@ CONSTRUCTION object = /obj/item/stack/material/plastic cost = 75 -/singleton/biorecipe/construction/wood - name = "Wood" - object = /obj/item/stack/material/wood - /* CLOTHING */ diff --git a/code/game/machinery/body_scanner.dm b/code/game/machinery/body_scanner.dm index 8205e4155eb..edfa5fd6802 100644 --- a/code/game/machinery/body_scanner.dm +++ b/code/game/machinery/body_scanner.dm @@ -7,7 +7,7 @@ Click your target with Grab intent, then click on the scanner to place them in it. Click the connected terminal to operate. \ Right-click the scanner and click 'Eject Occupant' to remove them. You can enter the scanner yourself in a similar way, using the 'Enter Body Scanner' \ verb." - icon = 'icons/obj/machinery/bodyscanner.dmi' + icon = 'icons/obj/machinery/sleeper.dmi' icon_state = "body_scanner" density = TRUE anchored = TRUE @@ -56,15 +56,12 @@ /obj/machinery/bodyscanner/Destroy() // So the GC can qdel this. if (connected) - connected.unlink_scanner() + connected.connected = null connected = null occupant = null return ..() /obj/machinery/bodyscanner/update_icon() - ClearOverlays() - if(panel_open) - AddOverlays("[icon_state]-panel") flick("[initial(icon_state)]-anim", src) if(occupant) name = "[name] ([occupant])" @@ -250,8 +247,8 @@ name = "body scanner console" var/tgui_name = "Zeng-Hu Pharmaceuticals Body Scanner" desc = "An advanced control panel that can be used to interface with a connected body scanner." - icon = 'icons/obj/machinery/bodyscanner.dmi' - icon_state = "body_scanner_console" + icon = 'icons/obj/machinery/sleeper.dmi' + icon_state = "body_scannerconsole" var/obj/machinery/bodyscanner/connected var/collapse_desc = "" var/broken_desc = "" @@ -265,6 +262,7 @@ /obj/item/stock_parts/scanning_module = 2, /obj/item/stock_parts/console_screen ) + var/global/image/console_overlay var/list/connected_displays = list() var/list/data = list() var/scan_data @@ -287,36 +285,23 @@ /obj/machinery/body_scanconsole/update_icon() ClearOverlays() - if(panel_open) - AddOverlays("[icon_state]_panel") if((stat & BROKEN) || (stat & NOPOWER)) return - if(connected) - if(connected.stat & BROKEN || connected.stat & NOPOWER) - return - AddOverlays(emissive_appearance(icon, "[icon_state]_lights")) - AddOverlays("[icon_state]_lights") + else + if(!console_overlay) + console_overlay = image(icon, "body_scannerconsole-screen") + var/emissive_overlay = emissive_appearance(icon, "body_scannerconsole-screen") + AddOverlays(console_overlay) + AddOverlays(emissive_overlay) + set_light(1.4, 1, COLOR_PURPLE) /obj/machinery/body_scanconsole/Initialize() . = ..() - FindScanner() - update_icon() - -/obj/machinery/body_scanconsole/proc/FindScanner() for(var/obj/machinery/bodyscanner/C in orange(1,src)) connected = C - RegisterSignal(connected, COMSIG_QDELETING, PROC_REF(on_linked_scanner_deletion)) break if(connected) connected.connected = src - -/obj/machinery/body_scanconsole/proc/on_linked_scanner_deletion() - SIGNAL_HANDLER - unlink_scanner() - -/obj/machinery/body_scanconsole/proc/unlink_scanner() - connected = null - UnregisterSignal(connected, COMSIG_QDELETING) update_icon() /obj/machinery/body_scanconsole/attack_ai(var/mob/user) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index e30a94382c7..bcd0b74cd23 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -166,7 +166,7 @@ /obj/structure/cryofeed name = "cryogenic feed" desc = "A bewildering tangle of machinery and pipes." - icon = 'icons/obj/machinery/cryopod.dmi' + icon = 'icons/obj/machinery/sleeper.dmi' icon_state = "cryo_rear" anchored = TRUE dir = WEST @@ -174,15 +174,15 @@ /obj/structure/cryofeed/pipes name = "cryogenic feed pipes" desc = "A bewildering tangle of pipes." - icon = 'icons/obj/machinery/cryopod.dmi' + icon = 'icons/obj/machinery/sleeper.dmi' icon_state = "cryo_rear_pipes" //Cryopods themselves. /obj/machinery/cryopod name = "cryogenic freezer" desc = "A man-sized pod for entering suspended animation." - icon = 'icons/obj/machinery/cryopod.dmi' - icon_state = "cryo_pod" + icon = 'icons/obj/machinery/sleeper.dmi' + icon_state = "body_scanner" density = TRUE anchored = TRUE dir = WEST diff --git a/code/game/machinery/howitzer.dm b/code/game/machinery/howitzer.dm index fdd48f0de83..fd7bad1ecee 100644 --- a/code/game/machinery/howitzer.dm +++ b/code/game/machinery/howitzer.dm @@ -169,7 +169,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) return if(rotation_timerid) - balloon_alert_to_viewers("already doing an alignment!") + balloon_alert_to_viewers("The howitzer is already doing an alignment!") return //Not the same angle we are at, we have to rotate @@ -191,7 +191,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) if(degrees_to_rotate > 180) degrees_to_rotate = 360 - degrees_to_rotate - balloon_alert_to_viewers("rotating...") + balloon_alert_to_viewers("The howitzer starts to rotate!") //Start the rotation looping sound rotation_looping_sound = new rotation_looping_sound_type(src) @@ -210,7 +210,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) horizontal_angle = angle set_dir(wanted_dir) - balloon_alert_to_viewers("finished rotating") + balloon_alert_to_viewers("The howitzer stops rotating!") rotation_looping_sound.stop() QDEL_NULL(rotation_looping_sound) @@ -227,7 +227,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) return if(rotation_timerid) - balloon_alert_to_viewers("already doing an alignment!") + balloon_alert_to_viewers("The howitzer is already doing an alignment!") return if(vertical_angle != angle) @@ -238,7 +238,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) if(degrees_to_change > 180) //Yes this shouldn't happen, copy paste anyways degrees_to_change = 360 - degrees_to_change - balloon_alert_to_viewers("changing elevation...") + balloon_alert_to_viewers("The howitzer starts to change the elevation!") rotation_looping_sound = new rotation_looping_sound_type(src) rotation_looping_sound.start() @@ -253,7 +253,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) vertical_angle = angle - balloon_alert_to_viewers("finished changing elevation") + balloon_alert_to_viewers("The howitzer steadies the barrel at the requested elevation!") rotation_looping_sound.stop() QDEL_NULL(rotation_looping_sound) @@ -266,7 +266,7 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) */ /obj/machinery/howitzer/proc/fire(mob/user) if(!anchored) - balloon_alert_to_viewers("not anchored down!") + balloon_alert_to_viewers("The howitzer is not anchored down!") to_chat(user, SPAN_WARNING("The howitzer is not anchored down!")) return @@ -274,12 +274,12 @@ ABSTRACT_TYPE(/obj/machinery/howitzer) return if(!ready_to_fire) - balloon_alert_to_viewers("not ready to fire!") + balloon_alert_to_viewers("The howitzer is not ready to fire, it's adjusting the aim!") to_chat(user, SPAN_WARNING("The howitzer is not ready to fire, it's adjusting the aim!")) return if(!loaded_shot) - balloon_alert_to_viewers("barrel is empty!") + balloon_alert_to_viewers("The barrel is empty!") to_chat(user, SPAN_WARNING("The barrel is empty!")) return diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm index a93e6181ede..0eda4c631bd 100644 --- a/code/game/machinery/status_display.dm +++ b/code/game/machinery/status_display.dm @@ -59,11 +59,6 @@ SSradio.remove_object(src,frequency) return ..() -// screens have a layer above, so we can't attach here -/obj/machinery/status_display/can_attach_sticker(var/mob/user, var/obj/item/sticker/S) - to_chat(user, SPAN_WARNING("\The [src]'s non-stick surface prevents you from attaching a sticker to it!")) - return FALSE - // register for radio system /obj/machinery/status_display/Initialize() . = ..() diff --git a/code/game/machinery/suit_cycler.dm b/code/game/machinery/suit_cycler.dm index 0136bba30a0..6253a2f5915 100644 --- a/code/game/machinery/suit_cycler.dm +++ b/code/game/machinery/suit_cycler.dm @@ -201,6 +201,12 @@ to_chat(user, SPAN_WARNING("Access denied.")) return + //Hacking init. + if(attacking_item.ismultitool() || attacking_item.iswirecutter()) + if(panel_open) + wires.interact(user) + return + //Other interface stuff. if(istype(attacking_item, /obj/item/grab)) var/obj/item/grab/G = attacking_item diff --git a/code/game/machinery/vending_types.dm b/code/game/machinery/vending_types.dm index 2fa3d80e9d9..f89d083ac35 100644 --- a/code/game/machinery/vending_types.dm +++ b/code/game/machinery/vending_types.dm @@ -1,3 +1,4 @@ + /* * Vending machine types */ @@ -66,7 +67,6 @@ /obj/item/reagent_containers/food/drinks/bottle/wine = 5, /obj/item/reagent_containers/food/drinks/bottle/rose_wine = 5, /obj/item/reagent_containers/food/drinks/bottle/whitewine = 5, - /obj/item/reagent_containers/food/drinks/bottle/skrellwineylpha = 2, /obj/item/reagent_containers/food/drinks/bottle/drambuie = 4, /obj/item/reagent_containers/food/drinks/bottle/melonliquor = 2, /obj/item/reagent_containers/food/drinks/bottle/gin = 5, @@ -77,48 +77,28 @@ /obj/item/reagent_containers/food/drinks/bottle/bluecuracao = 2, /obj/item/reagent_containers/food/drinks/bottle/kahlua = 5, /obj/item/reagent_containers/food/drinks/bottle/triplesec = 5, - /obj/item/reagent_containers/food/drinks/bottle/sarezhiwine = 2, /obj/item/reagent_containers/food/drinks/bottle/champagne = 5, /obj/item/reagent_containers/food/drinks/bottle/vodka = 5, - /obj/item/reagent_containers/food/drinks/bottle/vodka/mushroom = 1, /obj/item/reagent_containers/food/drinks/bottle/pulque = 5, /obj/item/reagent_containers/food/drinks/bottle/fireball = 2, /obj/item/reagent_containers/food/drinks/bottle/whiskey = 5, - /obj/item/reagent_containers/food/drinks/bottle/victorygin = 2, /obj/item/reagent_containers/food/drinks/bottle/makgeolli = 2, /obj/item/reagent_containers/food/drinks/bottle/soju = 2, /obj/item/reagent_containers/food/drinks/bottle/sake = 1, /obj/item/reagent_containers/food/drinks/bottle/cremewhite = 4, /obj/item/reagent_containers/food/drinks/bottle/mintsyrup = 5, - /obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor = 2, /obj/item/reagent_containers/food/drinks/bottle/chartreuseyellow = 5, /obj/item/reagent_containers/food/drinks/bottle/messa_mead = 2, - /obj/item/reagent_containers/food/drinks/bottle/dominian_wine = 1, - /obj/item/reagent_containers/food/drinks/bottle/assunzione_wine = 1, - /obj/item/reagent_containers/food/drinks/bottle/algae_wine = 1, - /obj/item/reagent_containers/food/drinks/bottle/kvass = 1, - /obj/item/reagent_containers/food/drinks/bottle/tarasun = 1, - /obj/item/reagent_containers/food/drinks/bottle/valokki_wine = 1, - /obj/item/reagent_containers/food/drinks/bottle/twentytwoseventyfive = 1, - /obj/item/reagent_containers/food/drinks/bottle/saintjacques = 1, /obj/item/reagent_containers/food/drinks/bottle/hooch = 1, - /obj/item/reagent_containers/food/drinks/bottle/nemiik = 1, - /obj/item/reagent_containers/food/drinks/bottle/ogogoro = 2, - /obj/item/reagent_containers/food/drinks/carton/applejuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/skrellwineylpha = 2, /obj/item/reagent_containers/food/drinks/carton/cream = 4, - /obj/item/reagent_containers/food/drinks/carton/dynjuice = 2, /obj/item/reagent_containers/food/drinks/carton/limejuice = 4, /obj/item/reagent_containers/food/drinks/carton/lemonjuice = 4, /obj/item/reagent_containers/food/drinks/carton/orangejuice = 4, - /obj/item/reagent_containers/food/drinks/carton/tomatojuice = 2, - /obj/item/reagent_containers/food/drinks/carton/cranberryjuice = 2, - /obj/item/reagent_containers/food/drinks/carton/watermelonjuice = 2, - /obj/item/reagent_containers/food/drinks/carton/bananajuice = 2, - /obj/item/reagent_containers/food/drinks/carton/fatshouters = 1, - /obj/item/reagent_containers/food/drinks/carton/mutthir = 1, + /obj/item/reagent_containers/food/drinks/bottle/small/skrellbeerdyn = 8, + /obj/item/reagent_containers/food/drinks/bottle/small/xuizijuice = 8, /obj/item/reagent_containers/food/drinks/boba = 2, /obj/item/reagent_containers/food/drinks/ice = 9, - /obj/item/storage/box/fancy/vkrexi_swollen_organ = 1 ) contraband = list( /obj/item/reagent_containers/food/drinks/tea = 10 @@ -966,7 +946,7 @@ /obj/item/seeds/limeseed = 3, /obj/item/seeds/mtearseed = 3, /obj/item/seeds/mintseed = 3, - /obj/item/seeds/dirtberries = 2, + /obj/item/seeds/nifberries = 2, /obj/item/seeds/onionseed = 3, /obj/item/seeds/oracleseed = 3, /obj/item/seeds/orangeseed = 3, @@ -1050,7 +1030,7 @@ /obj/item/seeds/limeseed = 50, /obj/item/seeds/mtearseed = 60, /obj/item/seeds/mintseed = 70, - /obj/item/seeds/dirtberries = 70, + /obj/item/seeds/nifberries = 70, /obj/item/seeds/onionseed = 30, /obj/item/seeds/oracleseed = 50, /obj/item/seeds/orangeseed = 40, diff --git a/code/game/objects/effects/decals/misc.dm b/code/game/objects/effects/decals/misc.dm index 194fb983469..2ee5ad5eb8d 100644 --- a/code/game/objects/effects/decals/misc.dm +++ b/code/game/objects/effects/decals/misc.dm @@ -28,14 +28,6 @@ anchored = 1 layer = OBJ_LAYER -// Fancy animated effect used for the holodecks. -/obj/effect/decal/rolling_fog - name = "rolling fog" - icon = 'icons/effects/props/holodeck/biesel/32x32.dmi' - icon_state = "fog_roll" - anchored = 1 - layer = ABOVE_PROJECTILE_LAYER - /obj/effect/decal/fake_object/Initialize(mapload) .=..() appearance_flags &= ~TILE_BOUND diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index c6f3adc9f8b..4d5a2fca6b4 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -71,17 +71,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark) GLOB.latejoin_living_quarters_lift += get_turf(src) return INITIALIZE_HINT_QDEL -/** - * # Latejoin medbay marker - */ -/obj/effect/landmark/latejoinmedbayrecovery - invisibility = INVISIBILITY_ABSTRACT - -/obj/effect/landmark/latejoinmedbayrecovery/Initialize() - . = ..() - GLOB.latejoin_medbay_recovery += get_turf(src) - return INITIALIZE_HINT_QDEL /** * # Start marker diff --git a/code/game/objects/effects/misc.dm b/code/game/objects/effects/misc.dm index f00910606d7..da90b760d1c 100644 --- a/code/game/objects/effects/misc.dm +++ b/code/game/objects/effects/misc.dm @@ -38,14 +38,6 @@ /proc/shadow(atom/movable/target) new /atom/movable/afterimage(get_turf(target), target) -/obj/effect/temp_visual/cart_space - icon_state = "launchpad_launch" - duration = 2 SECONDS - -/obj/effect/temp_visual/cart_space/bad - icon_state = "launchpad_pull" - duration = 2 SECONDS - /obj/effect/constructing_effect icon = 'icons/effects/effects_rfd.dmi' icon_state = "" diff --git a/code/game/objects/items/devices/tvcamera.dm b/code/game/objects/items/devices/tvcamera.dm index 604a6e4dd79..cb8050bb505 100644 --- a/code/game/objects/items/devices/tvcamera.dm +++ b/code/game/objects/items/devices/tvcamera.dm @@ -55,23 +55,19 @@ if(href_list["video"]) camera.set_status(!camera.status) if(camera.status) - balloon_alert(usr, "streaming video") - to_chat(usr, SPAN_NOTICE("Video streaming: Activated. Broadcasting on channel: [channel]")) + balloon_alert(usr, SPAN_NOTICE("Video streaming: Activated. Broadcasting on channel: [channel]")) playsound(src.loc, 'sound/machines/ping.ogg', 50, 1) else - balloon_alert(usr, "stopped streaming video") - to_chat(usr, SPAN_NOTICE("Video streaming: Deactivated.")) + balloon_alert(usr, SPAN_NOTICE("Video streaming: Deactivated.")) playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 50, 1) update_icon() if(href_list["sound"]) radio.set_broadcasting(!radio.get_broadcasting()) if(radio.get_broadcasting()) - balloon_alert(usr, "streaming audio") - to_chat(usr, SPAN_NOTICE("Audio streaming: Activated. Broadcasting on frequency: [format_frequency(radio.get_frequency())].")) + balloon_alert(usr, SPAN_NOTICE("Audio streaming: Activated. Broadcasting on frequency: [format_frequency(radio.get_frequency())].")) playsound(src.loc, 'sound/machines/ping.ogg', 50, 1) else - balloon_alert(usr, "stopped streaming audio") - to_chat(usr, SPAN_NOTICE("Audio streaming: Deactivated.")) + balloon_alert(usr, SPAN_NOTICE("Audio streaming: Deactivated.")) playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 50, 1) if(!href_list["close"]) attack_self(usr) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index f93beca1e55..394272822d8 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -413,31 +413,37 @@ itself in every unconnected station, frontier colony, and doctors office across the spur. The magazine's fame largely comes from its writing, maintaining a perfect blend \ of entertaining commentary and nuanced summaries of recent discoveries." icon_state = "horticulture1" - item_state = "horticulture" + item_state = "horticulture1" /obj/item/toy/comic/magazine/horticulturetoday/issue1 desc = "A staple publication of all things horticulture. This issue is about sunflowers." icon_state = "horticulture1" + item_state = "horticulture1" /obj/item/toy/comic/magazine/horticulturetoday/issue2 desc = "A staple publication of all things horticulture. This issue is about root systems." icon_state = "horticulture2" + item_state = "horticulture2" /obj/item/toy/comic/magazine/horticulturetoday/issue3 desc = "A staple publication of all things horticulture. This issue is about garden flowers." icon_state = "horticulture3" + item_state = "horticulture3" /obj/item/toy/comic/magazine/horticulturetoday/issue4 desc = "A staple publication of all things horticulture. This issue is about wild flowers." icon_state = "horticulture4" + item_state = "horticulture4" /obj/item/toy/comic/magazine/horticulturetoday/issue5 desc = "A staple publication of all things horticulture. This issue is about tomatoes of all kinds." icon_state = "horticulture5" + item_state = "horticulture5" /obj/item/toy/comic/magazine/horticulturetoday/issue6 desc = "A staple publication of all things horticulture. This issue is about the genus Allium. Everything from Onions to Leeks." icon_state = "horticulture6" + item_state = "horticulture6" // // Toy Crossbows diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm index dead7295c7e..90be70bb91f 100644 --- a/code/game/objects/items/weapons/explosives.dm +++ b/code/game/objects/items/weapons/explosives.dm @@ -30,7 +30,7 @@ open_panel = !open_panel to_chat(user, SPAN_NOTICE("You [open_panel ? "open" : "close"] the wire panel.")) return TRUE - else if(open_panel) + else if(attacking_item.iswirecutter() || attacking_item.ismultitool() || istype(attacking_item, /obj/item/device/assembly/signaler )) wires.interact(user) return TRUE else diff --git a/code/game/objects/items/weapons/ipc_scanner.dm b/code/game/objects/items/weapons/ipc_scanner.dm index 6b575b4768e..f1c86faa6be 100644 --- a/code/game/objects/items/weapons/ipc_scanner.dm +++ b/code/game/objects/items/weapons/ipc_scanner.dm @@ -53,7 +53,10 @@ if(attacking_item.isscrewdriver()) wires_exposed = !wires_exposed user.visible_message(SPAN_WARNING("\The [user] [wires_exposed ? "exposes the wiring" : "closes the panel"] on \the [src]."), SPAN_WARNING("You [wires_exposed ? "expose the wiring" : "close the panel"] on \the [src]."), 3) - else if(wires_exposed) - wires.interact(user) + else if(attacking_item.iswirecutter() || attacking_item.ismultitool()) + if(wires_exposed) + wires.interact(user) + else + to_chat(user, SPAN_WARNING("\The [src]'s wires aren't exposed.")) else ..() diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index be0556a9e8c..dd9afabf0e6 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -1478,7 +1478,7 @@ /obj/item/reagent_containers/food/drinks/bottle/small/midynhr_water = 6 ) -/obj/item/storage/box/burukutu +/obj/item/storage/box/midynhr_water name = "pack of burukutu" desc = "A box containing a six pack of burukutu." illustration = "soda" diff --git a/code/game/objects/random/produce.dm b/code/game/objects/random/produce.dm index 88920fe0d94..0119755647c 100644 --- a/code/game/objects/random/produce.dm +++ b/code/game/objects/random/produce.dm @@ -48,16 +48,24 @@ /obj/random_produce/box // produce for spawning in chef produce boxes. better suited for the job produce_list = list( "chili" = 1, + "berries" = 0.25, "tomato" = 2, "eggplant" = 0.5, + "apple" = 0.25, "mushrooms" = 0.25, "cabbage" = 2, + "banana" = 0.5, "corn" = 2, "potato" = 2, "soybean" = 0.5, + "rice" = 2, "carrot" = 1, "whitebeet" = 1, "pumpkin" = 0.1, + "lime" = 0.25, + "lemon" = 0.25, + "cacao" = 0.5, + "cherry" = 0.25, "onion" = 0.5, "garlic" = 0.5, "bellpepper" = 0.25 diff --git a/code/game/objects/structures/crates_lockers/closets/secure/bar.dm b/code/game/objects/structures/crates_lockers/closets/secure/bar.dm index 7ab4e05dfa1..5a26574c165 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/bar.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/bar.dm @@ -23,21 +23,3 @@ new /obj/item/reagent_containers/food/drinks/bottle/small/beer(src) new /obj/item/reagent_containers/food/drinks/bottle/small/beer(src) new /obj/item/reagent_containers/food/drinks/bottle/small/beer(src) - -/obj/structure/closet/secure_closet/cabinet/beer - name = "beer closet" - desc = "A cabinet stacked end-to-end with six packs of beer." - req_access = null - storage_capacity = 45 - -/obj/structure/closet/secure_closet/cabinet/beer/fill() - new /obj/item/storage/box/fancy/yoke/beer(src) - new /obj/item/storage/box/fancy/yoke/ebisu(src) - new /obj/item/storage/box/fancy/yoke/shimauma(src) - new /obj/item/storage/box/fancy/yoke/moonlabor(src) - new /obj/item/storage/box/fancy/yoke/earthmover(src) - new /obj/item/storage/box/fancy/yoke/whistlingforest(src) - new /obj/item/storage/box/fancy/yoke/threetowns(src) - -/obj/structure/closet/secure_closet/cabinet/beer/horizon - req_access = list(ACCESS_BAR) diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 6c5244cfb31..47eb4124b89 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -711,17 +711,3 @@ desc = "A secure security crate. Secure." icon_state = "security_crate" secure = TRUE - -/obj/structure/closet/crate/drinks - name = "exotic drinks crate" - desc = "A crate packed with boxes of various beverages. Handle with care!" - -/obj/structure/closet/crate/drinks/fill() - new /obj/item/storage/box/burukutu(src) - new /obj/item/storage/box/skrellbeerdyn(src) - new /obj/item/storage/box/khlibnyz(src) - new /obj/item/storage/box/hrozamal_soda(src) - new /obj/item/storage/box/xuizijuice(src) - new /obj/item/storage/box/midynhr_water(src) - new /obj/item/storage/box/fancy/yoke/grape_juice(src) - new /obj/item/storage/box/fancy/yoke/beetle_milk(src) diff --git a/code/game/objects/structures/weapons_rack.dm b/code/game/objects/structures/weapons_rack.dm index dd5900ed94e..a1a8d29321e 100644 --- a/code/game/objects/structures/weapons_rack.dm +++ b/code/game/objects/structures/weapons_rack.dm @@ -77,29 +77,27 @@ else if(istype(attacking_item, /obj/item/card/id)) var/obj/item/card/id/identification_card = attacking_item if(!forced_open && has_access(req_one_access = src.req_one_access, accesses = identification_card.access)) - balloon_alert_to_viewers("[locked ? "unlocked" : "locked"]") + balloon_alert_to_viewers("[user] [locked ? "unlocks" : "locks"] \the [src]!") playsound(src, 'sound/items/metal_shutter.ogg', 50, TRUE, extrarange = SHORT_RANGE_SOUND_EXTRARANGE) toggle_lock(user) else - balloon_alert(user, "it won't budge!") to_chat(user, SPAN_WARNING("You lack the required access to operate this rack's lock, or the lock mechanism is broken.")) else if(locked && attacking_item.iswelder()) var/obj/item/weldingtool/WT = attacking_item - balloon_alert_to_viewers("cutting through the lock...") + balloon_alert_to_viewers("[user] starts to cut through the lock on \the [src]!") if(WT.use_tool(src, user, 20 SECONDS, extra_checks = CALLBACK(src, PROC_REF(can_be_opened)))) //Last check because use_tool() is shitcoded if(forced_open || !can_be_opened()) return toggle_lock(user) - balloon_alert_to_viewers("lock cut") forced_open = TRUE else - to_chat(user, SPAN_NOTICE("\The [src] was unlocked while you were working on it!")) + balloon_alert_to_viewers("[src] was unlocked while you was working on it!") /obj/structure/weapons_rack/attack_hand(mob/living/user) diff --git a/code/modules/background/accent/unathi.dm b/code/modules/background/accent/unathi.dm index b4f26d6375b..2bc9acdadb5 100644 --- a/code/modules/background/accent/unathi.dm +++ b/code/modules/background/accent/unathi.dm @@ -138,11 +138,3 @@ representing the fierce and independent spirit that the colony values highly." tag_icon = "ouerea" text_tag = "OUE" - -/datum/accent/dominia_unathi - name = ACCENT_UNATHI_MOROZI - description = "An accent most often heard in Unathi Communities across Moroz, and spoken by most members of the Kazhkz and Han'san clans. The Unathi Morozi accent, also called Dominian Unathi by some, is a \ - phonetic mixbag. Finding its origins in Sinta'azaziba, the Unathi Morozi accent carries the droning tones of its predecessor, though it trades the usual guttural sounds of traditional Azaziba with the more \ - elegant tones of High Morozi's tradeband and lighter pitch sounds of Vulgar Morozi's Sol Common, resulting an accent sounding deep and droning but otherwise surprisingly dignified." - tag_icon = "dominia_unathi" - text_tag = "DMU" diff --git a/code/modules/background/origins/origins/unathi/spaceborn.dm b/code/modules/background/origins/origins/unathi/spaceborn.dm index 50283f7bac4..c5014964b5f 100644 --- a/code/modules/background/origins/origins/unathi/spaceborn.dm +++ b/code/modules/background/origins/origins/unathi/spaceborn.dm @@ -42,7 +42,7 @@ /singleton/origin_item/origin/dominian_unathi name = "Dominian Unathi" desc = "Dominian Unathi are those that either helped found House Kazhkz or came after the Great House was created and sought refuge from the Contact War. The Unathi in Dominia are Primaries and Secondaries, with next to none being Ma'zals. Their recent integration proves to be a point of contention among the Empire of Dominia: some find them welcome, should they be loyal, while others find their presence and conduct to be distasteful and dishonorable. For good or bad, they're here to stay, and they follow some semblance of their former codes and traditions here under the Great Holy Emperor." - possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH, ACCENT_UNATHI_MOROZI) + possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH) possible_citizenships = list(CITIZENSHIP_DOMINIA, CITIZENSHIP_BIESEL) possible_religions = list(RELIGION_MOROZ, RELIGION_THAKH) origin_traits = list(TRAIT_ORIGIN_COLD_RESISTANCE) diff --git a/code/modules/balloon_alert/balloon_alert.dm b/code/modules/balloon_alert/balloon_alert.dm index 101959489db..8098aa3bb4c 100644 --- a/code/modules/balloon_alert/balloon_alert.dm +++ b/code/modules/balloon_alert/balloon_alert.dm @@ -2,11 +2,7 @@ #define BALLOON_TEXT_SPAWN_TIME (0.2 SECONDS) #define BALLOON_TEXT_FADE_TIME (0.1 SECONDS) #define BALLOON_TEXT_FULLY_VISIBLE_TIME (0.7 SECONDS) -#define BALLOON_TEXT_TOTAL_LIFETIME(mult) (BALLOON_TEXT_SPAWN_TIME + BALLOON_TEXT_FULLY_VISIBLE_TIME*mult + BALLOON_TEXT_FADE_TIME) -/// The increase in duration per character in seconds -#define BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT (0.05) -/// The amount of characters needed before this increase takes into effect -#define BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN 10 +#define BALLOON_TEXT_TOTAL_LIFETIME (BALLOON_TEXT_SPAWN_TIME + BALLOON_TEXT_FULLY_VISIBLE_TIME + BALLOON_TEXT_FADE_TIME) /// Creates text that will float from the atom upwards to the viewer. /atom/proc/balloon_alert(mob/viewer, text) @@ -27,8 +23,10 @@ for(var/mob/hearer in hearers - src) if(hearer.is_blind()) continue + balloon_alert(hearer, message) - balloon_alert(hearer, (hearer == src && self_message) || message) + if(self_message) + balloon_alert(src, self_message) // Do not use. // MeasureText blocks. I have no idea for how long. @@ -39,13 +37,12 @@ if (isnull(viewer_client)) return - var/bound_width = ICON_SIZE_X + var/bound_width = world.icon_size if (ismovable(src)) var/atom/movable/movable_source = src bound_width = movable_source.bound_width var/image/balloon_alert = image(loc = isturf(src) ? src : get_atom_on_turf(src), layer = ABOVE_HUMAN_LAYER) - balloon_alert.plane = BALLOON_CHAT_PLANE balloon_alert.alpha = 0 balloon_alert.appearance_flags = RESET_ALPHA|RESET_COLOR|RESET_TRANSFORM balloon_alert.maptext = MAPTEXT("[text]") @@ -55,12 +52,10 @@ viewer_client?.images += balloon_alert - var/length_mult = 1 + max(0, length(strip_html_full(text)) - BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN) * BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT - animate( balloon_alert, - pixel_y = ICON_SIZE_Y * 1.2, - time = BALLOON_TEXT_TOTAL_LIFETIME(length_mult), + pixel_y = world.icon_size * 1.2, + time = BALLOON_TEXT_TOTAL_LIFETIME, easing = SINE_EASING | EASE_OUT, ) @@ -73,14 +68,12 @@ animate( alpha = 0, - time = BALLOON_TEXT_FULLY_VISIBLE_TIME * length_mult, + time = BALLOON_TEXT_FULLY_VISIBLE_TIME, easing = CUBIC_EASING | EASE_IN, ) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_image_from_client), balloon_alert, viewer_client), BALLOON_TEXT_TOTAL_LIFETIME(length_mult)) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_image_from_client), balloon_alert, viewer_client), BALLOON_TEXT_TOTAL_LIFETIME) -#undef BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN -#undef BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT #undef BALLOON_TEXT_FADE_TIME #undef BALLOON_TEXT_FULLY_VISIBLE_TIME #undef BALLOON_TEXT_SPAWN_TIME diff --git a/code/modules/cargo/bounties/hydroponics.dm b/code/modules/cargo/bounties/hydroponics.dm index b195953386f..74a80baac03 100644 --- a/code/modules/cargo/bounties/hydroponics.dm +++ b/code/modules/cargo/bounties/hydroponics.dm @@ -88,10 +88,10 @@ /datum/seed/watermelon, /datum/seed/citrus, /datum/seed/cherries, - /datum/seed/dirtberries, + /datum/seed/nifberries, /datum/seed/dyn, /datum/seed/wulumunusha, - /datum/seed/sugartree) + /datum/seed/nmshaan) /datum/bounty/item/hydroponicist/produce/mushroom name = "Produce - Mushrooms" diff --git a/code/modules/cargo/items/hospitality.dm b/code/modules/cargo/items/hospitality.dm index fbc1dd8c22d..bbb8b1bb32b 100644 --- a/code/modules/cargo/items/hospitality.dm +++ b/code/modules/cargo/items/hospitality.dm @@ -1540,14 +1540,14 @@ groupable = TRUE spawn_amount = 1 -/singleton/cargo_item/sugartree_liquor +/singleton/cargo_item/nmshaan_liquor category = "hospitality" - name = "Sugar Tree Liquor" + name = "Nm'shaan Liquor" supplier = "getmore" - description = "Called Nm'shaan Liquor in native Siik'maas, this strong Adhomian liquor is reserved for special occasions. A label on the bottle recommends diluting it with icy water before drinking." + description = "A strong Adhomian liquor reserved for special occasions. A label on the bottle recommends diluting it with icy water before drinking." price = 200 items = list( - /obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor + /obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor ) access = 0 container_type = "crate" diff --git a/code/modules/cargo/items/recreation.dm b/code/modules/cargo/items/recreation.dm index a6ae9568535..7a00fbc070e 100644 --- a/code/modules/cargo/items/recreation.dm +++ b/code/modules/cargo/items/recreation.dm @@ -354,17 +354,3 @@ container_type = "crate" groupable = TRUE spawn_amount = 2 - -/singleton/cargo_item/lyodiicards - category = "recreation" - name = "lyodii fatesayer cards" - supplier = "orion" - description = "A lyodii Fatesayer card deck. Exported from Moroz, used to tell your fate." - price = 300 //It's a niche novelty thing made in relatively small export quantities - items = list( - /obj/item/storage/box/lyodii - ) - access = 0 - container_type = "crate" - groupable = TRUE - spawn_amount = 1 diff --git a/code/modules/client/preference_setup/loadout/items/general.dm b/code/modules/client/preference_setup/loadout/items/general.dm index 58ea90fd671..3bb9100cc34 100644 --- a/code/modules/client/preference_setup/loadout/items/general.dm +++ b/code/modules/client/preference_setup/loadout/items/general.dm @@ -8,7 +8,7 @@ cane["cane"] = /obj/item/cane cane["telescopic cane"] = /obj/item/cane/telecane cane["crutch"] = /obj/item/cane/crutch - cane["white cane"] = /obj/item/cane/telecane/white + cane["white cane"] = /obj/item/cane/white gear_tweaks += new /datum/gear_tweak/path(cane) /datum/gear/flask diff --git a/code/modules/client/preference_setup/loadout/items/religion.dm b/code/modules/client/preference_setup/loadout/items/religion.dm index 7b61bde8b69..94992b2b014 100644 --- a/code/modules/client/preference_setup/loadout/items/religion.dm +++ b/code/modules/client/preference_setup/loadout/items/religion.dm @@ -216,12 +216,6 @@ ABSTRACT_TYPE(/datum/gear/religion/dominia) dominiaicon["icon of the martyr, valeria"] = /obj/item/sign/painting_frame/martyr/valeria gear_tweaks += new /datum/gear_tweak/path(dominiaicon) -/datum/gear/religion/dominia/lyodii_deck - display_name = "lyodii fatesayer cards" - description = "A leather box holding a complete deck of Fatesayer cards, used by the people of the Lyod to tell one's fate." - path = /obj/item/storage/box/lyodii - culture_restriction = list(/singleton/origin_item/culture/dominia) - ABSTRACT_TYPE(/datum/gear/religion/assunzione) religion = RELIGION_LUCEISM diff --git a/code/modules/client/preference_setup/loadout/items/xeno/diona.dm b/code/modules/client/preference_setup/loadout/items/xeno/diona.dm index a27c2b31f51..0a7335740c1 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/diona.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/diona.dm @@ -528,22 +528,3 @@ ABSTRACT_TYPE(/datum/gear/accessory/diona) jizixi["jizixi dress, white"] = /obj/item/clothing/under/unathi/jizixi/white jizixi["jizixi dress, orange"] = /obj/item/clothing/under/unathi/jizixi/orange gear_tweaks += new /datum/gear_tweak/path(jizixi) - -/datum/gear/accessory/consortium_passport - display_name = "consortium of hieroaetheria passport" - path = /obj/item/clothing/accessory/badge/passport/consortium - whitelisted = list(SPECIES_DIONA, SPECIES_DIONA_COEUS, SPECIES_SKRELL, SPECIES_SKRELL_AXIORI) - sort_category = "Xenowear - Diona" - -/datum/gear/accessory/alt_consortium_passport - display_name = "non-consortium hieroaetherian passport selection" - path = /obj/item/clothing/accessory/badge/passport/dionaunion - whitelisted = list(SPECIES_DIONA, SPECIES_DIONA_COEUS) - sort_category = "Xenowear - Diona" - -/datum/gear/accessory/alt_consortium_passport/New() - ..() - var/list/diona_passport = list() - diona_passport["union of gla'orr passport"] = /obj/item/clothing/accessory/badge/passport/dionaunion - diona_passport["eternal republic of the ekane passport"] = /obj/item/clothing/accessory/badge/passport/eternalrepublic - gear_tweaks += new /datum/gear_tweak/path(diona_passport) diff --git a/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm b/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm index 25e3c19e873..ec2dbec341a 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm @@ -58,25 +58,6 @@ guildmantles["fishing league mantle"] = /obj/item/clothing/accessory/poncho/unathimantle/fisher gear_tweaks += new /datum/gear_tweak/path(guildmantles) -/datum/gear/suit/unathi_scaleshields - display_name = "scaleshield selection" - description = "A collection of reinforced canvas and fabric covers worn by Dominian Unathi." - path = /obj/item/clothing/accessory/poncho/scaleshield - cost = 1 - whitelisted = list(SPECIES_UNATHI) - origin_restriction = list(/singleton/origin_item/origin/dominian_unathi) - sort_category = "Xenowear - Unathi" - flags = GEAR_HAS_COLOR_SELECTION - -/datum/gear/suit/unathi_scaleshields/New() - ..() - var/list/scaleshields = list() - scaleshields["Colorable Scaleshield"] = /obj/item/clothing/accessory/poncho/scaleshield - scaleshields["Landsite Scaleshield"] = /obj/item/clothing/accessory/poncho/scaleshield/LSscaleshield - scaleshields["Anvil Towers Scaleshield"] = /obj/item/clothing/accessory/poncho/scaleshield/ATscaleshield - scaleshields["Widowtown Scaleshield"] = /obj/item/clothing/accessory/poncho/scaleshield/WTscaleshield - gear_tweaks += new /datum/gear_tweak/path(scaleshields) - /datum/gear/suit/unathi_robe display_name = "roughspun robe" path = /obj/item/clothing/suit/unathi/robe diff --git a/code/modules/client/preferences_spawnpoints.dm b/code/modules/client/preferences_spawnpoints.dm index f63fc56eb55..9c743b5cedb 100644 --- a/code/modules/client/preferences_spawnpoints.dm +++ b/code/modules/client/preferences_spawnpoints.dm @@ -74,23 +74,3 @@ C.set_occupant(victim, 1) to_chat(victim, SPAN_NOTICE("You have arrived from the living quarters aboard the [SSatlas.current_map.station_name].")) return - -/datum/spawnpoint/medbay_recovery - display_name = "Medbay Recovery Ward" - msg = "has awoken in the Medbay Recovery Ward" - restrict_job = list("Off-Duty Crew Member", "Passenger") - -/datum/spawnpoint/medbay_recovery/New() - ..() - turfs = GLOB.latejoin_medbay_recovery - -/datum/spawnpoint/medbay_recovery/after_join(mob/victim) - if(!istype(victim)) - return - var/area/A = get_area(victim) - for(var/obj/machinery/cryopod/C in A) - if(!C.occupant) - C.set_occupant(victim, 1) - victim.Sleeping(3) - to_chat(victim, SPAN_NOTICE("You are slowly waking up from the medical cryostasis aboard [SSatlas.current_map.station_name]. It might take a few seconds.")) - return diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 2ac44dd8658..f6c3619ce80 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -65,23 +65,6 @@ min_pressure_protection = FIRESUIT_MIN_PRESSURE heat_protection = HEAD - ///Initial name of the fire helmet's emissive overlay. Will be changed based on [icon_supported_species_tags], above - var/initial_emissive_state = "atmos_fire_emissive" - ///Special variable to handle the fire helmet's emissive overlay - var/emissive_state - -/obj/item/clothing/head/hardhat/atmos/get_mob_overlay(mob/living/carbon/human/H, mob_icon, mob_state, slot) - var/image/I = ..() - emissive_state = initial_emissive_state - if(icon_auto_adapt) - if(H && length(icon_supported_species_tags)) - if(H.species.short_name in icon_supported_species_tags) - emissive_state = "[H.species.short_name]_[initial_emissive_state]" - if(slot == slot_head_str) - var/image/emissive_overlay = emissive_appearance(mob_icon, emissive_state, alpha = src.alpha) - I.AddOverlays(emissive_overlay) - return I - /obj/item/clothing/head/hardhat/paramedic name = "medical helmet" desc = "A polymer helmet worn by paramedics throughout human space to protect their heads. This one comes with an attached flashlight and has green crosses on the sides." diff --git a/code/modules/clothing/spacesuits/rig/rig_attackby.dm b/code/modules/clothing/spacesuits/rig/rig_attackby.dm index 51f0945b435..5e83f126533 100644 --- a/code/modules/clothing/spacesuits/rig/rig_attackby.dm +++ b/code/modules/clothing/spacesuits/rig/rig_attackby.dm @@ -58,8 +58,14 @@ if(open) // Hacking. - wires.interact(user) + if(attacking_item.iswirecutter() || attacking_item.ismultitool()) + if(open) + wires.interact(user) + else + to_chat(user, SPAN_ALERT("You can't reach the wiring.")) + + return // Air tank. if(istype(attacking_item,/obj/item/tank)) //Todo, some kind of check for suits without integrated air supplies. @@ -126,7 +132,7 @@ else if(attacking_item.iswrench()) if(!air_supply) - to_chat(user, SPAN_WARNING("There is no tank to remove.")) + to_chat(user, SPAN_WARNING("There is not tank to remove.")) return if(user.r_hand && user.l_hand) diff --git a/code/modules/clothing/suits/utility.dm b/code/modules/clothing/suits/utility.dm index ec87f788fdc..c1fd6b32674 100644 --- a/code/modules/clothing/suits/utility.dm +++ b/code/modules/clothing/suits/utility.dm @@ -35,20 +35,10 @@ max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE cold_protection = UPPER_TORSO | LOWER_TORSO | LEGS | FEET | ARMS | HANDS - ///Initial name of the firesuit's emissive overlay. Will be changed based on [icon_supported_species_tags], above - var/initial_emissive_state = "firesuit_emissive" - ///Special variable to handle the firesuit's emissive overlay - var/emissive_state - /obj/item/clothing/suit/fire/get_mob_overlay(mob/living/carbon/human/H, mob_icon, mob_state, slot) var/image/I = ..() - emissive_state = initial_emissive_state - if(icon_auto_adapt) - if(H && length(icon_supported_species_tags)) - if(H.species.short_name in icon_supported_species_tags) - emissive_state = "[H.species.short_name]_[initial_emissive_state]" if(slot == slot_wear_suit_str) - var/image/emissive_overlay = emissive_appearance(mob_icon, emissive_state, alpha = src.alpha) + var/image/emissive_overlay = emissive_appearance(mob_icon, "firesuit-emissive", alpha = src.alpha) I.AddOverlays(emissive_overlay) return I @@ -62,7 +52,13 @@ sprite_sheets = list( BODYTYPE_VAURCA_BULWARK = 'icons/mob/species/bulwark/fire.dmi' ) - initial_emissive_state = "atmos_firesuit_emissive" + +/obj/item/clothing/suit/fire/atmos/get_mob_overlay(mob/living/carbon/human/H, mob_icon, mob_state, slot) + var/image/I = ..() + if(slot == slot_wear_suit_str) + var/image/emissive_overlay = emissive_appearance(mob_icon, "atmos_firesuit-emissive", alpha = src.alpha) + I.AddOverlays(emissive_overlay) + return I /* * Bomb protection diff --git a/code/modules/clothing/under/accessories/armor.dm b/code/modules/clothing/under/accessories/armor.dm index a6e6b7a4a60..068fb8e16c9 100644 --- a/code/modules/clothing/under/accessories/armor.dm +++ b/code/modules/clothing/under/accessories/armor.dm @@ -1,7 +1,7 @@ //Leg guards. /obj/item/clothing/accessory/leg_guard name = "corporate leg guards" - desc = "These will protect your legs." + desc = "These will protect your legs and feet." desc_info = "These items must be hooked onto plate carriers for them to work!" icon = 'icons/clothing/kit/modular_armor.dmi' icon_state = "legguards_sec" @@ -17,7 +17,7 @@ ENERGY = ARMOR_ENERGY_SMALL, BOMB = ARMOR_BOMB_PADDED ) - body_parts_covered = LEGS + body_parts_covered = LEGS|FEET drop_sound = 'sound/items/drop/boots.ogg' pickup_sound = 'sound/items/pickup/boots.ogg' @@ -41,7 +41,7 @@ /obj/item/clothing/accessory/leg_guard/ablative name = "ablative leg guards" - desc = "These will protect your legs from energy weapons." + desc = "These will protect your legs and feet from energy weapons." icon_state = "legguards_ablative" item_state = "legguards_ablative" armor = list( @@ -55,7 +55,7 @@ /obj/item/clothing/accessory/leg_guard/ballistic name = "ballistic leg guards" - desc = "These will protect your legs from ballistic weapons." + desc = "These will protect your legs and feet from ballistic weapons." icon_state = "legguards_ballistic" item_state = "legguards_ballistic" armor = list( @@ -69,7 +69,7 @@ /obj/item/clothing/accessory/leg_guard/riot name = "riot leg guards" - desc = "These will protect your legs from close combat weapons." + desc = "These will protect your legs and feet from close combat weapons." icon_state = "legguards_riot" item_state = "legguards_riot" armor = list( @@ -83,7 +83,7 @@ /obj/item/clothing/accessory/leg_guard/military name = "sol army leg guards" - desc = "These will protect your legs from most things." + desc = "These will protect your legs and feet from most things." icon_state = "legguards_military" item_state = "legguards_military" armor = list( @@ -97,7 +97,7 @@ /obj/item/clothing/accessory/leg_guard/heavy name = "heavy leg guards" - desc = "These leg guards will protect your legs from most things." + desc = "These leg guards will protect your legs and feet from most things." icon_state = "legguards_heavy" item_state = "legguards_heavy" armor = list( @@ -186,14 +186,14 @@ //Arm guards. /obj/item/clothing/accessory/arm_guard name = "corporate arm guards" - desc = "A pair of arm pads reinforced with armor plating. Attaches to a plate carrier." + desc = "These arm guards will protect your hands and arms." icon = 'icons/clothing/kit/modular_armor.dmi' icon_state = "armguards_sec" item_state = "armguards_sec" contained_sprite = TRUE slot = ACCESSORY_SLOT_ARM_GUARDS accessory_layer = ACCESSORY_LAYER_LOWER - body_parts_covered = ARMS + body_parts_covered = HANDS|ARMS armor = list( MELEE = ARMOR_MELEE_KEVLAR, BULLET = ARMOR_BALLISTIC_MEDIUM, @@ -225,7 +225,7 @@ /obj/item/clothing/accessory/arm_guard/ablative name = "ablative arm guards" - desc = "A pair of armored arm pads with advanced shielding to protect against energy weapons. Attaches to a plate carrier." + desc = "These arm guards will protect your hands and arms from energy weapons." icon_state = "armguards_ablative" item_state = "armguards_ablative" armor = list( @@ -239,7 +239,7 @@ /obj/item/clothing/accessory/arm_guard/ballistic name = "ballistic arm guards" - desc = "A pair of armored arm pads with heavy plates to protect against ballistic projectiles. Attaches to a plate carrier." + desc = "These arm guards will protect your hands and arms from ballistic weapons." icon_state = "armguards_ballistic" item_state = "armguards_ballistic" armor = list( @@ -253,7 +253,7 @@ /obj/item/clothing/accessory/arm_guard/riot name = "riot arm guards" - desc = "A pair of armored arm and hand pads with heavy padding to protect against melee attacks." + desc = "These arm guards will protect your hands and arms from close combat weapons." icon_state = "armguards_riot" item_state = "armguards_riot" armor = list( @@ -264,11 +264,10 @@ BOMB = ARMOR_BOMB_PADDED ) slowdown = 0.3 - body_parts_covered = ARMS|HANDS /obj/item/clothing/accessory/arm_guard/military name = "sol army arm guards" - desc = "A pair of green arm and hands pads reinforced with armor plating. Attaches to a plate carrier." + desc = "These arm guards will protect your hands and arms from most things." icon_state = "armguards_military" item_state = "armguards_military" armor = list( @@ -279,11 +278,10 @@ BOMB = ARMOR_BOMB_PADDED, ) slowdown = 0.3 - body_parts_covered = ARMS|HANDS /obj/item/clothing/accessory/arm_guard/heavy name = "heavy arm guards" - desc = "A pair of armored arm pads reinforced with heavy armor plating. Attaches to a plate carrier." + desc = "These arm guards will protect your hands and arms from most things." icon_state = "armguards_heavy" item_state = "armguards_heavy" armor = list( @@ -297,11 +295,9 @@ /obj/item/clothing/accessory/arm_guard/heavy/scc name = "heavy SCC arm guards" - desc = "A pair of armored arm and hand pads reinforced with heavy armor plating. Attaches to a plate carrier." icon_state = "armguards_blue" item_state = "armguards_blue" slowdown = 0.3 - body_parts_covered = ARMS|HANDS /obj/item/clothing/accessory/arm_guard/heavy/sec name = "heavy corporate arm guards" @@ -318,7 +314,7 @@ /obj/item/clothing/accessory/arm_guard/kala name = "kala arm guards" - desc = "These arm guards are made out of an advanced lightweight alloy. Attaches to a plate carrier." + desc = "These arm guards are made out of an advanced lightweight alloy." icon_state = "armguards_sec_heavy" item_state = "armguards_sec_heavy" armor = list( @@ -331,7 +327,7 @@ /obj/item/clothing/accessory/arm_guard/tcaf name = "\improper TCAF carapace arm guards" - desc = "Blue carapace armguards to protect you in the modern battlefield of 2465. Attaches to a plate carrier." + desc = "Blue carapace armguards to protect you in the modern battlefield of 2465." icon = 'icons/clothing/kit/modular_armor.dmi' icon_state = "tcaf_armguards" item_state = "tcaf_armguards" @@ -344,7 +340,6 @@ BOMB = ARMOR_BOMB_PADDED, ) slowdown = 0.3 - body_parts_covered = ARMS|HANDS /obj/item/clothing/accessory/arm_guard/tcaf/tcaf_stripe name = "striped TCAF carapace arm guards" diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index 27013fbfecc..c11252bc4ea 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -609,28 +609,10 @@ /obj/item/clothing/accessory/badge/passport/goldendeep name = "golden deep passport" - desc = "An electronic passport issued to a member of the Golden Deep Collective. This device lists and updates the owner's net worth in real time." + desc = "A electronic passport issued to a member of the Golden Deep Collective. This device lists and updates the owner's net worth in real time." icon_state = "passport_goldendeep" item_state = "passport_goldendeep" -/obj/item/clothing/accessory/badge/passport/consortium - name = "consortium of hieroaetheria passport" - desc = "A passport issued to a citizen of the Consortium of Hieroaetheria. A testament to inclusiveness anywhere its owner takes with it." - icon_state = "passport_consortium" - item_state = "passport_consortium" - -/obj/item/clothing/accessory/badge/passport/dionaunion - name = "union of gla'orr passport" - desc = "A passport issued to a citizen of the Union of Gla'orr. Considered somewhat of an opposite of the Consortium passport in terms of what travel it enables." - icon_state = "passport_dionaunion" - item_state = "passport_dionaunion" - -/obj/item/clothing/accessory/badge/passport/eternalrepublic - name = "eternal republic of the ekane passport" - desc = "A passport issued to a citizen of the Eternal Republic of the Ekane, a mark of having committed oneself to the Eternal wholly." - icon_state = "passport_eternalrepublic" - item_state = "passport_eternalrepublic" - #undef CANT_OPEN #undef CLOSED #undef OPEN diff --git a/code/modules/clothing/under/accessories/xeno/unathi.dm b/code/modules/clothing/under/accessories/xeno/unathi.dm index 50837b3f174..0c8dd4ea88b 100644 --- a/code/modules/clothing/under/accessories/xeno/unathi.dm +++ b/code/modules/clothing/under/accessories/xeno/unathi.dm @@ -235,40 +235,3 @@ worn_overlay = "chain" has_accents = TRUE protects_against_weather = FALSE - -/obj/item/clothing/accessory/poncho/scaleshield - name = "scaleshield" - desc = "A reinforced canvas and fabric made by Dominian Unathi, for Dominian Unathi, to face the cold weather of Moroz and look good doing it." - desc_extended = "A thick, warm piece of reinforced canvas and fabric made by Dominian Unathi to keep themselves warm in Moroz's \ - frigid climate. Nowadays, its also become a fashion statement for those that wear it." - icon = 'icons/obj/unathi_items.dmi' - icon_state = "scaleshield" - item_state = "scaleshield" - icon_override = null - contained_sprite = TRUE - build_from_parts = TRUE - worn_overlay = "scaleshield" - -/obj/item/clothing/accessory/poncho/scaleshield/LSscaleshield - name = "Landsite Scaleshield" - desc = "A reinforced canvas and fabric made by Dominian Unathi, for Dominian Unathi, to face the cold weather of Moroz and look good doing it." - desc_extended = "A thick, warm piece of reinforced canvas and fabric made by Dominian Unathi to keep themselves warm in Moroz's \ - frigid climate. This one bears a pattern commonly seen in the New Hope Unathi District, also known as Landsite." - icon = 'icons/obj/unathi_items.dmi' - worn_overlay = "LSscaleshield" - -/obj/item/clothing/accessory/poncho/scaleshield/ATscaleshield - name = "Anvil Towers Scaleshield" - desc = "A reinforced canvas and fabric made by Dominian Unathi, for Dominian Unathi, to face the cold weather of Moroz and look good doing it." - desc_extended = "A thick, warm piece of reinforced canvas and fabric made by Dominian Unathi to keep themselves warm in Moroz's \ - frigid climate. This one bears a pattern commonly seen in the Anvil Unathi District, also known as Anvil Towers." - icon = 'icons/obj/unathi_items.dmi' - worn_overlay = "ATscaleshield" - -/obj/item/clothing/accessory/poncho/scaleshield/WTscaleshield - name = "Widowtown Scaleshield" - desc = "A reinforced canvas and fabric made by Dominian Unathi, for Dominian Unathi, to face the cold weather of Moroz and look good doing it." - desc_extended = "A thick, warm piece of reinforced canvas and fabric made by Dominian Unathi to keep themselves warm in Moroz's \ - frigid climate. This one bears a pattern commonly seen in Hunter’s District, also known as Widowtown." - icon = 'icons/obj/unathi_items.dmi' - worn_overlay = "WTscaleshield" diff --git a/code/modules/cooking/machinery/cooking_machines/grill.dm b/code/modules/cooking/machinery/cooking_machines/grill.dm index e19566156a7..8150222fb6e 100644 --- a/code/modules/cooking/machinery/cooking_machines/grill.dm +++ b/code/modules/cooking/machinery/cooking_machines/grill.dm @@ -36,7 +36,7 @@ /obj/machinery/appliance/cooker/grill/Initialize() . = ..() - grill_loop = new(src) + grill_loop = new(src, FALSE) /obj/machinery/appliance/cooker/grill/Destroy() QDEL_NULL(grill_loop) @@ -64,26 +64,16 @@ return CI return FALSE -/// Grills do not require power to work. -/obj/machinery/appliance/cooker/grill/powered() - return TRUE - -/obj/machinery/appliance/cooker/grill/proc/update_grilling_audio() - if(!grill_loop) - return - if(use_power) - grill_loop.start() - else - grill_loop.stop() - /obj/machinery/appliance/cooker/grill/update_icon() + . = ..() ClearOverlays() - update_grilling_audio() if(!stat) icon_state = on_icon else icon_state = off_icon + grill_loop?.stop() if(length(cooking_objs)) + grill_loop.start() var/datum/cooking_item/CI = cooking_objs[1] var/obj/item/reagent_containers/cooking_container/grill_grate/G = CI.container if(G) @@ -113,16 +103,3 @@ food.transform = M AddOverlays(food) counter++ - ..() - -/obj/machinery/appliance/cooker/grill/stand - name = "grill stand" - icon_state = "grill_cart_off" - on_icon = "grill_cart_on" - off_icon = "grill_cart_off" - desc = "A more commercialized version of your traditional grill. What happened to the good old days where people grilled with passion?" - use_power = POWER_USE_OFF - -/obj/machinery/appliance/cooker/grill/stand/update_icon() - ..() - AddOverlays(image('icons/obj/machinery/cooking_machines.dmi', "front_bar")) diff --git a/code/modules/cooking/machinery/cooking_machines/oven.dm b/code/modules/cooking/machinery/cooking_machines/oven.dm index 7ff7a4111f9..35195ef5faf 100644 --- a/code/modules/cooking/machinery/cooking_machines/oven.dm +++ b/code/modules/cooking/machinery/cooking_machines/oven.dm @@ -51,20 +51,15 @@ . = ..() /obj/machinery/appliance/cooker/oven/update_icon() - ClearOverlays() - update_baking_audio() - if(!open) + if (!open) icon_state = "ovenclosed" - if(!stat) - var/image/ovenclosed_on = image('icons/obj/machinery/cooking_machines.dmi', "ovenclosed_on") - ovenclosed_on.plane = EFFECTS_ABOVE_LIGHTING_PLANE - AddOverlays(ovenclosed_on) else icon_state = "ovenopen" - if(!stat) - var/image/ovenopen_on = image('icons/obj/machinery/cooking_machines.dmi', "ovenopen_on") - ovenopen_on.plane = EFFECTS_ABOVE_LIGHTING_PLANE - AddOverlays(ovenopen_on) + ClearOverlays() + if (!stat) + var/image/glow = image('icons/obj/machinery/cooking_machines.dmi', "oven_on") + glow.plane = EFFECTS_ABOVE_LIGHTING_PLANE + AddOverlays(glow) ..() /obj/machinery/appliance/cooker/oven/AltClick(var/mob/user) @@ -89,12 +84,13 @@ else playsound(src, 'sound/machines/oven/oven_open.ogg', 75, TRUE) update_icon() - + update_baking_audio() /obj/machinery/appliance/cooker/oven/proc/update_baking_audio() if(!oven_loop) return - if(use_power) + var/obj/item/reagent_containers/cooking_container/C + if(!open && C?.contents.len) oven_loop.start() else oven_loop.stop() @@ -130,7 +126,7 @@ /obj/machinery/appliance/cooker/oven/adhomai name = "adhomian oven" - desc = "A heavy and rustic adhomian oven. Perfect for a Tajaran grandma." + desc = "A heavy and rustic adhomian oven. Perfect for a Tajaran grandma" icon_state = "adhomai_oven_open" /obj/machinery/appliance/cooker/oven/adhomai/update_icon() diff --git a/code/modules/cooking/machinery/foodcart.dm b/code/modules/cooking/machinery/foodcart.dm deleted file mode 100644 index 2280dcbc7d6..00000000000 --- a/code/modules/cooking/machinery/foodcart.dm +++ /dev/null @@ -1,167 +0,0 @@ -/obj/machinery/food_cart - name = "food cart" - desc = "A compact unpackable mobile cooking stand. Wow! When unpacked, it reminds you of those greasy gamer setups some people on NTNet have." - icon = 'icons/obj/machinery/cooking_machines.dmi' - icon_state = "foodcart" - density = TRUE - anchored = FALSE - stat = POWEROFF - use_power = POWER_USE_OFF - req_access = list(ACCESS_KITCHEN) - var/unpacked = FALSE - /// When it's anchored and has all it's things outside - var/obj/machinery/appliance/cooker/grill/stand/cart_griddle - /// Griddle inside of the foodcart - var/obj/machinery/smartfridge/foodheater/stand/cart_smartfridge - /// Smartfridge inside of foodcart - var/obj/structure/table/reinforced/wood/cart_table - /// Table inside of foodcart - var/obj/effect/food_cart_stand/cart_tent - /// Overlay that spawns once foodcart is setup - var/list/packed_things - /// Contains cart_griddle, cart_smartfridge, cart_table, cart_cent - -/obj/machinery/food_cart/Initialize(mapload) - . = ..() - cart_griddle = new(src) - cart_smartfridge = new(src) - cart_table = new(src) - cart_tent = new(src) - packed_things = list(cart_table, cart_smartfridge, cart_tent, cart_griddle) //middle, left, left, right - RegisterSignal(cart_griddle, COMSIG_QDELETING, PROC_REF(lost_part)) - RegisterSignal(cart_smartfridge, COMSIG_QDELETING, PROC_REF(lost_part)) - RegisterSignal(cart_table, COMSIG_QDELETING, PROC_REF(lost_part)) - RegisterSignal(cart_tent, COMSIG_QDELETING, PROC_REF(lost_part)) - -/obj/machinery/food_cart/Destroy() - QDEL_NULL(cart_griddle) - QDEL_NULL(cart_smartfridge) - QDEL_NULL(cart_table) - QDEL_NULL(cart_tent) - packed_things.Cut() - return ..() - -/obj/machinery/food_cart/get_examine_text(mob/user, distance, is_adjacent, infix, suffix) - . = ..() - if(stat & BROKEN) - return - if(cart_griddle.stat & BROKEN) - . += SPAN_WARNING("The stand's [SPAN_BOLD("grill")] is completely broken!") - else - . += SPAN_NOTICE("The stand's [SPAN_BOLD("grill")] is intact.") - . += SPAN_NOTICE("The stand's [SPAN_BOLD("fridge")] seems fine.") //weirdly enough, these fridges don't break - . += SPAN_NOTICE("The stand's [SPAN_BOLD("table")] seems fine.") - -/** - * Retract the structures into the food cart - */ -/obj/machinery/food_cart/proc/pack_up() - if(!unpacked) - return - visible_message(SPAN_NOTICE("[src] retracts all of it's unpacked components.")) - for(var/obj/object as anything in packed_things) - UnregisterSignal(object, COMSIG_MOVABLE_MOVED) - object.forceMove(src) - if(!(cart_griddle?.stat & BROKEN)) // Don't draw power if it's packed inside - cart_griddle.stat = POWEROFF - cart_griddle.use_power = POWER_USE_OFF - cart_griddle.update_icon() - if(!(cart_smartfridge?.stat & BROKEN)) - cart_smartfridge.use_power = POWER_USE_OFF - anchored = FALSE - unpacked = FALSE - -/** - * Deploy the structures inside the food cart - */ -/obj/machinery/food_cart/proc/unpack(mob/user) - if(unpacked) - return - if(!check_setup_place()) - to_chat(user, SPAN_WARNING("There isn't enough room to unpack here! Bad spaces were marked in red.")) - return - visible_message(SPAN_NOTICE("[src] expands into a full stand.")) - anchored = TRUE - if(!(cart_griddle?.stat & BROKEN)) - cart_griddle.stat = POWEROFF - if(!(cart_smartfridge?.stat & BROKEN)) // Unpacked, draw power - cart_smartfridge.use_power = POWER_USE_IDLE - var/iteration = 1 - var/turf/grabbed_turf = get_step(get_turf(src), EAST) - for(var/angle in list(0, -45, -45, 45)) - var/turf/T = get_step(grabbed_turf, turn(SOUTH, angle)) - var/obj/thing = packed_things[iteration] - thing.forceMove(T) - RegisterSignal(thing, COMSIG_MOVABLE_MOVED, PROC_REF(lost_part)) - iteration++ - unpacked = TRUE - -/obj/machinery/food_cart/attack_hand(mob/living/user, list/modifiers) - . = ..() - if(stat & BROKEN) - to_chat(user, SPAN_WARNING("[src] is completely busted.")) - return - var/obj/item/card/id/id_card = user.GetIdCard() - if(!check_access(id_card)) - playsound(src, 'sound/machines/buzz-sigh.ogg', 30, TRUE) - to_chat(usr, SPAN_WARNING("Access denied.")) - return - playsound(get_turf(src), 'sound/items/rfd_start.ogg', 50, FALSE) - to_chat(user, SPAN_NOTICE("You attempt to [unpacked ? "pack up" :"unpack"] [src]...")) - if(!do_after(user, 5 SECONDS, src)) - playsound(get_turf(src), 'sound/items/rfd_interrupt.ogg', 50, FALSE) - return - playsound(get_turf(src), 'sound/items/rfd_end.ogg', 50, FALSE) - if(unpacked) - pack_up() - else - unpack(user) - -/** - * Step and check whether cart structures have non-dense space to placed onto - * - * Returns a boolean - */ -/obj/machinery/food_cart/proc/check_setup_place() - var/has_space = TRUE - var/turf/grabbed_turf = get_step(get_turf(src), EAST) - for(var/angle in list(0, -45, 45)) - var/turf/T = get_step(grabbed_turf, turn(SOUTH, angle)) - if(T.density || T.contains_dense_objects()) - has_space = FALSE - new /obj/effect/temp_visual/cart_space/bad(T) - else - new /obj/effect/temp_visual/cart_space(T) - return has_space - -/** - * Some part of the food cart went missing - */ -/obj/machinery/food_cart/proc/lost_part(atom/movable/source, force) - SIGNAL_HANDLER - - //okay, so it's deleting the fridge or griddle which are more important. We're gonna break the machine then - UnregisterSignal(cart_griddle, list(COMSIG_QDELETING, COMSIG_MOVABLE_MOVED)) - UnregisterSignal(cart_smartfridge, list(COMSIG_QDELETING, COMSIG_MOVABLE_MOVED)) - UnregisterSignal(cart_table, list(COMSIG_QDELETING, COMSIG_MOVABLE_MOVED)) - UnregisterSignal(cart_tent, list(COMSIG_QDELETING, COMSIG_MOVABLE_MOVED)) - atom_break() - -/obj/machinery/food_cart/atom_break() - . = ..() - pack_up() - if(!QDELETED(cart_griddle)) - QDEL_NULL(cart_griddle) - if(!QDELETED(cart_smartfridge)) - QDEL_NULL(cart_smartfridge) - if(!QDELETED(cart_table)) - QDEL_NULL(cart_table) - if(!QDELETED(cart_tent)) - QDEL_NULL(cart_tent) - -/obj/effect/food_cart_stand - name = "food cart tent" - desc = "Something to battle the sun, for there are no breaks for the burger flippers." - icon = 'icons/obj/fluff/3x3.dmi' - icon_state = "stand" - layer = ABOVE_HUMAN_LAYER //big mobs will still go over the tent, this is fine and cool diff --git a/code/modules/cooking/machinery/icecream.dm b/code/modules/cooking/machinery/icecream.dm index 51e3748c38a..395a6c24243 100644 --- a/code/modules/cooking/machinery/icecream.dm +++ b/code/modules/cooking/machinery/icecream.dm @@ -11,11 +11,11 @@ /obj/machinery/icecream_vat name = "icecream vat" - desc = "Ding-aling ding dong. Get your corporate-approved ice cream!" + desc = "Ding-aling ding dong. Get your SCC-approved ice cream!" icon = 'icons/obj/machinery/cooking_machines.dmi' icon_state = "icecream_vat" - density = TRUE - anchored = FALSE + density = 1 + anchored = 0 use_power = POWER_USE_OFF atom_flags = ATOM_FLAG_OPEN_CONTAINER | ATOM_FLAG_NO_REACT diff --git a/code/modules/cooking/machinery/smartfridge.dm b/code/modules/cooking/machinery/smartfridge.dm index 1881aded778..a78213a4e8c 100644 --- a/code/modules/cooking/machinery/smartfridge.dm +++ b/code/modules/cooking/machinery/smartfridge.dm @@ -118,19 +118,10 @@ contents_path = "-food" accepted_items = list(/obj/item/reagent_containers/food/snacks) -/obj/machinery/smartfridge/foodheater/stand - desc = "A more commercialized version of your traditional SmartHeater. Nothing like stale, heat-lamp warmed food." - use_power = POWER_USE_OFF - idle_power_usage = 0 - active_power_usage = 0 - -/obj/machinery/smartfridge/foodheater/stand/powered() - return TRUE - /obj/machinery/smartfridge/foodheater/abandoned // badly stocked, with trash, junk, etc desc = "Used to keep food nice and warm in the past, now it is all dirty, and doesn't look like it'll ever run again." - use_power = POWER_USE_OFF + use_power = 0 /obj/machinery/smartfridge/seeds name = "\improper MegaSeed Storage" @@ -397,8 +388,7 @@ /obj/machinery/smartfridge/attack_hand(mob/user) if(stat & (NOPOWER|BROKEN)) return - if(panel_open) - wires.interact(user) + wires.interact(user) ui_interact(user) /******************* diff --git a/code/modules/cooking/recipes/cultural/recipes_tajara.dm b/code/modules/cooking/recipes/cultural/recipes_tajara.dm index df12fc98bd1..70b3591e4e7 100644 --- a/code/modules/cooking/recipes/cultural/recipes_tajara.dm +++ b/code/modules/cooking/recipes/cultural/recipes_tajara.dm @@ -1,7 +1,7 @@ // Tajaran breads /singleton/recipe/tajaran_bread appliance = OVEN - fruit = list("dirtberries" = 1) + fruit = list("nifberries" = 1) reagents = list(/singleton/reagent/spacespice = 1) items = list( /obj/item/reagent_containers/food/snacks/flatbread @@ -22,7 +22,7 @@ // Tajaran peasant food /singleton/recipe/tajaran_stew appliance = SAUCEPAN | POT - fruit = list("dirtberries" = 2, "mushroom" = 1, "mtear" = 1) + fruit = list("nifberries" = 2, "mushroom" = 1, "mtear" = 1) reagents = list(/singleton/reagent/water = 10) items = list( /obj/item/reagent_containers/food/snacks/meat/adhomai, @@ -51,7 +51,7 @@ /obj/item/reagent_containers/food/snacks/meat/adhomai, /obj/item/stack/rods ) - fruit = list("earthenroot" = 1, "dirtberries" = 1) + fruit = list("earthenroot" = 1, "nifberries" = 1) result = /obj/item/reagent_containers/food/snacks/nomadskewer /datum/chemical_reaction/fermentedworm @@ -106,7 +106,7 @@ /singleton/recipe/earthenroot_salad appliance = MIX - fruit = list("earthenroot" = 1, "mtear" = 2, "dirtberries" = 1) + fruit = list("earthenroot" = 1, "mtear" = 2, "nifberries" = 1) items = list( /obj/item/reagent_containers/food/snacks/dip/sarmikhir ) @@ -226,7 +226,7 @@ /singleton/recipe/dirt_roast appliance = OVEN reagents = list(/singleton/reagent/spacespice = 1, /singleton/reagent/sugar = 5) - fruit = list("dirtberries" = 1) + fruit = list("nifberries" = 1) result = /obj/item/reagent_containers/food/snacks/dirt_roast /singleton/recipe/fatshouter_fillet @@ -253,7 +253,7 @@ /singleton/recipe/creamice reagents = list(/singleton/reagent/drink/milk/adhomai = 10, /singleton/reagent/sugar = 10, /singleton/reagent/drink/ice = 10) - fruit = list("dirtberries" = 1) + fruit = list("nifberries" = 1) result = /obj/item/reagent_containers/food/snacks/creamice /singleton/recipe/stuffed_earthenroot @@ -278,7 +278,7 @@ /singleton/recipe/scoutration appliance = OVEN - fruit = list("dirtberries" = 2) + fruit = list("nifberries" = 2) reagents = list(/singleton/reagent/sodiumchloride = 1) reagent_mix = RECIPE_REAGENT_REPLACE items = list( @@ -321,7 +321,7 @@ // Tajaran candy /singleton/recipe/tajcandy appliance = OVEN - fruit = list("sugartree" = 2) + fruit = list("nmshaan" = 2) reagents = list(/singleton/reagent/drink/milk/adhomai = 5, /singleton/reagent/nutriment/protein/egg = 3) reagent_mix = RECIPE_REAGENT_REPLACE items = list( @@ -338,14 +338,14 @@ /singleton/recipe/tajhummus appliance = MIX - fruit = list("mtear" = 1, "dirtberries" = 1) + fruit = list("mtear" = 1, "nifberries" = 1) reagents = list(/singleton/reagent/spacespice = 1, /singleton/reagent/nutriment/flour/nfrihi = 5) result = /obj/item/reagent_containers/food/snacks/dip/tajhummus // Tajaran gelatin-based food /singleton/recipe/seafoodmousse appliance = MIX - fruit = list("dirtberries" = 1) + fruit = list("nifberries" = 1) items = list( /obj/item/reagent_containers/food/snacks/clam, /obj/item/reagent_containers/food/snacks/clam, @@ -357,14 +357,14 @@ /singleton/recipe/vegello appliance = MIX - fruit = list("dirtberries" = 2, "earthenroot" = 2, "mtear" = 2) + fruit = list("nifberries" = 2, "earthenroot" = 2, "mtear" = 2) reagents = list(/singleton/reagent/nutriment/gelatin = 10, /singleton/reagent/water = 5, /singleton/reagent/spacespice = 1) reagent_mix = RECIPE_REAGENT_REPLACE result = /obj/item/reagent_containers/food/snacks/sliceable/vegello /singleton/recipe/fruitgello appliance = MIX - fruit = list("sugartree" = 2, "dirtberries" = 1) + fruit = list("nmshaan" = 2, "nifberries" = 1) reagents = list(/singleton/reagent/nutriment/gelatin = 10, /singleton/reagent/water = 5, /singleton/reagent/sugar = 5, /singleton/reagent/drink/milk/cream = 5) reagent_mix = RECIPE_REAGENT_REPLACE result = /obj/item/reagent_containers/food/snacks/fruitgello @@ -385,7 +385,7 @@ /singleton/recipe/fatshouterbake appliance = OVEN - fruit = list("sugartree" = 2) + fruit = list("nmshaan" = 2) items = list( /obj/item/reagent_containers/food/snacks/adhomian_can, /obj/item/reagent_containers/food/snacks/adhomian_can @@ -396,7 +396,7 @@ /singleton/recipe/crownfurter appliance = OVEN - fruit = list("dirtberries" = 1) + fruit = list("nifberries" = 1) items = list( /obj/item/reagent_containers/food/snacks/adhomian_sausage, /obj/item/reagent_containers/food/snacks/adhomian_sausage, diff --git a/code/modules/events/event.dm b/code/modules/events/event.dm index 5cceb97d5d9..e4641c6f39d 100644 --- a/code/modules/events/event.dm +++ b/code/modules/events/event.dm @@ -37,7 +37,7 @@ /datum/event_meta/New(event_severity, event_name, datum/event/type, event_weight, list/job_weights, is_one_shot = FALSE, min_event_weight = 0, max_event_weight = 0, list/excluded_roundtypes, - add_to_queue = TRUE, list/minimum_job_requirement_list, pop_needed = 1) + add_to_queue = TRUE, list/minimum_job_requirement_list, pop_needed = 0) name = event_name severity = event_severity diff --git a/code/modules/events/event_container.dm b/code/modules/events/event_container.dm index b53d447612e..b848e2ef535 100644 --- a/code/modules/events/event_container.dm +++ b/code/modules/events/event_container.dm @@ -316,8 +316,7 @@ GLOBAL_LIST_INIT(severity_to_string, list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT 15, list(ASSIGNMENT_SECURITY = 15)), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Moderate Spider Infestation", /datum/event/spider_infestation/moderate, - 50, list(ASSIGNMENT_SECURITY = 10), - pop_needed = 8), + 50, list(ASSIGNMENT_SECURITY = 10)), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Moderate Vermin Infestation", /datum/event/infestation/moderate, 30, list(ASSIGNMENT_JANITOR = 15, ASSIGNMENT_SECURITY = 15, ASSIGNMENT_MEDICAL = 10)), @@ -357,8 +356,7 @@ GLOBAL_LIST_INIT(severity_to_string, list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT 0, list(ASSIGNMENT_ANY = 1, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_GARDENER = 20), TRUE), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Spider Infestation", /datum/event/spider_infestation, - 25, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_MEDICAL = 5), TRUE, - pop_needed = 8), + 25, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_MEDICAL = 5), TRUE), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Major Vermin Infestation", /datum/event/infestation/major, 15, list(ASSIGNMENT_SECURITY = 15, ASSIGNMENT_MEDICAL = 5)), diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm index c180d3de4da..2a47d7dd93e 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -40,11 +40,6 @@ INFESTATION_HIVEBOTS = 1, INFESTATION_SLIMES = 1 ) - else if(player_count >= 8) - possible_mobs = list( - INFESTATION_SPIDERLINGS = 1, - INFESTATION_SLIMES = 1 - ) else possible_mobs = list( INFESTATION_SLIMES = 1 @@ -127,6 +122,7 @@ var/chosen_slime_type = pick(slime_types) for(var/i = 1, i < rand(5,8),i++) chosen_mob_types += chosen_slime_type + if(INFESTATION_SPIDERLINGS) event_name = "Greimorian Infestation" chosen_verb = "have burrowed into" diff --git a/code/modules/games/cards.dm b/code/modules/games/cards.dm index 0882bb52de7..30cb16fa4f9 100644 --- a/code/modules/games/cards.dm +++ b/code/modules/games/cards.dm @@ -8,7 +8,6 @@ w_class = WEIGHT_CLASS_SMALL icon = 'icons/obj/item/playing_cards.dmi' var/list/cards = list() - var/shuffle_sound = 'sound/items/cards/cardshuffle.ogg' var/hand_type /obj/item/deck/attack(mob/living/target_mob, mob/living/user, target_zone) @@ -36,6 +35,7 @@ drop_sound = 'sound/items/drop/paper.ogg' pickup_sound = 'sound/items/pickup/paper.ogg' hand_type = /obj/item/hand/cards + /obj/item/deck/Initialize() . = ..() generate_deck() @@ -107,7 +107,7 @@ H.cards += P cards -= P H.update_icon() - balloon_alert_to_viewers("draws a card") + balloon_alert_to_viewers("\The [user] draws a card.") if(!length(cards)) qdel(src) @@ -151,7 +151,7 @@ H.cards += P cards -= P H.update_icon() - balloon_alert_to_viewers("picks out a card") + balloon_alert_to_viewers("\The [user] picks out a card.") if(!length(cards)) qdel(src) @@ -201,7 +201,7 @@ H.concealed = TRUE H.update_icon() user.do_attack_animation(src, null) - balloon_alert_to_viewers("deals a card") + balloon_alert_to_viewers("\The [user] deals a card.") H.throw_at(get_step(target,target.dir), 10, 1, user, FALSE) if(!length(cards)) qdel(src) @@ -233,21 +233,19 @@ if (H in range(user, 3)) deal_card(user, H) -/obj/item/deck/CtrlClick(var/mob/user) +/obj/item/deck/CtrlClick(var/mob/user as mob) draw_card(user) -/obj/item/deck/AltClick(var/mob/user) +/obj/item/deck/AltClick(var/mob/user as mob) . = ..() - if(use_check_and_message(user)) - return var/list/newcards = list() while(length(cards)) var/datum/playingcard/P = pick(cards) newcards += P cards -= P cards = newcards - playsound(src.loc, shuffle_sound, 100, 1, -4) - balloon_alert_to_viewers("shuffling") + playsound(src.loc, 'sound/items/cards/cardshuffle.ogg', 100, 1, -4) + balloon_alert_to_viewers("\The [user] shuffles [src].") /obj/item/pack name = "card pack" @@ -323,7 +321,7 @@ H.update_icon() src.update_icon() playsound(src, 'sound/items/cards/cardflip.ogg', 50, TRUE) - balloon_alert_to_viewers("picks out a card") + balloon_alert_to_viewers("\The [user] picks out a card.") if(deploy_in_front) H.forceMove(get_step(usr, usr.dir)) else @@ -354,7 +352,7 @@ else update_icon() playsound(src, 'sound/items/cards/cardflip.ogg', 50, TRUE) - balloon_alert_to_viewers("[concealed ? "conceals" : "reveals"] their hand.") + balloon_alert_to_viewers("\The [user] [concealed ? "conceals" : "reveals"] their hand.") /obj/item/hand/get_examine_text(mob/user, distance, is_adjacent, infix, suffix) . = ..() @@ -454,222 +452,6 @@ return D.cards = cards - user.visible_message(SPAN_NOTICE("\The [user] turns his hand into a deck."), SPAN_NOTICE("You turn your hand into a deck.")) + balloon_alert_to_viewers("\The [user] turns his hand into a deck.") qdel(src) user.put_in_hands(D) - -/// Lyodii *not* tarot deck. -/obj/item/deck/lyodii - name = "lyodii fatesayer deck" - icon = 'icons/obj/item/playing_cards.dmi' - icon_state = "lyodii_deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod to tell one's fate." - desc_extended = "These 'cards' are actually rectangular pieces of bone, engraved with different religious imagery. They are then painted with soot or blood-ink. Usually made by tribal shamans in \ - agonizingly difficult work, these are hand-crafted by each tribe - thus some imagery can deviate from one another. A deck consists of 36 pieces, divided as follows: Spirits, Beasts, Winds and Paths \ - each having eight cards in their stack and Bones, with four cards. Traditionally a Bone card is drawn, then one each of the rest. The Bone cards put the other four cards into perspective so one's fate \ - can be determined. More modern iterations of these Fatesayer decks are also made by the few permanent settlements in the Lyod, to sell them off. They are not using real bone and the imagery is usually more \ - refined and detailed, since they are machine-made." - drop_sound = 'sound/items/drop/bone_drop.ogg' - pickup_sound = 'sound/items/drop/bone_drop.ogg' - shuffle_sound = 'sound/items/cards/bone_shuffle.ogg' - hand_type = /obj/item/hand/lyodii - -/obj/item/hand/lyodii - deck_type = /obj/item/deck/lyodii - desc = "A deck of lyodii Fatesayer cards." - drop_sound = 'sound/items/drop/bone_drop.ogg' - pickup_sound = 'sound/items/drop/bone_drop.ogg' - -/obj/item/deck/lyodii/spirits - name = "lyodii fatesayer spirits deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod. This stack contains the Spirits cards. " - icon_state = "lyodii_deck" - item_state = "lyodii_deck" - -/obj/item/deck/lyodii/spirits/generate_deck() - var/datum/playingcard/P - for(var/name in list("Chieftain","Shaman","Crown of Ice","Dreaming Girl","Flamewalker","Tall Stranger","Mother","Hollowed Man")) - P = new() - P.name = "[name]" - switch(name) - if("Chieftain") - P.desc = "A tall figure stands before a wind-beaten tent, draped in heavy furs. One hand holds a carved antler staff, the other is raised toward a gathering of smaller shadowy figures. The chieftain's eyes are closed in \ - burdened contemplation. Behind him, the sun is barely visible over the horizon. It is associated with: leadership, burden, guidance." - if("Shaman") - P.desc = "A kneeling figure surrounded by animal bones and burning herbs. Her face is painted with blood and soot. Behind her, a spectral shape looms but no details can be made out. It is associated with: wisdom, communion \ - with spirits, madness." - if("Crown of Ice") - P.desc = "A throne of cracked glacier-ice, on it sitting a crown of deep blue ice. There are two sockets embedded in the crown, one with a sapphire, one empty. It is associated with: harsh judge, death's herald." - if("Dreaming Girl") - P.desc = "A young girl sleeping in a snowdrift, untouched by cold. Above her, the night sky swirls with auroras forming vague shapes. Her expression is peaceful, but a tear of blood escapes one eye. It is associated with: \ - prophecy, confusion, hidden truths." - if("Flamewalker") - P.desc = "A cloaked figure walking across an icefield. He's burning. Fire doesn’t consume him—it emerges from his footprints. He carries a bundle of books and bones wrapped in red cloth. It is associated with: \ - change-bringing, exile, innovation." - if("Tall Stranger") - P.desc = "A faceless, well-built and tall standing figure in fine red-gilded robes stands at atop a snowdrift. He holds a sword in one hand, the other's clenched to a fist. No footprints are left where he stands. \ - It is associated with: deception, fate disguised, dishonesty." - if("Mother") - P.desc = "A woman cradling a baby in one arm, a ceremonial blade in the other. Her expression is conflicted. Behind her, two paths diverge—one leads to a firelit camp, the other into a storm. It is associated with: \ - choices, nurture vs. law, duality." - if("Hollowed Man") - P.desc = "A man torso unclothed, kneels in the snow. A hole where his heart should be reveals a swirling void inside. Spirits drift around him. It is associated with: sacrifice, emptiness, spiritual rebirth." - P.card_icon = "spirits" - P.back_icon = "card_back_lyodii" - cards += P - -/obj/item/deck/lyodii/paths - name = "lyodii fatesayer paths deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod. This stack contains the Paths cards. " - icon_state = "lyodii_deck" - item_state = "lyodii_deck" - -/obj/item/deck/lyodii/paths/generate_deck() - var/datum/playingcard/P - for(var/name in list("Frozen Footprint","Shared Fire","Broken Edict","Silent Hunt","Lost Tribe","Marked Bone","Buried Blade","Icebound Oath")) - P = new() - P.name = "[name]" - switch(name) - if("Frozen Footprint") - P.desc = "A single footprint frozen solid in a cracked icy path. It glows faintly, untouched by time. Around it, scattered is a bloodied cloth and a broken spearhead. It is associated with: missed opportunity, consequences." - if("Shared Fire") - P.desc = "Several figures gather around a fire in the middle of a blizzard. Though cold rages around them, their circle is warm. Shadows on the tent walls show animals instead of people. One figure extends a \ - hand to the viewer. It is associated with: community, sacrifice, loyality." - if("Broken Edict") - P.desc = "A sacred tablet cracked down the middle, one half buried in snow, the crack forms a lightning-shaped glyph. A fox sits nearby, watching. It is associated with: rebellion, righteousness, moral ambiguity." - if("Silent Hunt") - P.desc = "A hunter crouches in the snow, bow drawn, breath invisible. Behind them, a spectral beast stalks them in silence. No footprints in the snow. Both hunter and hunted wear the same carved mask. It is associated with: \ - patience, waiting, unspoken action." - if("Lost Tribe") - P.desc = "A caravan of silhouettes walks endlessly across a snowplain beneath a starry sky. One member carries a banner with, but it is impossible to see what it shows. It is associated with: disconnection, wandering." - if("TMarked Bone") - P.desc = "A long, polished bone lies on a shrine, carved with fresh glyphs bleeding red ink, a spectral bird watches from above. The glyphs emit a faint glow. It is associated with: signs from the Goddess, omens." - if("Buried Blade") - P.desc = "A ritual dagger protrudes from a snowbank, only its hilt visible. Blood stains the snow nearby. The hilt is wrapped in two colors. A snowflake lands, forming a glyph for 'lies'. It is associated with: \ - hidden conflict, denial." - if("Icebound Oath") - P.desc = "Two figures clasp wrists, their hands frozen together by blue ice. One looks determined, the other regretful. A small fire burns in the background. It is associated with: duty, promise, burdens kept too long." - P.card_icon = "paths" - P.back_icon = "card_back_lyodii" - cards += P - -/obj/item/deck/lyodii/beasts - name = "lyodii fatesayer beasts deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod. This stack contains the Beasts cards." - icon_state = "lyodii_deck" - item_state = "lyodii_deck" - -/obj/item/deck/lyodii/beasts/generate_deck() - var/datum/playingcard/P - for(var/name in list("Tenelote","Arctic Fox","Bisumoi","Prejoroub","Yastr","Ptarmigan","Reindeer","Snow Hare")) - P = new() - P.name = "[name]" - switch(name) - if("Tenelote") - P.desc = "A massive white-furred Tenelote, horned, stands atop a frozen ridge. Its eyes glow faintly blue, snow spirals upward around it. Broken spears stick out of its flank, yet it stands unbowed. Behind it, \ - a blizzard is approaching. It is associated with: strength, endurance, ferocity." - if("Arctic Fox") - P.desc = "A small, sleek fox slinks through moonlit snow, looking back over its shoulder with knowing eyes. One pawprint glows faintly. Its tail is split in two. In the snow nearby: a discarded bone dice and a \ - trail of feathers. It is associated with: cunning, hidden paths, trickery." - if("Bisumoi") - P.desc = "A towering moose-like creature with two sets of twisted antlers resembling roots and glyphs. It gazes at the viewer through milky eyes while snow falls silently around it. It is associated with: \ - ancient wisdom, balance, ancestral memory." - if("Prejoroub") - P.desc = "A long-winged bird, vulture-like but with a face that resembles a skull, circles over a field strewn with bones. Feathers fall from its wings, where they land, fire erupts. Its shadow is shaped like a wolf. \ - It is associated with: death, scavenging, what must be taken." - if("Yastr") - P.desc = "A flock of thin-necked bird with long wings fly across the tundra under a blazing sunset. The lead bird looks back, as if uncertain. A single figure watches from afar, unseen by the beasts. It is associated with: \ - migration, movement, restlessness." - if("Ptarmigan") - P.desc = "A deceptively calm snowbird perches on a branch above a frozen lake. Beneath the ice, shadows twist and churn. One of the eyes of the bird is missing. A bloodied feather drifts down toward the viewer. It is associated with: \ - danger beneath calm, betrayal." - if("Reindeer") - P.desc = "A scarred reindeer stands within a ring of tribal totems. It bows its head, offering its antlers to a shamanic figure. Runes burned into its flank. Each totem around it is engraved with different runes. \ - It is associated with: loyalty, hunger, bonds." - if("Snow Hare") - P.desc = "A white hare dashes through the snow under a full moon, carrying a leaf bundle in its mouth. Behind it in the sky, there's a shooting star. Three small spirits follow behind, barely visible. Snowflakes around \ - the hare are all different glyphs. It is associated with: small joys, fleeting beauty, messages." - P.card_icon = "beasts" - P.back_icon = "card_back_lyodii" - cards += P - -/obj/item/deck/lyodii/winds - name = "lyodii fatesayer winds deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod. This stack contains the Winds cards. " - icon_state = "lyodii_deck" - item_state = "lyodii_deck" - -/obj/item/deck/lyodii/winds/generate_deck() - var/datum/playingcard/P - for(var/name in list("North Wind","South Wind","East Wind","West Wind","Windless Day","Black Gale","Whisper Breeze","Stormcry")) - P = new() - P.name = "[name]" - switch(name) - if("North Wind") - P.desc = "A gentle, blue-hued gust flows over a landscape, moving over a firelit camp. Spirals of warmth rise from the fires. The wind forms a protective circle. It is associated with: mercy, home, unexpected aid." - if("South Wind") - P.desc = "A crimson gale howls down a mountainside, tearing trees from the ground. A figure walks into it, teeth bared. Faint, distorted faces can be seen in the gusts. Shattered ice-crystals fly like knives. \ - It is associated with: cruelty, challenge, reckoning." - if("East Wind") - P.desc = "A pale wind carries seeds and starlight across a dark horizon. Dawn breaks just as the wind touches the earth. One cloud overhead resembles an open eye. It is associated with: beginnings, clarity, sacred insight." - if("West Wind") - P.desc = "A wind brushes over a field of grave markers made of bone. Spirits rise gently in its wake. Faint faces drift briefly along the wind. The moon watches in the sky. It is associated with: endings, \ - mystery, ancestral voices." - if("Windless Day") - P.desc = "A completely still scene, a frozen lake, unmoving trees, a bird suspended in midair. A sense of being trapped in time. A small crack in the lake surface forms the glyph for 'waiting'. It is associated with: \ - stagnation, hidden tension." - if("Black Gale") - P.desc = "A storm-black wind crashes into tents, tearing them apart as lightning strikes nearby. The wind has claws. Each lightning bolt forms a different rune for destruction, punishment. It is associated with: \ - upheaval, divine punishment." - if("Whisper Breeze") - P.desc = "A soft breeze curls around a sleeping child’s ear, one candle stands nearby. It is associated with: secrets, subtle shifts." - if("Stormcry") - P.desc = "Rain and wind mix with wailing spirit-faces. A lone figure kneels on a clifftop, arms raised in anguish. Tears fall upward, the wind feels heavy. It is associated with: rage, grief, release." - P.card_icon = "winds" - P.back_icon = "card_back_lyodii" - cards += P - -/obj/item/deck/lyodii/bones - name = "lyodii fatesayer bones deck" - desc = "A traditionally-made deck of Fatesayer cards, used by the people of the Lyod. This stack contains the Bones cards. " - icon_state = "lyodii_deck" - item_state = "lyodii_deck" - -/obj/item/deck/lyodii/bones/generate_deck() - var/datum/playingcard/P - for(var/name in list("Bone of Birth","Bone of Death","Bone of Choice","Goddess")) - P = new() - P.name = "[name]" - P.card_icon = "bones" - P.back_icon = "card_back_lyodii" - switch(name) - if("Bone of Birth") - P.desc = "A curved rib bone floats in a pool of water, illuminated from below. Inside it, a tiny sprout grows. In the water’s reflection, the bone looks like a cradle. It is associated with: legacy, fate beginning to move." - if("Bone of Death") - P.desc = "A skull, half-buried in snow, with a single red flower growing from one eye socket. A spirit form rises behind the skull, birds fly overhead. It is associated with: inevitable ends, sacred cycles." - if("Bone of Choice") - P.desc = "A forked femur lies between two paths—one lined with fire, the other shadowy. A hand hesitates above it. The bone is marked with tally marks and blood-stained glyphs. It is associated with: the moment of truth, \ - taking action." - if("Goddess") - P.desc = "A glowing, diffuse spectral form floats above a ritual circle of bones. Light spills from the heavens onto it. Snowflakes falling nearby take on different shapes of animals, eyes and hands. It is associated with: \ - divine will, judgement, revelation." - P.card_icon = "goddess" - cards += P - -/obj/item/storage/box/lyodii - name = "fatesayer box" - desc = "A small leather case to to hold all 36 cards of a Fatesayer deck." - icon_state = "card_holder_empty" - icon = 'icons/obj/storage/misc.dmi' - can_hold = list(/obj/item/deck, /obj/item/hand, /obj/item/card) - storage_slots = 5 //Needs to hold all five Fatesayer cards. - use_sound = 'sound/items/drop/shoes.ogg' - drop_sound = 'sound/items/drop/hat.ogg' - -/obj/item/storage/box/lyodii/fill() - ..() - new /obj/item/deck/lyodii/spirits(src) - new /obj/item/deck/lyodii/paths(src) - new /obj/item/deck/lyodii/beasts(src) - new /obj/item/deck/lyodii/winds(src) - new /obj/item/deck/lyodii/bones(src) diff --git a/code/modules/games/tarot.dm b/code/modules/games/tarot.dm index da5cd999709..b3bba9894b4 100644 --- a/code/modules/games/tarot.dm +++ b/code/modules/games/tarot.dm @@ -26,7 +26,7 @@ P.back_icon = "card_back_tarot" cards += P -/obj/item/deck/tarot/AltClick(mob/user) +/obj/item/deck/tarot/AltClick(var/mob/user as mob) var/list/newcards = list() while(cards.len) var/datum/playingcard/P = pick(cards) @@ -37,9 +37,9 @@ cards -= P cards = newcards playsound(src.loc, 'sound/items/cards/cardshuffle.ogg', 100, 1, -4) - balloon_alert_to_viewers("shuffling") + user.visible_message("\The [user] shuffles \the [src].") + -/// Tajaran tarot deck. /obj/item/deck/tarot/adhomai name = "adhomian divination cards deck" desc = "An adhomian deck of divination cards, used to read the one's fortune or play games." @@ -68,7 +68,6 @@ P.back_icon = "card_back_adhomai" cards += P -/// Skrellian tarot decks. /obj/item/deck/tarot/nralakk name = "qwei'paqui homeworld deck" desc = "A Skrellian deck of tarot cards depicting the main constellations of Nralakk." @@ -168,3 +167,4 @@ P.card_icon = "[suit]_[lowertext(name)]" P.back_icon = "card_off_[suit]" cards += P + diff --git a/code/modules/ghostroles/spawner/atom/hivebot.dm b/code/modules/ghostroles/spawner/atom/hivebot.dm deleted file mode 100644 index ed4856ade52..00000000000 --- a/code/modules/ghostroles/spawner/atom/hivebot.dm +++ /dev/null @@ -1,71 +0,0 @@ -/datum/ghostspawner/hivebotdestroyer - short_name = "hivebotdestroyer" - name = "Hivebot Destroyer" - desc = "Protect your fellow hivebots from any potential threats." - tags = list("Antagonist") - - observers_only = TRUE - - loc_type = GS_LOC_ATOM - atom_add_message = "A hivebot destroyer has spawned!" - - spawn_mob = /mob/living/simple_animal/hostile/hivebot/playable/ - -/datum/ghostspawner/hivebotdestroyer/spawn_mob(mob/user) - . = ..() - - //Basically, we don't want the mob AI to keep running if a player is assigned to it - //ideally there should also be an handling to resume thinking if the player ghosts - //but that would probably need a signal that we don't currently have, hence - //something for another time - var/mob/our_new_mob = . //This cast is needed, sorry - if(istype(our_new_mob) && !QDELETED(our_new_mob)) - MOB_STOP_THINKING(our_new_mob) - -/datum/ghostspawner/hivebotmarksman - short_name = "hivebotmarksman" - name = "Hivebot Marksman" - desc = "Protect your fellow hivebots from any potential threats." - tags = list("Antagonist") - - observers_only = TRUE - - loc_type = GS_LOC_ATOM - atom_add_message = "A hivebot marksman has spawned!" - - spawn_mob = /mob/living/simple_animal/hostile/hivebot/playable/ranged - -/datum/ghostspawner/hivebotmarksman/spawn_mob(mob/user) - . = ..() - - //Basically, we don't want the mob AI to keep running if a player is assigned to it - //ideally there should also be an handling to resume thinking if the player ghosts - //but that would probably need a signal that we don't currently have, hence - //something for another time - var/mob/our_new_mob = . //This cast is needed, sorry - if(istype(our_new_mob) && !QDELETED(our_new_mob)) - MOB_STOP_THINKING(our_new_mob) - -/datum/ghostspawner/hivebotoverseer - short_name = "hivebotoverseer" - name = "Hivebot Overseer" - desc = "Protect your fellow hivebots from any potential threats. Assemble new hivebots as necessary." - tags = list("Antagonist") - - observers_only = TRUE - - loc_type = GS_LOC_ATOM - atom_add_message = "A hivebot overseer has spawned!" - - spawn_mob = /mob/living/simple_animal/hostile/hivebot/playable/overseer - -/datum/ghostspawner/hivebotoverseer/spawn_mob(mob/user) - . = ..() - - //Basically, we don't want the mob AI to keep running if a player is assigned to it - //ideally there should also be an handling to resume thinking if the player ghosts - //but that would probably need a signal that we don't currently have, hence - //something for another time - var/mob/our_new_mob = . //This cast is needed, sorry - if(istype(our_new_mob) && !QDELETED(our_new_mob)) - MOB_STOP_THINKING(our_new_mob) diff --git a/code/modules/hydroponics/seed_datums/adhomai.dm b/code/modules/hydroponics/seed_datums/adhomai.dm index b185f59ba2c..8046ab5c5b0 100644 --- a/code/modules/hydroponics/seed_datums/adhomai.dm +++ b/code/modules/hydroponics/seed_datums/adhomai.dm @@ -76,16 +76,16 @@ /obj/item/seeds/earthenroot seed_type = "earthenroot" -/datum/seed/dirtberries - name = "dirtberries" - seed_name = "dirtberries" +/datum/seed/nifberries + name = "nifberries" + seed_name = "dirt berries" display_name = "dirt berries shrub" product_desc = "a pile of Adhomian berries used by the Tajara for its oil." product_desc_extended = "An above-ground evergreen shrub that grows sweet, starchy legumes underground in thick pods. 'Dirt Berries', or Zhu'hagha Nifs, grow like peanuts but bear several nuts like peas in a pod, typically around 8 thumb-sized nifs in each pod. Their flavor is rich, fatty, and savory, and they are used to produce oil." chems = list(/singleton/reagent/nutriment = list(0, 15), /singleton/reagent/nutriment/triglyceride/oil = list(1, 5), /singleton/reagent/drink/dirtberryjuice = list(10,10)) - kitchen_tag = "dirtberries" + kitchen_tag = "nifberries" -/datum/seed/dirtberries/setup_traits() +/datum/seed/nifberries/setup_traits() ..() set_trait(TRAIT_HARVEST_REPEAT, 1) set_trait(TRAIT_JUICY, 1) @@ -101,8 +101,8 @@ set_trait(TRAIT_WATER_CONSUMPTION, 6) set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) -/obj/item/seeds/dirtberries - seed_type = "dirtberries" +/obj/item/seeds/nifberries + seed_type = "nifberries" /datum/seed/mushroom/nfrihi name = "nfrihi" @@ -133,8 +133,8 @@ /obj/item/seeds/blizzard seed_type = "nfrihi" -/datum/seed/sugartree - name = "sugar tree" +/datum/seed/nmshaan + name = "nmshaan" seed_name = "sugar tree" display_name = "sugar trees" product_desc = "the fruit of the Sugar Tree, native to Adhomai. It is sweet and commonly used in candies." @@ -142,21 +142,21 @@ seed_noun = SEED_NOUN_SEEDS mutants = null chems = list(/singleton/reagent/sugar = list(2, 10), /singleton/reagent/nutriment/gelatin = list(2, 5)) - kitchen_tag = "sugartree" + kitchen_tag = "nmshaan" -/datum/seed/sugartree/setup_traits() +/datum/seed/nmshaan/setup_traits() ..() set_trait(TRAIT_HARVEST_REPEAT, 1) set_trait(TRAIT_MATURATION, 9) set_trait(TRAIT_PRODUCTION, 5) set_trait(TRAIT_YIELD, 2) - set_trait(TRAIT_PRODUCT_ICON,"sugartree") + set_trait(TRAIT_PRODUCT_ICON,"nmshaan") set_trait(TRAIT_PRODUCT_COLOUR,"#fffdf7") set_trait(TRAIT_PLANT_COLOUR,"#31331c") - set_trait(TRAIT_PLANT_ICON,"sugartree") + set_trait(TRAIT_PLANT_ICON,"nmshaan") set_trait(TRAIT_IDEAL_HEAT, 253) set_trait(TRAIT_WATER_CONSUMPTION, 4) set_trait(TRAIT_IDEAL_LIGHT, 3) /obj/item/seeds/sugartree - seed_type = "sugartree" + seed_type = "nmshaan" diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm index f3c4fb697f1..072a1d7a677 100644 --- a/code/modules/hydroponics/seed_packets.dm +++ b/code/modules/hydroponics/seed_packets.dm @@ -4,7 +4,7 @@ GLOBAL_LIST_EMPTY(plant_seed_sprites) /obj/item/seeds name = "packet of seeds" icon = 'icons/obj/seeds.dmi' - icon_state = "blank" + icon_state = "random" w_class = WEIGHT_CLASS_SMALL storage_slot_sort_by_name = TRUE diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index a6ecaf3f1a4..3f57d1ecf0b 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -292,7 +292,7 @@ /obj/item/seeds/cocoapodseed = 3, /obj/item/seeds/coffeeseed = 3, /obj/item/seeds/cornseed = 3, - /obj/item/seeds/dirtberries = 2, + /obj/item/seeds/nifberries = 2, /obj/item/seeds/dynseed = 3, /obj/item/seeds/earthenroot = 2, /obj/item/seeds/eggplantseed = 3, @@ -378,7 +378,7 @@ /obj/item/seeds/cocoapodseed = 3, /obj/item/seeds/coffeeseed = 3, /obj/item/seeds/cornseed = 3, - /obj/item/seeds/dirtberries = 2, + /obj/item/seeds/nifberries = 2, /obj/item/seeds/dynseed = 3, /obj/item/seeds/replicapod = 3, /obj/item/seeds/earthenroot = 2, diff --git a/code/modules/hydroponics/trays/tray.dm b/code/modules/hydroponics/trays/tray.dm index 4a5933f71e7..395fdfd025e 100644 --- a/code/modules/hydroponics/trays/tray.dm +++ b/code/modules/hydroponics/trays/tray.dm @@ -8,74 +8,49 @@ atom_flags = ATOM_FLAG_OPEN_CONTAINER volume = 100 - /// Set to 0 to stop it from drawing the alert lights. - var/mechanical = 1 + var/mechanical = 1 // Set to 0 to stop it from drawing the alert lights. var/base_name = "tray" - // --- Plant maintenance vars. --- - /// Water (max 100) - var/waterlevel = 100 - /// Nutrient (max 10) - var/nutrilevel = 10 - /// Pests (max 10) - var/pestlevel = 0 - // Weeds (max 10) - var/weedlevel = 0 + // Plant maintenance vars. + var/waterlevel = 100 // Water (max 100) + var/nutrilevel = 10 // Nutrient (max 10) + var/pestlevel = 0 // Pests (max 10) + var/weedlevel = 0 // Weeds (max 10) var/maxWaterLevel = 100 var/maxNutriLevel = 10 var/maxPestLevel = 10 - /// Hydroponics systems don't grow weeds irl. Pests are still an issue. - var/maxWeedLevel = 0 + var/maxWeedLevel = 0 // Hydroponics systems don't grow weeds irl. Pests are still an issue. - // --- Tray state vars. --- - /// Is it dead? - var/dead = 0 - /// Is it ready to harvest? - var/harvest = 0 - /// Current plant age - var/age = 0 - /// Have we taken a sample? - var/sampled = 0 - /// What was the bioluminescence last tick? - var/last_biolum + // Tray state vars. + var/dead = 0 // Is it dead? + var/harvest = 0 // Is it ready to harvest? + var/age = 0 // Current plant age + var/sampled = 0 // Have we taken a sample? + var/last_biolum // What was the bioluminescence last tick? - // --- Harvest/mutation mods. --- - /// Modifier to yield - var/yield_mod = 0 - /// Modifier to mutation chance - var/mutation_mod = 0 - /// Toxicity in the tray? - var/toxins = 0 - /// When it hits 100, the plant mutates. - var/mutation_level = 0 - /// Supplied lighting. - var/tray_light = 5 + // Harvest/mutation mods. + var/yield_mod = 0 // Modifier to yield + var/mutation_mod = 0 // Modifier to mutation chance + var/toxins = 0 // Toxicity in the tray? + var/mutation_level = 0 // When it hits 100, the plant mutates. + var/tray_light = 5 // Supplied lighting. // Mechanical concerns. - /// Plant health. - var/health = 0 - /// Last time tray was harvested - var/lastproduce = 0 - /// Cycle timing/tracking var. - var/lastcycle = 0 - /// Delay per cycle. - var/cycledelay = 150 - /// If set, the tray will attempt to take atmos from a pipe. - var/closed_system - /// Set this to bypass the cycle time check. - var/force_update - /// Something to hold reagents during process_reagents() - var/obj/temp_chem_holder + var/health = 0 // Plant health. + var/lastproduce = 0 // Last time tray was harvested + var/lastcycle = 0 // Cycle timing/tracking var. + var/cycledelay = 150 // Delay per cycle. + var/closed_system // If set, the tray will attempt to take atmos from a pipe. + var/force_update // Set this to bypass the cycle time check. + var/obj/temp_chem_holder // Something to hold reagents during process_reagents() var/labelled - /// Seed details/line data. + // Seed details/line data. var/datum/seed/seed = null // The currently planted seed - /** - Reagent information for process(), consider moving this to a controller along - with cycle information under 'mechanical concerns' at some point. - */ + // Reagent information for process(), consider moving this to a controller along + // with cycle information under 'mechanical concerns' at some point. var/global/list/toxic_reagents = list( /singleton/reagent/dylovene = -2, /singleton/reagent/toxin = 2, @@ -131,7 +106,7 @@ /singleton/reagent/drink/sodawater = 1 ) - /// Beneficial reagents also have values for modifying yield_mod and mut_mod (in that order). + // Beneficial reagents also have values for modifying yield_mod and mut_mod (in that order). var/global/list/beneficial_reagents = list( /singleton/reagent/alcohol/beer=list( -0.05, 0, 0 ), /singleton/reagent/hydrazine = list( -2, 0, 0 ), @@ -152,10 +127,8 @@ /singleton/reagent/toxin/fertilizer/left4zed = list( 0, 0, 0.2) ) - /** - Mutagen list specifies minimum value for the mutation to take place, rather - than a bound as the lists above specify. - */ + // Mutagen list specifies minimum value for the mutation to take place, rather + // than a bound as the lists above specify. var/global/list/mutagenic_reagents = list( /singleton/reagent/radium = 8, /singleton/reagent/mutagen = 15 @@ -285,7 +258,7 @@ seed.create_spores(get_turf(src)) visible_message(SPAN_DANGER("\The [src] releases its spores!")) -/// Process reagents being input into the tray. +//Process reagents being input into the tray. /obj/machinery/portable_atmospherics/hydroponics/proc/process_reagents() if(!reagents) return @@ -336,7 +309,7 @@ temp_chem_holder.reagents.clear_reagents() check_health() -/// Harvests the product of a plant. +//Harvests the product of a plant. /obj/machinery/portable_atmospherics/hydroponics/proc/harvest(var/mob/user) //Harvest the product of the plant, @@ -369,7 +342,7 @@ check_health() return -/// Clears out a dead plant. +//Clears out a dead plant. /obj/machinery/portable_atmospherics/hydroponics/proc/remove_dead(var/mob/user) if(!user || !dead || !seed) return @@ -390,7 +363,7 @@ check_health() return -/// If a weed growth is sufficient, this proc is called. +// If a weed growth is sufficient, this proc is called. /obj/machinery/portable_atmospherics/hydroponics/proc/weed_invasion() //Remove the seed if something is already planted. @@ -504,7 +477,6 @@ RC.reagents.remove_reagent(/singleton/reagent/water, amountToRemove, 1) waterlevel += amountToRemove user.visible_message("[user] transfers some water to the tray.", "You transfer about [amountToRemove] units of water to the tray.") - playsound(src, /singleton/sound_category/generic_pour_sound, 25, 1) else to_chat(user, SPAN_WARNING("This tray is full of water already.")) return TRUE @@ -526,20 +498,17 @@ to_chat(user, "The plant is dead.") return - // Create a sample. Takes a moment. - user.visible_message(SPAN_WARNING("\The [user] begins to sample \the [src]."), SPAN_NOTICE("You begin sampling \the [src].")) - if(do_after(user, 1 SECOND)) - playsound(src, 'sound/items/Wirecutter.ogg', 25, 1) - seed.harvest(user,yield_mod,1) - health -= (rand(3,5)*10) + // Create a sample. + seed.harvest(user,yield_mod,1) + health -= (rand(3,5)*10) - if(prob(30)) - sampled = 1 + if(prob(30)) + sampled = 1 - // Bookkeeping. - check_health() - force_update = 1 - process() + // Bookkeeping. + check_health() + force_update = 1 + process() return @@ -596,33 +565,14 @@ else if (istype(attacking_item, /obj/item/material/minihoe)) // The minihoe if(weedlevel > 0) - user.visible_message(SPAN_DANGER("[user] starts uprooting the weeds from \the [src]."), - SPAN_DANGER("You begin to remove the weeds from \the [src].")) + user.visible_message(SPAN_DANGER("[user] starts uprooting the weeds."), + SPAN_DANGER("You remove the weeds from the [src].")) - if(do_after(user, 1 SECOND)) - playsound(src, /singleton/sound_category/shovel_sound, 25, 1) - user.visible_message(SPAN_DANGER("[user] uproots the weeds from \the [src]."), - SPAN_DANGER("You successfully remove the weeds from \the [src].")) - weedlevel = 0 - update_icon() + weedlevel = 0 + update_icon() else to_chat(user, SPAN_DANGER("This plot is completely devoid of weeds. It doesn't need uprooting.")) - // Hatchets can uproot the contents of trays to kill the plant with one click. - else if (istype(attacking_item, /obj/item/material/hatchet)) - if(health > 0) - user.visible_message(SPAN_DANGER("[user] begins uprooting the contents of \the [src]."), - SPAN_DANGER("You begin to uproot the contents of \the [src].")) - - if(do_after(user, 2 SECOND)) - playsound(src, /singleton/sound_category/shovel_sound, 25, 1) - user.visible_message(SPAN_DANGER("[user] uproots the contents of \the [src]!"), - SPAN_DANGER("You successfully uproot the contents of \the [src].")) - health = 0 - check_health() - else - to_chat(user, SPAN_DANGER("There is nothing in this plot for you to uproot!")) - else if (istype(attacking_item, /obj/item/storage/bag/plants)) attack_hand(user) diff --git a/code/modules/mapping/planet_types/lore/srandmarr.dm b/code/modules/mapping/planet_types/lore/srandmarr.dm index 3bbcaaf2f32..712154753fe 100644 --- a/code/modules/mapping/planet_types/lore/srandmarr.dm +++ b/code/modules/mapping/planet_types/lore/srandmarr.dm @@ -154,7 +154,7 @@ water_color = "#b5dfeb" generated_name = FALSE ruin_planet_type = PLANET_LORE - small_flora_types = list(/datum/seed/shand, /datum/seed/mtear, /datum/seed/earthenroot, /datum/seed/dirtberries, /datum/seed/mushroom/nfrihi, /datum/seed/sugartree) + small_flora_types = list(/datum/seed/shand, /datum/seed/mtear, /datum/seed/earthenroot, /datum/seed/nifberries, /datum/seed/mushroom/nfrihi, /datum/seed/nmshaan) ruin_type_whitelist = list (/datum/map_template/ruin/exoplanet/adhomai_hunting, /datum/map_template/ruin/exoplanet/adhomai_minefield, /datum/map_template/ruin/exoplanet/adhomai_village, /datum/map_template/ruin/exoplanet/adhomai_abandoned_village, /datum/map_template/ruin/exoplanet/adhomai_battlefield, /datum/map_template/ruin/exoplanet/adhomai_cavern, /datum/map_template/ruin/exoplanet/adhomai_bar, /datum/map_template/ruin/exoplanet/adhomai_war_memorial, /datum/map_template/ruin/exoplanet/adhomai_raskara_ritual, /datum/map_template/ruin/exoplanet/adhomai_raskariim_hideout, /datum/map_template/ruin/exoplanet/adhomai_cavern_geist, diff --git a/code/modules/mob/language/outsider.dm b/code/modules/mob/language/outsider.dm index 2ed60387dc7..d93ab271dbd 100644 --- a/code/modules/mob/language/outsider.dm +++ b/code/modules/mob/language/outsider.dm @@ -194,17 +194,3 @@ /datum/language/purpose/get_random_name() return "[pick(list("HERA","ZEUS","ARTEMIS","ATHENA","ARES","HADES","POSEIDON","DEMETER","APOLLO","APHORDITE","HERMES","HESTIA","DIONYSUS","PERSEPHONE","KRONOS","ODYSSEUS","AJAX","AGAMENON","CHIRON","CHARON"))][rand(100, 999)]" - -/datum/language/hivebot - name = LANGUAGE_HIVEBOT - desc = "A heavily encrypted communication network, used by hivebots." - speech_verb = list("beeps") - ask_verb = list("beeps") - exclaim_verb = list("loudly beeps") - sing_verb = list("rhythmically beeps") - colour = "changeling" - written_style = "encodedaudiolanguage" - key = "hb" - flags = RESTRICTED | NO_STUTTER | HIVEMIND - syllables = list("beep","beep","beep","beep","beep","boop","boop","boop","bop","bop","dee","dee","doo","doo","hiss","hss","buzz","buzz","bzz","ksssh","keey","wurr","wahh","tzzz") - space_chance = 10 diff --git a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm index 0b73df85b21..c6eaace5ea7 100644 --- a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm +++ b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm @@ -64,10 +64,6 @@ pain_messages = list("We're in pain", "We hurt so much", "We can't stand the pain") pain_item_drop_cry = list("creaks loudly and ", "rustles erratically and ", "twitches for a moment and ") - natural_armor = list( - MELEE = ARMOR_MELEE_MEDIUM - ) - pain_mod = 0.5 grab_mod = 0.6 // Viney Tentacles and shit to cling onto resist_mod = 1.5 // Reasonably stronk, not moreso than an Unathi or robot. diff --git a/code/modules/mob/living/carbon/human/species/station/diona/diona_subspecies.dm b/code/modules/mob/living/carbon/human/species/station/diona/diona_subspecies.dm index ff0f106d5ce..ad24e401f2a 100644 --- a/code/modules/mob/living/carbon/human/species/station/diona/diona_subspecies.dm +++ b/code/modules/mob/living/carbon/human/species/station/diona/diona_subspecies.dm @@ -13,9 +13,6 @@ towards more experienced gestalts as a hand to help guide them. As a result of being more formative and idealistic, Coeus tend to be more pacifistic and less prone towards any kind of \ violence, including against more simple-minded creatures such as monkeys." - // An empty list, so they do not inherit the melee armour of their parent. - natural_armor = list() - slowdown = 0 siemens_coefficient = 0.7 pain_mod = 2 diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm index 50a026bec07..6084b6c0dd0 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm @@ -44,6 +44,7 @@ ethanol_resistance = 0.9//Gets drunk a little faster rarity_value = 2 economic_modifier = 7 + selectable_pronouns = list(MALE, FEMALE) stamina = 90 // Tajara evolved to maintain a steady pace in the snow, sprinting wastes energy stamina_recovery = 4 diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 16b268fad85..fbe54b95eb0 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -622,8 +622,6 @@ cell_component.installed = 0 to_chat(user, SPAN_NOTICE("You remove \the [cell_component.wrapped].")) if(user.a_intent == I_HELP) - if(wires_exposed) - wires.interact(user) if(attacking_item.iswelder()) if(src == user) to_chat(user, SPAN_WARNING("You lack the reach to be able to repair yourself.")) @@ -745,6 +743,12 @@ C.brute_damage = 0 C.electronics_damage = 0 handle_panel_overlay() + else if(attacking_item.iswirecutter() || attacking_item.ismultitool()) + if(wires_exposed) + wires.interact(user) + else + to_chat(user, SPAN_WARNING("\The [src]'s wires aren't exposed.")) + return else if(attacking_item.isscrewdriver() && opened && !cell) // haxing wires_exposed = !wires_exposed user.visible_message(SPAN_NOTICE("\The [user] [wires_exposed ? "exposes" : "covers"] \the [src]'s wires."), SPAN_NOTICE("You [wires_exposed ? "expose" : "cover"] \the [src]'s wires.")) diff --git a/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot.dm b/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot.dm index d30faf4a2ee..81e9e16d058 100644 --- a/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot.dm +++ b/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot.dm @@ -221,94 +221,3 @@ /mob/living/simple_animal/hostile/hivebot/range/rapid projectiletype = /obj/projectile/bullet/pistol/hivebotspike/needle rapid = 1 - -/mob/living/simple_animal/hostile/hivebot/playable/ - name = "Hivebot destroyer" - desc = "A primitive-yet-sturdy hovering robot, with some menacing looking blades jutting out from it. This one seems unusually aware of its surroundings." - icon_state = "hivebotdestroyer" - health = 350 - maxHealth = 350 - melee_damage_lower = 20 - melee_damage_upper = 30 - armor_penetration = 20 - attacktext = "eviscerated" - projectiletype = null - var/playable = TRUE - speed = -2 - -/mob/living/simple_animal/hostile/hivebot/playable/Initialize(mapload) - . = ..() - add_language(LANGUAGE_HIVEBOT) - var/number = rand(1000,9999) - name = initial(name) + " ([number])" - real_name = name - if(playable && !ckey && !client) - SSghostroles.add_spawn_atom("hivebotdestroyer", src) - -/mob/living/simple_animal/hostile/hivebot/playable/Destroy() - . = ..() - SSghostroles.remove_spawn_atom("hivebotdestroyer", src) - -/mob/living/simple_animal/hostile/hivebot/playable/ranged - name = "Hivebot marksman" - desc = "A primitive-yet-sturdy hovering robot, with some menacing looking blades jutting out from it. This one seems to be carefully surveying all activity." - icon_state = "hivebotmarksman" - health = 250 - maxHealth = 250 - melee_damage_lower = 10 - melee_damage_upper = 20 - armor_penetration = 20 - attacktext = "stabbed" - ranged = 1 - projectiletype = /obj/projectile/bullet/pistol/medium - speed = -3 - -/mob/living/simple_animal/hostile/hivebot/playable/ranged/Initialize(mapload) - . = ..() - add_language(LANGUAGE_HIVEBOT) - var/number = rand(1000,9999) - name = initial(name) + " ([number])" - real_name = name - if(playable && !ckey && !client) - SSghostroles.add_spawn_atom("hivebotmarksman", src) - -/mob/living/simple_animal/hostile/hivebot/playable/ranged/Destroy() - . = ..() - SSghostroles.remove_spawn_atom("hivebotmarksman", src) - -/mob/living/simple_animal/hostile/hivebot/playable/overseer - name = "Hivebot overseer" - desc = "A primitive-yet-sturdy hovering robot, with some menacing looking blades jutting out from it. This one seems to be buzzing with unseen activity from within." - icon_state = "hivebotoverseer" - health = 300 - maxHealth = 300 - melee_damage_lower = 10 - melee_damage_upper = 10 - armor_penetration = 10 - attacktext = "slashed" - ranged = -1 - projectiletype = /obj/projectile/bullet/pistol/ - -/mob/living/simple_animal/hostile/hivebot/playable/overseer/Initialize(mapload) - . = ..() - add_language(LANGUAGE_HIVEBOT) - var/number = rand(1000,9999) - name = initial(name) + " ([number])" - real_name = name - if(playable && !ckey && !client) - SSghostroles.add_spawn_atom("hivebotoverseer", src) - -/mob/living/simple_animal/hostile/hivebot/playable/overseer/Destroy() - . = ..() - SSghostroles.remove_spawn_atom("hivebotoverseer", src) - -/mob/living/simple_animal/hostile/hivebot/playable/overseer/verb/build_bot() - set name = "Assemble hivebot" - set desc = "Assemble a hivebot." - set category = "Hivebot" - - src.visible_message("\The [src] begins to construct a hivebot.", "You begin to construct a hivebot.", "You hear the sounds of fabrication...") - if(!do_after(src, 12 SECONDS)) - return - src.visible_message("\The [src] constructs a hivebot!", "You construct a hivebot!") - new /mob/living/simple_animal/hostile/hivebot(get_turf(src)) diff --git a/code/modules/overmap/ships/identification.dm b/code/modules/overmap/ships/identification.dm index 4e9cb98cec0..2966d55c228 100644 --- a/code/modules/overmap/ships/identification.dm +++ b/code/modules/overmap/ships/identification.dm @@ -35,9 +35,14 @@ return TRUE if(default_part_replacement(user, attacking_item)) return TRUE + if(panel_open) - wires.interact(user) - return TRUE + if(attacking_item.ismultitool() || attacking_item.iswirecutter()) + if(panel_open) + wires.interact(user) + else + to_chat(user, SPAN_WARNING("\The [src]'s wires aren't exposed.")) + return TRUE ..() /obj/machinery/iff_beacon/proc/toggle() diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 42e3dc9fd0e..0721d286534 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -461,16 +461,12 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) return attack_hand(user) if(!istype(attacking_item, /obj/item/forensics)) add_fingerprint(user) - - // CHARGEABLE DEVICE: Attempt to charge it from the APC. if(istype(attacking_item, /obj/item/modular_computer)) var/obj/item/modular_computer/C = attacking_item if(istype(C.tesla_link, /obj/item/computer_hardware/tesla_link/charging_cable)) var/obj/item/computer_hardware/tesla_link/charging_cable/CC = C.tesla_link CC.toggle(src, user) return - - // CROWBAR: Try to remove circuit board OR open unlocked cover. if (attacking_item.iscrowbar() && opened) if (has_electronics == HAS_ELECTRONICS_CONNECT) if (terminal) @@ -503,9 +499,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) opened = COVER_OPENED panel_open = TRUE update_icon() - - // BORG GRIPPER: Pull the power cell.. - else if (istype(attacking_item, /obj/item/gripper)) + else if (istype(attacking_item, /obj/item/gripper))//Code for allowing cyborgs to use rechargers var/obj/item/gripper/Gri = attacking_item if(opened != COVER_CLOSED && cell) if (Gri.grip_item(cell, user)) @@ -518,9 +512,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) charging = CHARGING_OFF update_icon() return - - // POWER CELL: Attempt to install a power cell. - else if (istype(attacking_item, /obj/item/cell) && opened != COVER_CLOSED) + else if (istype(attacking_item, /obj/item/cell) && opened != COVER_CLOSED) // trying to put a cell inside if(cell) to_chat(user, "There is a power cell already installed.") return @@ -538,9 +530,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) SPAN_NOTICE("You insert \the [cell].")) chargecount = 0 update_icon() - - // SCREWDRIVER: Expose wiring panel. - else if (attacking_item.isscrewdriver()) + else if (attacking_item.isscrewdriver()) // haxing if(opened != COVER_CLOSED) if (cell) to_chat(user, SPAN_WARNING("Close the APC first.")) //Less hints more mystery! @@ -565,8 +555,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) to_chat(user, "The wires have been [wiresexposed ? "exposed" : "unexposed"]") update_icon() - // ID CARD: Attempt to unlock the interface if you have sufficient access. - else if (attacking_item.GetID()) + else if (attacking_item.GetID()) // trying to unlock the interface with an ID card if(emagged) to_chat(user, "The interface is broken.") else if(opened != COVER_CLOSED) @@ -584,8 +573,6 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) update_icon() else to_chat(user, SPAN_WARNING("Access denied.")) - - // CABLE COIL: Install the power terminal (wire stuff on the floor in front of the APC). else if (attacking_item.iscoil() && !terminal && opened != COVER_CLOSED && has_electronics != HAS_ELECTRONICS_SECURED) var/turf/T = loc if(istype(T) && !T.is_plating()) @@ -598,7 +585,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) user.visible_message(SPAN_WARNING("[user.name] adds cables to the APC frame."), \ "You start adding cables to the APC frame...") if(attacking_item.use_tool(src, user, 20, volume = 50)) - if (C.amount >= 10 && !terminal && opened != COVER_CLOSED && has_electronics != HAS_ELECTRONICS_SECURED) // Need at least 10 in stack to build the terminal. + if (C.amount >= 10 && !terminal && opened != COVER_CLOSED && has_electronics != HAS_ELECTRONICS_SECURED) var/obj/structure/cable/N = T.get_cable_node() if (prob(50) && electrocute_mob(usr, N, N)) spark(src, 5, GLOB.alldirs) @@ -610,8 +597,6 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) "You add cables to the APC frame.") make_terminal() terminal.connect_to_network() - - // WIRECUTTER: Dismantle the power terminal (wire stuff on the floor in front of APC). else if (attacking_item.iswirecutter() && terminal && opened != COVER_CLOSED && has_electronics != HAS_ELECTRONICS_SECURED) var/turf/T = loc if(istype(T) && !T.is_plating()) @@ -628,104 +613,73 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) new /obj/item/stack/cable_coil(loc,10) to_chat(user, SPAN_NOTICE("You cut the cables and dismantle the power terminal.")) qdel(terminal) - - // POWER CONTROL CIRCUIT BOARD: If APC is broken, tell the player so. - // If APC is not broken, attempt to install the board inside. - else if (istype(attacking_item, /obj/item/module/power_control) && opened != COVER_CLOSED && has_electronics == HAS_ELECTRONICS_NONE) - if (stat & BROKEN) - to_chat(user, SPAN_WARNING("You cannot put the board inside, the frame is damaged.")) - return - else - user.visible_message(SPAN_WARNING("[user.name] inserts the power control board into [src]."), \ - "You start to insert the power control board into the frame...") - playsound(loc, 'sound/items/Deconstruct.ogg', 50, 1) - if(attacking_item.use_tool(src, user, 10, volume = 50)) - if(has_electronics == HAS_ELECTRONICS_NONE) - has_electronics = HAS_ELECTRONICS_CONNECT - to_chat(user, SPAN_NOTICE("You place the power control board inside the frame.")) - qdel(attacking_item) - - // WELDER: If the APC is broken, remove the cover. - // If the cover is open and APC has been stripped down, dismantle it back into steel. - else if (attacking_item.iswelder()) + else if (istype(attacking_item, /obj/item/module/power_control) && opened != COVER_CLOSED && has_electronics == HAS_ELECTRONICS_NONE && !((stat & BROKEN))) + user.visible_message(SPAN_WARNING("[user.name] inserts the power control board into [src]."), \ + "You start to insert the power control board into the frame...") + playsound(loc, 'sound/items/Deconstruct.ogg', 50, 1) + if(attacking_item.use_tool(src, user, 10, volume = 50)) + if(has_electronics == HAS_ELECTRONICS_NONE) + has_electronics = HAS_ELECTRONICS_CONNECT + to_chat(user, SPAN_NOTICE("You place the power control board inside the frame.")) + qdel(attacking_item) + else if (istype(attacking_item, /obj/item/module/power_control) && opened != COVER_CLOSED && has_electronics == HAS_ELECTRONICS_NONE && ((stat & BROKEN))) + to_chat(user, SPAN_WARNING("You cannot put the board inside, the frame is damaged.")) + return + else if (attacking_item.iswelder() && opened != COVER_CLOSED && has_electronics == HAS_ELECTRONICS_NONE && !terminal) var/obj/item/weldingtool/WT = attacking_item - if (opened != COVER_REMOVED && (stat & BROKEN)) - if (!WT.isOn()) return - if (WT.get_fuel() <1) - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) + if (!WT.isOn()) return + if (WT.get_fuel() < 3) + to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) + return + user.visible_message(SPAN_WARNING("[user.name] welds [src]."), \ + "You start welding the APC frame...", \ + "You hear welding.") + playsound(loc, 'sound/items/Welder.ogg', 50, 1) + if(attacking_item.use_tool(src, user, 50, volume = 50)) + if(!src || !WT.use(3, user)) return - playsound(loc, 'sound/items/Welder.ogg', 50, 1) - if(attacking_item.use_tool(src, user, 10, volume = 50)) - if(!src || !WT.use(1, user)) - return - else - new /obj/item/stack/material/steel(loc) - user.visible_message(\ - SPAN_WARNING("[user.name] cuts the cover off of the broken APC."),\ - SPAN_NOTICE("You cut the cover off the broken APC "),\ - "You hear welding.") - opened = COVER_REMOVED - update_icon() - else if (opened != COVER_CLOSED && has_electronics == HAS_ELECTRONICS_NONE && !terminal) - if (!WT.isOn()) return - if (WT.get_fuel() < 3) - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return - user.visible_message(SPAN_WARNING("[user.name] welds [src]."), \ - "You start welding the APC frame...", \ - "You hear welding.") - playsound(loc, 'sound/items/Welder.ogg', 50, 1) - if(attacking_item.use_tool(src, user, 50, volume = 50)) - if(!src || !WT.use(3, user)) - return - if (emagged || (stat & BROKEN) || opened == COVER_REMOVED) - new /obj/item/stack/material/steel(loc) - user.visible_message(\ - SPAN_WARNING("[src] has been cut apart by [user.name] with the welding tool."),\ - SPAN_NOTICE("You disassembled the broken APC frame."),\ - "You hear welding.") - else - new /obj/item/frame/apc(loc) - user.visible_message(\ - SPAN_WARNING("[src] has been cut from the wall by [user.name] with the welding tool."),\ - SPAN_NOTICE("You cut the APC frame from the wall."),\ - "You hear welding.") - qdel(src) - return - - // APC FRAME: If cover is open or has been removed, install a new cover. - // If broken, replace the entire frame. - else if (istype(attacking_item, /obj/item/frame/apc)) - if (opened != COVER_CLOSED && emagged) - emagged = FALSE + if (emagged || (stat & BROKEN) || opened == COVER_REMOVED) + new /obj/item/stack/material/steel(loc) + user.visible_message(\ + SPAN_WARNING("[src] has been cut apart by [user.name] with the weldingtool."),\ + SPAN_NOTICE("You disassembled the broken APC frame."),\ + "You hear welding.") + else + new /obj/item/frame/apc(loc) + user.visible_message(\ + SPAN_WARNING("[src] has been cut from the wall by [user.name] with the weldingtool."),\ + SPAN_NOTICE("You cut the APC frame from the wall."),\ + "You hear welding.") + qdel(src) + return + else if (istype(attacking_item, /obj/item/frame/apc) && opened != COVER_CLOSED && emagged) + emagged = FALSE + if (opened == COVER_REMOVED) + opened = COVER_OPENED + user.visible_message(\ + SPAN_WARNING("[user.name] has replaced the damaged APC frontal panel with a new one."),\ + SPAN_NOTICE("You replace the damaged APC frontal panel with a new one.")) + qdel(attacking_item) + update_icon() + else if (istype(attacking_item, /obj/item/frame/apc) && opened != COVER_CLOSED && ((stat & BROKEN) || hacker)) + if (has_electronics == HAS_ELECTRONICS_CONNECT) + to_chat(user, SPAN_WARNING("You cannot repair this APC until you remove the electronics still inside.")) + return + user.visible_message(SPAN_WARNING("[user.name] replaces the damaged APC frame with a new one."),\ + "You begin to replace the damaged APC frame...") + if(attacking_item.use_tool(src, user, 50, volume = 50)) + user.visible_message(\ + SPAN_NOTICE("[user.name] has replaced the damaged APC frame with new one."),\ + "You replace the damaged APC frame with new one.") + qdel(attacking_item) + stat &= ~BROKEN + // Malf AI, removes the APC from AI's hacked APCs list. + if(hacker?.hacked_apcs && (src in hacker.hacked_apcs)) + hacker.hacked_apcs -= src + hacker = null if (opened == COVER_REMOVED) opened = COVER_OPENED - user.visible_message(\ - SPAN_WARNING("[user.name] has replaced the cover panel APC cover panel with a new one."),\ - SPAN_NOTICE("You replace the damaged APC cover panel with a new one.")) - qdel(attacking_item) update_icon() - else if (opened != COVER_CLOSED && ((stat & BROKEN) || hacker)) - if (has_electronics == HAS_ELECTRONICS_CONNECT) - to_chat(user, SPAN_WARNING("You cannot repair this APC until you remove the electronics still inside.")) - return - user.visible_message(SPAN_WARNING("[user.name] replaces the damaged APC frame with a new one."),\ - "You begin to replace the damaged APC frame...") - if(attacking_item.use_tool(src, user, 50, volume = 50)) - user.visible_message(\ - SPAN_NOTICE("[user.name] has replaced the damaged APC frame with new one."),\ - "You replace the damaged APC frame with new one.") - qdel(attacking_item) - stat &= ~BROKEN - // Malf AI, removes the APC from AI's hacked APCs list. - if(hacker?.hacked_apcs && (src in hacker.hacked_apcs)) - hacker.hacked_apcs -= src - hacker = null - if (opened == COVER_REMOVED) - opened = COVER_OPENED - update_icon() - - // DEBUGGER: Repair emagged/infected/fucked up APCs. else if (istype(attacking_item, /obj/item/device/debugger)) if(emagged || hacker || infected) to_chat(user, SPAN_WARNING("There is a software error with the device. Attempting to fix...")) @@ -751,13 +705,33 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) else to_chat(user, SPAN_NOTICE("There has been a connection issue.")) return + else to_chat(user, SPAN_NOTICE("The device's software appears to be fine.")) return - - // ANYTHING ELSE: Beat the crap out of it. else - if (((stat & BROKEN) || hacker) \ + if ((stat & BROKEN) \ + && opened == COVER_CLOSED \ + && attacking_item.iswelder() ) + var/obj/item/weldingtool/WT = attacking_item + if (!WT.isOn()) return + if (WT.get_fuel() <1) + to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) + return + playsound(loc, 'sound/items/Welder.ogg', 50, 1) + if(attacking_item.use_tool(src, user, 10, volume = 50)) + if(!src || !WT.use(1, user)) + return + if ((stat & BROKEN)) + new /obj/item/stack/material/steel(loc) + user.visible_message(\ + SPAN_WARNING("[user.name] cuts the cover off of the broken APC."),\ + SPAN_NOTICE("You cut the cover off the broken APC "),\ + "You hear welding.") + opened = COVER_REMOVED + update_icon() + + else if (((stat & BROKEN) || hacker) \ && opened == COVER_CLOSED \ && attacking_item.force >= 5 \ && attacking_item.w_class >= WEIGHT_CLASS_NORMAL \ @@ -765,7 +739,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) opened = COVER_REMOVED user.visible_message(SPAN_DANGER("The APC cover was knocked down with the [attacking_item.name] by [user.name]!"), \ SPAN_DANGER("You knock down the APC cover with your [attacking_item.name]!"), \ - "You hear a loud metallic bang.") + "You hear bang") update_icon() else if (issilicon(user)) @@ -776,7 +750,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) return attack_hand(user) user.visible_message(SPAN_DANGER("The [name] has been hit with the [attacking_item.name] by [user.name]!"), \ SPAN_DANGER("You hit the [name] with your [attacking_item.name]!"), \ - "You hear a loud metallic bang") + "You hear bang") /obj/machinery/power/apc/emag_act(var/remaining_charges, var/mob/user) if(emagged && !infected) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 6809333f45a..a46a77c228d 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -285,7 +285,7 @@ else if(needspin) to_chat(user, SPAN_WARNING("\The [src]'s trigger is locked. This weapon doesn't have a firing pin installed!")) - balloon_alert(user, "trigger locked, firing pin needed!") + balloon_alert(user, "Trigger locked, firing pin needed!") return FALSE else return TRUE @@ -705,7 +705,7 @@ safety_state = !safety_state update_icon() if(user) - balloon_alert(user, "safety [safety_state ? "on" : "off"].") + balloon_alert(user, "Safety [safety_state ? "on" : "off"].") if(!safety_state) playsound(src, safetyon_sound, 30, 1) else @@ -933,15 +933,15 @@ /obj/item/gun/attackby(obj/item/attacking_item, mob/user) if(istype(attacking_item, /obj/item/material/knife/bayonet)) if(!can_bayonet) - balloon_alert(user, "doesn't fit!") + balloon_alert(user, "\the [attacking_item.name] doesn't fit") return ..() if(bayonet) - balloon_alert(user, "already has a bayonet!") + balloon_alert(user, "\the [src] already has a bayonet") return TRUE if(user.l_hand != attacking_item && user.r_hand != attacking_item) - balloon_alert(user, "not in hand!") + balloon_alert(user, "not in hand") return user.drop_from_inventory(attacking_item,src) @@ -956,19 +956,19 @@ if(istype(attacking_item, /obj/item/ammo_display)) if(!can_ammo_display) - balloon_alert(user, "doesn't fit!") + balloon_alert(user, "\the [attacking_item.name] doesn't fit") return TRUE if(ammo_display) - balloon_alert(user, "already has an ammo display!") + balloon_alert(user, "\the [src] already has an ammo display") return TRUE if(user.l_hand != attacking_item && user.r_hand != attacking_item) - balloon_alert(user, "not in hand!") + balloon_alert(user, "not in hand") return if(displays_maptext) - balloon_alert(user, "already displaying its ammo count!") + balloon_alert(user, "\the [src] is already displaying its ammo count") return TRUE user.drop_from_inventory(attacking_item, src) diff --git a/code/modules/projectiles/guns/projectile.dm b/code/modules/projectiles/guns/projectile.dm index 10e2b62b80e..b8ab4791d77 100644 --- a/code/modules/projectiles/guns/projectile.dm +++ b/code/modules/projectiles/guns/projectile.dm @@ -235,15 +235,15 @@ if(istype(attacking_item, /obj/item/suppressor)) var/obj/item/suppressor/S = attacking_item if(!can_suppress) - balloon_alert(user, "doesn't fit!") + balloon_alert(user, "\the [S.name] doesn't fit") return if(suppressed) - balloon_alert(user, "already has a suppressor!") + balloon_alert(user, "already has a suppressor") return if(user.l_hand != S && user.r_hand != S) - balloon_alert(user, "not in hand!") + balloon_alert(user, "not in hand") return user.drop_from_inventory(suppressor, src) diff --git a/code/modules/projectiles/projectile/bullets.dm b/code/modules/projectiles/projectile/bullets.dm index 6d2e736e69c..dd00bde090a 100644 --- a/code/modules/projectiles/projectile/bullets.dm +++ b/code/modules/projectiles/projectile/bullets.dm @@ -100,7 +100,6 @@ // if (hits >= total_pellets || pellets <= 0) // return TRUE if(hits) - damage *= hits return BULLET_ACT_HIT //Technically not everything, but good enough return BULLET_ACT_BLOCK //Nothing hit diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_coalition.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_coalition.dm index 94dd9fd9c24..3c090e64f3c 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_coalition.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_coalition.dm @@ -32,8 +32,9 @@ /singleton/reagent/drink/tea/hakhma_tea/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed, var/datum/reagents/holder) //milk effects ..() - M.heal_organ_damage(0.1 * removed, 0) - holder.remove_reagent(/singleton/reagent/capsaicin, 10 * removed) + if(alien != IS_DIONA) + M.heal_organ_damage(0.1 * removed, 0) + holder.remove_reagent(/singleton/reagent/capsaicin, 10 * removed) /singleton/reagent/drink/bochbrew name = "Boch Brew" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_skrell.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_skrell.dm index 0cdf2891484..a54e7935aac 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_skrell.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_skrell.dm @@ -126,7 +126,7 @@ condiment_name = "dyn juice" condiment_desc = "Juice from a Skrell medicinal herb. It's supposed to be diluted." condiment_icon = 'icons/obj/item/reagent_containers/food/drinks/carton.dmi' - condiment_icon_state = "dyncarton" + condiment_icon_state = "dynjuice" /singleton/reagent/drink/dynjuice/hot name = "Dyn Tea" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_tajara.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_tajara.dm index f861647be3a..42d996e7d3a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_tajara.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_tajara.dm @@ -217,19 +217,19 @@ glass_name = "glass of shyyr kirr'tyr wine" glass_desc = "Tajaran spirit infused with some eel-like Adhomian creature." -/singleton/reagent/alcohol/sugartree_liquor - name = "Sugar Tree Liquor" +/singleton/reagent/alcohol/nmshaan_liquor + name = "Nm'shaan Liquor" color = "#FE6B03" - description = "A strong Adhomian nm'shaan liquor reserved for special occasions." + description = "A strong Adhomian liquor reserved for special occasions." taste_description = "sweet and silky alcohol" strength = 70 - glass_icon_state = "sugartreeliquor_glass" - glass_name = "glass of sugar tree liquor" - glass_desc = "A strong nm'shaan Adhomian liquor reserved for special occasions." + glass_icon_state = "nmshaanliquor_glass" + glass_name = "glass of nm'shaan liquor" + glass_desc = "A strong Adhomian liquor reserved for special occasions." -/singleton/reagent/alcohol/sugartree_liquor/darmadhirbrew +/singleton/reagent/alcohol/nmshaan_liquor/darmadhirbrew name = "Darmadhir Brew" color = "#E4A769" description = "A rare and expensive brand of nm'shaan liquor." diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_unathi.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_unathi.dm index 7e179a5e85a..3b649cb3da4 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_unathi.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/food_drink_species_unathi.dm @@ -258,6 +258,14 @@ var/last_taste_time = -100 +/singleton/reagent/alcohol/butanol/trizkizki_tea/affect_blood(var/mob/living/carbon/M, var/alien, var/removed, var/datum/reagents/holder) + if(alien == IS_DIONA) + if(last_taste_time + 800 < world.time) // Not to spam message + to_chat(M, SPAN_DANGER("Your body withers as you feel slight pain throughout.")) + last_taste_time = world.time + metabolism = REM * 0.33 + M.adjustToxLoss(1.5 * removed) + /singleton/reagent/alcohol/butanol/pulque name = "Xuizi pulque" description = "A variation of Mictlanian pulque that is safe to consume for Unathi." diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_drinks.dm index 6541dd3aed7..c8e72a221da 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_drinks.dm @@ -637,6 +637,14 @@ var/last_taste_time = -100 +/singleton/reagent/drink/tea/affect_blood(var/mob/living/carbon/M, var/alien, var/removed, var/datum/reagents/holder) + if(alien == IS_DIONA) + if(last_taste_time + 800 < world.time) // Not to spam message + to_chat(M, SPAN_DANGER("Your body withers as you feel slight pain throughout.")) + last_taste_time = world.time + metabolism = REM * 0.33 + M.adjustToxLoss(1.5 * removed) + /singleton/reagent/drink/tea/sencha name = "Sencha" description = "A type of green tea originating from Japan on Earth, sencha is unique in that it is steamed instead of pan-roasted like most teas. \ diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_ingredients.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_ingredients.dm index 77382349996..46fa1e826f1 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_ingredients.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drink/generic_ingredients.dm @@ -449,7 +449,6 @@ taste_mult = 0.4 condiment_name = "rice sack" condiment_icon_state = "rice" - condiment_desc = "A big bag of rice. Good for cooking!" condiment_center_of_mass = list("x"=16, "y"=8) /singleton/reagent/nutriment/moss diff --git a/code/modules/reagents/reagent_containers/food/condiment.dm b/code/modules/reagents/reagent_containers/food/condiment.dm index 3a374d32ebc..b547f39e6fe 100644 --- a/code/modules/reagents/reagent_containers/food/condiment.dm +++ b/code/modules/reagents/reagent_containers/food/condiment.dm @@ -277,14 +277,11 @@ name = "vanilla extract" reagents_to_add = list(/singleton/reagent/nutriment/vanilla = 50) -/obj/item/reagent_containers/food/condiment/rice - name = "rice sack" - desc = "A big bag of rice. Good for cooking!" +/obj/item/reagent_containers/food/condiment/rice //everyone's favorite condiment, rice. (there wasn't really a better place for this, code-wise) icon_state = "rice" - center_of_mass = list("x"=16, "y"=8) - volume = 220 fixed_state = TRUE - reagents_to_add = list(/singleton/reagent/nutriment/rice = 200) + name = "rice" + reagents_to_add = list(/singleton/reagent/nutriment/rice = 50) /obj/item/reagent_containers/food/condiment/cocoa //not exactly a condiment, but not exactly NOT a condiment, right? icon_state = "cocoapowder" diff --git a/code/modules/reagents/reagent_containers/food/drinks/bottle.dm b/code/modules/reagents/reagent_containers/food/drinks/bottle.dm index fc15b2c7ee0..5e480adb718 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/bottle.dm +++ b/code/modules/reagents/reagent_containers/food/drinks/bottle.dm @@ -379,7 +379,7 @@ return if(is_open_container()) - balloon_alert(user, "already open! you spill some on the floor!") + balloon_alert(user, "the bottle was already open, you spill some on the floor...") if(reagents.total_volume) src.reagents.remove_any(reagents.total_volume / 5) return @@ -839,14 +839,14 @@ Tajara consider the wine to be exotic or outright disgusting. The Shyyr Kirr'tyr is usually eaten after the beverage is imbibed." reagents_to_add = list(/singleton/reagent/alcohol/shyyrkirrtyr_wine = 100) -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor - name = "sugar tree liquor" - desc = "Also called nm'shaan liquor in native Siik'maas: a strong Adhomian liquor reserved for special occasions. A label on the bottle recommends diluting it with icy water before drinking." - icon_state = "sugartreeliquor" +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor + name = "nm'shaan liquor" + desc = "A strong Adhomian liquor reserved for special occasions. A label on the bottle recommends diluting it with icy water before drinking." + icon_state = "nmshaanliquor" center_of_mass = list("x" = 16,"y" = 5) desc_extended = "An alcoholic drink manufactured from the fruit of the Nm'shaan plant. It usually has a high level of alcohol by volume. Nm'shaan liquor was once reserved for the \ consumption of the nobility; even today it is considered a decadent drink reserved for fancy occasions." - reagents_to_add = list(/singleton/reagent/alcohol/sugartree_liquor = 100) + reagents_to_add = list(/singleton/reagent/alcohol/nmshaan_liquor = 100) /obj/item/reagent_containers/food/drinks/bottle/veterans_choice name = "veteran's choice" @@ -875,7 +875,7 @@ desc_extended = "A famous variation of the Nm'shaan Liquor; it is described as one of Adhomai's finest spirits. It is produced solely by a small family-owned brewery in Miran'mir. Its \ recipe is a secret passed down through the generations of the Darmadhir household since immemorial times. The only living member of the family, Hazyr Darmadhir, is a 68 years old \ Tajara. His sole heir and son died in the Second Revolution after being drafted to fight for the royal army. Alcohol collectors stipulate that the brew's price will skyrocket after Hazyr's death." - reagents_to_add = list(/singleton/reagent/alcohol/sugartree_liquor/darmadhirbrew = 100) + reagents_to_add = list(/singleton/reagent/alcohol/nmshaan_liquor/darmadhirbrew = 100) /obj/item/reagent_containers/food/drinks/bottle/pulque name = "Don Augusto's pulque" diff --git a/code/modules/reagents/reagent_containers/food/drinks/carton.dm b/code/modules/reagents/reagent_containers/food/drinks/carton.dm index 5750261206d..9dc8bbea874 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/carton.dm +++ b/code/modules/reagents/reagent_containers/food/drinks/carton.dm @@ -69,18 +69,6 @@ icon_state = "applejuice" reagents_to_add = list(/singleton/reagent/drink/applejuice = 100) -/obj/item/reagent_containers/food/drinks/carton/watermelonjuice - name = "watermelon juice" - desc = "Juice from a watermelon. Not to be confused with water." - icon_state = "watermelonjuice" - reagents_to_add = list(/singleton/reagent/drink/watermelonjuice = 100) - -/obj/item/reagent_containers/food/drinks/carton/bananajuice - name = "banana juice" - desc = "Juice from a banana. However that works." - icon_state = "bananajuice" - reagents_to_add = list(/singleton/reagent/drink/banana = 100) - /obj/item/reagent_containers/food/drinks/carton/fatshouters name = "fatshouters milk carton" desc = "Fatty fatshouters milk in a carton." diff --git a/code/modules/reagents/reagent_containers/food/lunch.dm b/code/modules/reagents/reagent_containers/food/lunch.dm index 566e1d5f9b9..e2f6b3bd241 100644 --- a/code/modules/reagents/reagent_containers/food/lunch.dm +++ b/code/modules/reagents/reagent_containers/food/lunch.dm @@ -173,7 +173,7 @@ GLOBAL_LIST_INIT(lunchables_alcohol_reagents_, list( /singleton/reagent/alcohol/pwine, /singleton/reagent/alcohol/threemileisland, /singleton/reagent/alcohol/toxins_special, - /singleton/reagent/alcohol/sugartree_liquor/darmadhirbrew + /singleton/reagent/alcohol/nmshaan_liquor/darmadhirbrew )) /proc/lunchables_lunches() diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 0209ccb8f68..89442836999 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -22,7 +22,6 @@ anchored = 1 density = 1 var/datum/wires/disposal/wires - var/wires_exposed = FALSE var/datum/gas_mixture/air_contents // internal reservoir var/mode = MODE_CHARGING var/can_flush = TRUE @@ -133,11 +132,11 @@ switch(mode) if(MODE_OFF) mode = MODE_UNSCREWED - to_chat(user, SPAN_NOTICE("You remove the panel covering the wiring and power connection.")) + to_chat(user, SPAN_NOTICE("You remove the screws around the power connection.")) return TRUE if(MODE_UNSCREWED) mode = MODE_OFF - to_chat(user, SPAN_NOTICE("You reattach the panel covering the wiring and power connection.")) + to_chat(user, SPAN_NOTICE("You attach the screws around the power connection.")) return TRUE else if(attacking_item.iswelder() && mode == MODE_UNSCREWED) if(contents_count()) @@ -168,6 +167,9 @@ else to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) return TRUE + else if(attacking_item.ismultitool() || attacking_item.iswirecutter() || issignaler(attacking_item)) + wires.interact(user) + return TRUE if(istype(attacking_item, /obj/item/melee/energy/blade)) to_chat(user, SPAN_WARNING("You can't place that item inside the disposal unit.")) @@ -346,10 +348,6 @@ to_chat(usr, SPAN_WARNING("You cannot reach the controls from inside.")) return - else if(MODE_UNSCREWED) - wires.interact(user) - return TRUE - // Clumsy folks can only flush it. if(user.IsAdvancedToolUser(1)) interact(user, 0) diff --git a/code/unit_tests/mob_tests.dm b/code/unit_tests/mob_tests.dm index 42a1ee7b45d..f0db8ff4095 100644 --- a/code/unit_tests/mob_tests.dm +++ b/code/unit_tests/mob_tests.dm @@ -420,7 +420,6 @@ /datum/unit_test/mob_damage/diona/brute name = "MOB: Diona Brute Damage Check" damagetype = DAMAGE_BRUTE - expected_vulnerability = ARMORED /datum/unit_test/mob_damage/diona/fire name = "MOB: Diona Fire Damage Check" diff --git a/html/changelogs/html/changelogs/evandorf-scaleshields.yml b/html/changelogs/Batrachophreno-ShortSidecuts.yml similarity index 95% rename from html/changelogs/html/changelogs/evandorf-scaleshields.yml rename to html/changelogs/Batrachophreno-ShortSidecuts.yml index e525b35b93e..2b1ab218a91 100644 --- a/html/changelogs/html/changelogs/evandorf-scaleshields.yml +++ b/html/changelogs/Batrachophreno-ShortSidecuts.yml @@ -44,7 +44,7 @@ ################################# # Your name. -author: Evandorf +author: Batrachophreno # Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. delete-after: True @@ -55,4 +55,4 @@ delete-after: True # Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. # Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. changes: - - rscadd: "Added unique scaleshield coverings for Dominian Unathi." + - bugfix: "Fixed two missing pixels from new haircut." diff --git a/html/changelogs/archive/2025-05.yml b/html/changelogs/archive/2025-05.yml index 4622b747f65..94fd1c7bdbd 100644 --- a/html/changelogs/archive/2025-05.yml +++ b/html/changelogs/archive/2025-05.yml @@ -161,16 +161,3 @@ - balance: Adds cream to the kitchen's fridge to supplement its removal from soda machines. - rscadd: Adds deodorant and a new sprite for mouthwash. -2025-05-28: - ASmallCuteCat: - - bugfix: The kitchen's first aid closet should no longer have non-first aid items - in it. Soy sauce bottles were moved to the fridge, potted plant has been removed. - Batrachophreno: - - bugfix: Stickers now correctly display a warning message when trying to attach - them to Status Displays. - GeneralCamo: - - bugfix: Firesuits (including Atmos Firesuits) no longer lack on-mob icons for - tajara and unathi. - - rscadd: Atmospheric technician fire helmets now include an emissive layer. - - code_imp: Refactored the firesuit emissive code to be more generic (to potentially - allow custom variants later). diff --git a/html/changelogs/archive/2025-06.yml b/html/changelogs/archive/2025-06.yml deleted file mode 100644 index ecd75a5fc08..00000000000 --- a/html/changelogs/archive/2025-06.yml +++ /dev/null @@ -1,98 +0,0 @@ -2025-06-02: - Batrachophreno: - - bugfix: Air alarms will no longer always show their wire interface- panel must - be opened first - - qol: Machines (if their wiring panels are open) no longer require certain tools - in-hand to access the wires interface. - - bugfix: Broken APCs (tentatively) able to be more reliably dismantled. - - refactor: Minor internal APC refactor and code documentation. - - qol: Updated instances of 'nifberries' to 'dirtberries' in recipes/ingredients/products - for general consistency. - - qol: Updated instances of 'nm'shaan' to 'sugar tree' in recipes/ingredients/products - for general consistency. - FlamingLily: - - rscadd: Added a latejoin/off-duty spawn point for the medbay's recovery ward, - available only to off-duty crew and passengers. - - rscadd: Vastly expanded the medbay recovery ward, adding more opportunities for - extended RP focusing in the room. - Wowzewow (Wezzy): - - rscadd: Adds a new food cart to the kitchen. - - bugfix: Fixes grill and oven to play their loop sounds only when turned on. - - bugfix: Fixes update_icon() of grill and oven so they actually look turned on - when turned on. - - rscdel: Removes rice, berries and fruits from the produce box rotation. - - rscadd: Adds bags of rice to the kitchen. - hazelmouse: - - rscdel: Tea no longer poisons Dionae. - notagonk: - - rscadd: Dominian Corvette has been remapped. -2025-06-03: - SimpleMaroon: - - rscadd: 'Added three Commonwealth of Hieroaetheria passports to the Xenowear - - Diona loadout: Consortium, Union of Gla''orr, and Eternal Republic.' - - spellcheck: Fixed an incorrect indefinite article in the Golden Deep passport. -2025-06-07: - hazelmouse: - - rscadd: Added a few new items to the biogenerator, including synthetic blood, - wooden planks, a mop, an empty first-aid kit, cigarette filters, and cigarette - papers. - - rscadd: Hydroponics trays now produce sounds when watered, sampled, and weeded. - Sampling and weeding both now have a one second timer for completion. - - rscadd: Hatchets can now uproot plants growing in soil or in hydroponics trays - with a single click. - - bugfix: Dyn cartons are no longer invisible after being produced from a Condimaster. - - bugfix: Horticultural magazines no longer have broken sprites. - - imageadd: Introduced in-hand sprites for horticultural magazines. - - code_imp: Transitioned some documentation in hydroponics tray code to DMDocs. -2025-06-09: - Batrachophreno: - - balance: Added additional minimum active population requirement of 8 for Greimorian - Infestation events. - - qol: Events paused when no population is active. -2025-06-12: - Batrachophreno: - - rscadd: Added short variants of Punk Shave, Sidecut Left/Right haircuts. - - bugfix: Adding missing XGM gas definition for Nitrogen Dioxide so it resolves - and behaves correctly in atmospheric scanner results. - Ben10083: - - balance: Adds missing Intrepid Hangar lockdown shutter. - FlamingLily: - - rscadd: Partially reverts the scarcity changes to the bar. Rare drinks are now - once again in the vendor or the yokes, but there's less of them overall (encouraging - use of resupply means). - Flpfs: - - rscadd: The white cane has been resprited, being able to be extended and retracted. - GeneralCamo: - - rscadd: Balloon alerts now change their duration on-screen depending on the length - of them. - - qol: Balloon alerts use a seperate plane that ignores lighting. - - qol: Balloon alerts now use the standard established by tgstation, reducing their - length and improving their readability. - - rscadd: Split body scanner and cryopod sprites; body scanners have new sprites. - New sprites by Remission on Baystation12, recolor and touchups by CormallenField/Steviii. - - rscadd: Working sleepers now use their working sprite states. - - bugfix: Sleepers now correctly show their panel sprites. - - rscdel: Arm guards (with the exception of riot variants and a few older variants) - no longer protect the hands. - - rscdel: Leg guards no longer protect the feet. - - bugfix: Buckshot and other pellet-based projectiles now correctly multiply damage - dealt when multiple pellets hit a target. - Greenjoe: - - rscadd: Tajara can now select plural pronouns (they/them) - KingOfThePing, The lancer: - - rscadd: Adds a dominian lyodii tarot card deck to the loadout and cargo database. - Kintsugi: - - rscadd: Added a three new playable hivebot mobs (destroyer, marksman, and overseer), - which storytellers and admins can spawn. - hazelmouse: - - bugfix: Spores, eggs, and other hydroponics seeds that should not appear in seed - packets no longer have a seed packet underneath their overlays. - - bugfix: The Foggy Mendell Skyline and Jupiter Upper Atmosphere holodeck settings - now render their rolling fog correctly. - - rscadd: Geras Dionae now possess innate melee armour, intended to give them more - leeway fighting simplemobs and other melee-based threats. - steviii: - - qol: Shifts a few objects around in the bar, putting the heater in the backroom, - a sink in the front, adding a first aid cabinet back to the bar backroom, and - moving a few wall objects so they stop overlapping. - - bugfix: Makes the anomalist outfit a path not a string. diff --git a/html/changelogs/html/changelogs/evandorf-unathi-morozi-accent.yml b/html/changelogs/html/changelogs/evandorf-unathi-morozi-accent.yml deleted file mode 100644 index 6ee360193e8..00000000000 --- a/html/changelogs/html/changelogs/evandorf-unathi-morozi-accent.yml +++ /dev/null @@ -1,58 +0,0 @@ -################################ -# Example Changelog File -# -# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. -# -# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) -# When it is, any changes listed below will disappear. -# -# Valid Prefixes: -# bugfix -# - (fixes bugs) -# wip -# - (work in progress) -# qol -# - (quality of life) -# soundadd -# - (adds a sound) -# sounddel -# - (removes a sound) -# rscadd -# - (adds a feature) -# rscdel -# - (removes a feature) -# imageadd -# - (adds an image or sprite) -# imagedel -# - (removes an image or sprite) -# spellcheck -# - (fixes spelling or grammar) -# experiment -# - (experimental change) -# balance -# - (balance changes) -# code_imp -# - (misc internal code change) -# refactor -# - (refactors code) -# config -# - (makes a change to the config files) -# admin -# - (makes changes to administrator tools) -# server -# - (miscellaneous changes to server) -################################# - -# Your name. -author: Evandorf - -# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. -delete-after: True - -# Any changes you've made. See valid prefix list above. -# INDENT WITH TWO SPACES. NOT TABS. SPACES. -# SCREW THIS UP AND IT WON'T WORK. -# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. -# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. -changes: - - rscadd: "Adds the Unathi Morozi accent for lizards of the Empire." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 27980db7172..0d111cd7bee 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ diff --git a/icons/clothing/kit/firefighter.dmi b/icons/clothing/kit/firefighter.dmi index a2e06b949ce..006b13c5d22 100644 Binary files a/icons/clothing/kit/firefighter.dmi and b/icons/clothing/kit/firefighter.dmi differ diff --git a/icons/effects/effects.dmi b/icons/effects/effects.dmi index ffad22cb103..312111d2cb4 100644 Binary files a/icons/effects/effects.dmi and b/icons/effects/effects.dmi differ diff --git a/icons/mob/human_face/hair.dmi b/icons/mob/human_face/hair.dmi index bea972f4181..7f88ea5ba45 100644 Binary files a/icons/mob/human_face/hair.dmi and b/icons/mob/human_face/hair.dmi differ diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index adb07167c09..4c521b249f0 100644 Binary files a/icons/mob/items/lefthand.dmi and b/icons/mob/items/lefthand.dmi differ diff --git a/icons/mob/items/righthand.dmi b/icons/mob/items/righthand.dmi index 747a42e7b66..8cd6a240230 100644 Binary files a/icons/mob/items/righthand.dmi and b/icons/mob/items/righthand.dmi differ diff --git a/icons/mob/npc/hivebot.dmi b/icons/mob/npc/hivebot.dmi index 1e2c2f0ed82..d38d7fccc4f 100644 Binary files a/icons/mob/npc/hivebot.dmi and b/icons/mob/npc/hivebot.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index d13994fa85c..12879f924e1 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ diff --git a/icons/obj/fluff/3x3.dmi b/icons/obj/fluff/3x3.dmi deleted file mode 100644 index 5d49dd33d48..00000000000 Binary files a/icons/obj/fluff/3x3.dmi and /dev/null differ diff --git a/icons/obj/hydroponics_products.dmi b/icons/obj/hydroponics_products.dmi index 51996ea4248..322bbc6c489 100644 Binary files a/icons/obj/hydroponics_products.dmi and b/icons/obj/hydroponics_products.dmi differ diff --git a/icons/obj/item/clothing/accessory/passcards.dmi b/icons/obj/item/clothing/accessory/passcards.dmi index 1616514048e..99b9fab0367 100644 Binary files a/icons/obj/item/clothing/accessory/passcards.dmi and b/icons/obj/item/clothing/accessory/passcards.dmi differ diff --git a/icons/obj/item/playing_cards.dmi b/icons/obj/item/playing_cards.dmi index 6508c26d559..51bcd5a14ce 100644 Binary files a/icons/obj/item/playing_cards.dmi and b/icons/obj/item/playing_cards.dmi differ diff --git a/icons/obj/item/reagent_containers/food/drinks/bottle.dmi b/icons/obj/item/reagent_containers/food/drinks/bottle.dmi index 70e63bccd48..e42de20a2dc 100644 Binary files a/icons/obj/item/reagent_containers/food/drinks/bottle.dmi and b/icons/obj/item/reagent_containers/food/drinks/bottle.dmi differ diff --git a/icons/obj/item/reagent_containers/food/drinks/carton.dmi b/icons/obj/item/reagent_containers/food/drinks/carton.dmi index a4315a6b1f1..06474bb26ec 100644 Binary files a/icons/obj/item/reagent_containers/food/drinks/carton.dmi and b/icons/obj/item/reagent_containers/food/drinks/carton.dmi differ diff --git a/icons/obj/item/whitecane.dmi b/icons/obj/item/whitecane.dmi deleted file mode 100644 index 4781cd06688..00000000000 Binary files a/icons/obj/item/whitecane.dmi and /dev/null differ diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index 46db7314468..6aebf935f2c 100644 Binary files a/icons/obj/library.dmi and b/icons/obj/library.dmi differ diff --git a/icons/obj/machinery/bodyscanner.dmi b/icons/obj/machinery/bodyscanner.dmi deleted file mode 100644 index c46469ff491..00000000000 Binary files a/icons/obj/machinery/bodyscanner.dmi and /dev/null differ diff --git a/icons/obj/machinery/cooking_machines.dmi b/icons/obj/machinery/cooking_machines.dmi index 9154cded143..0e74e5ccc3c 100644 Binary files a/icons/obj/machinery/cooking_machines.dmi and b/icons/obj/machinery/cooking_machines.dmi differ diff --git a/icons/obj/machinery/cryopod.dmi b/icons/obj/machinery/cryopod.dmi deleted file mode 100644 index c708a685cd1..00000000000 Binary files a/icons/obj/machinery/cryopod.dmi and /dev/null differ diff --git a/icons/obj/machinery/sleeper.dmi b/icons/obj/machinery/sleeper.dmi index 3ff4d10c9c4..7291d385a4d 100644 Binary files a/icons/obj/machinery/sleeper.dmi and b/icons/obj/machinery/sleeper.dmi differ diff --git a/icons/obj/unathi_items.dmi b/icons/obj/unathi_items.dmi index 207fa546fbe..2c5b9c7b2dc 100644 Binary files a/icons/obj/unathi_items.dmi and b/icons/obj/unathi_items.dmi differ diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi index cbebf5947fe..c1aec07368e 100644 Binary files a/icons/obj/weapons.dmi and b/icons/obj/weapons.dmi differ diff --git a/maps/away/away_site/romanovich/grand_romanovich.dmm b/maps/away/away_site/romanovich/grand_romanovich.dmm index b0cf3c377d8..f53dae237b7 100644 --- a/maps/away/away_site/romanovich/grand_romanovich.dmm +++ b/maps/away/away_site/romanovich/grand_romanovich.dmm @@ -1348,9 +1348,9 @@ dir = 1; icon_state = "tube_empty" }, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, /turf/simulated/floor/lino, /area/grand_romanovich) "dE" = ( @@ -2947,7 +2947,7 @@ /obj/item/reagent_containers/food/snacks/chipplate/tajcandy{ pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor{ +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor{ pixel_x = 7; pixel_y = 15 }, @@ -6387,7 +6387,7 @@ /obj/item/reagent_containers/food/snacks/chipplate/tajcandy{ pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor{ +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor{ pixel_x = 7; pixel_y = 15 }, diff --git a/maps/away/away_site/tajara/taj_safehouse/tajara_safehouse.dmm b/maps/away/away_site/tajara/taj_safehouse/tajara_safehouse.dmm index e932570323f..b6cf8b19ad3 100644 --- a/maps/away/away_site/tajara/taj_safehouse/tajara_safehouse.dmm +++ b/maps/away/away_site/tajara/taj_safehouse/tajara_safehouse.dmm @@ -417,9 +417,9 @@ /area/tajara_safehouse) "lO" = ( /obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, /turf/simulated/floor/wood, /area/tajara_safehouse) "mt" = ( diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dm index 08f8b553607..8edfacbbce4 100644 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dm +++ b/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dm @@ -1,49 +1,137 @@ /datum/map_template/ruin/away_site/dominian_corvette name = "Dominian Corvette" - description = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Izweski Hegemony, and Republic of Elyra." + description = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Hegemony, and Republic of dominia." prefix = "ships/dominia/dominian_corvette/" suffix = "dominian_corvette.dmm" - traits = list( - // Deck one - list(ZTRAIT_AWAY = TRUE, ZTRAIT_UP = TRUE, ZTRAIT_DOWN = FALSE), - // Deck two - list(ZTRAIT_AWAY = TRUE, ZTRAIT_UP = FALSE, ZTRAIT_DOWN = TRUE), - ) - sectors = list(SECTOR_BADLANDS) spawn_weight = 1 ship_cost = 1 id = "dominian_corvette" - shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/dominian_shuttle, /datum/shuttle/autodock/multi/lift/dominia) + shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/dominian_shuttle) unit_test_groups = list(2) /singleton/submap_archetype/dominian_corvette map = "Dominian Corvette" - descriptor = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Izweski Hegemony, and Republic of Elyra." + descriptor = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Hegemony, and Republic of dominia." + +//areas +/area/ship/dominian_corvette + name = "Dominian Corvette" + requires_power = TRUE + +/area/ship/dominian_corvette/janitor + name = "Dominian Corvette Custodial Closet" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + +/area/ship/dominian_corvette/hangar + name = "Dominian Corvette Hangar" + ambience = AMBIENCE_HANGAR + +/area/ship/dominian_corvette/eva + name = "Dominian Corvette EVA Preparation" + +/area/ship/dominian_corvette/infirmary + name = "Dominian Corvette Infirmary" + icon_state = "medbay" + +/area/ship/dominian_corvette/quarters + name = "Dominian Corvette Crew Quarters" + icon_state = "Sleep" + +/area/ship/dominian_corvette/head + name = "Dominian Corvette Head" + icon_state = "washroom" + +/area/ship/dominian_corvette/recroom + name = "Dominian Corvette Recreation Room" + icon_state = "lounge" + +/area/ship/dominian_corvette/cic + name = "Dominian Corvette CIC" + +/area/ship/dominian_corvette/bridge + name = "Dominian Corvette Bridge" + +/area/ship/dominian_corvette/franny + name = "Dominian Corvette Francisca Compartment" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + ambience = AMBIENCE_HIGHSEC + +/area/ship/dominian_corvette/officer + name = "Dominian Corvette Officer Quarters" + sound_environment = SOUND_AREA_SMALL_SOFTFLOOR + +/area/ship/dominian_corvette/armory + name = "Dominian Corvette Armory" + icon_state = "security" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + ambience = AMBIENCE_HIGHSEC + +/area/ship/dominian_corvette/temple + name = "Dominian Corvette Temple" + icon_state = "chapel" + ambience = AMBIENCE_CHAPEL + +/area/ship/dominian_corvette/engineering + name = "Dominian Corvette Engineering" + ambience = AMBIENCE_ENGINEERING + +/area/ship/dominian_corvette/engineering/reactor + name = "Dominian Corvette Reactor Room" + ambience = AMBIENCE_SINGULARITY + +/area/ship/dominian_corvette/engineering/atmos + name = "Dominian Corvette Atmospherics" + icon_state = "atmos" + +/area/ship/dominian_corvette/propulsion + name = "Dominian Corvette Starboard Propulsion" + +/area/ship/dominian_corvette/propulsion/port + name = "Dominian Corvette Port Propulsion" + +/area/ship/dominian_corvette/docking + name = "Dominian Corvette Starboard Docking Arm" + +/area/ship/dominian_corvette/docking/port + name = "Dominian Corvette Port Docking Arm" + +/area/ship/dominian_corvette/cannon + name = "Dominian Corvette Cannon Compartment" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + ambience = AMBIENCE_HIGHSEC + +/area/ship/dominian_corvette/exterior + name = "Dominian Corvette Exterior" + +/area/shuttle/dominian_shuttle + name = "Dominian Shuttle" + icon_state = "shuttle2" + +//ship stuff /obj/effect/overmap/visitable/ship/dominian_corvette name = "Dominian Corvette" class = "HIMS" - desc = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Izweski Hegemony, and Republic of Elyra." + desc = "One of the most common ships in the Imperial Fleet, Lammergeier-class corvettes are often used as the vanguard of battlefleets entering a system marked for annexation into the glorious Empire as it is tasked to find and scout routes for the larger fleet. Though intended for scouting and screening work the Lammergeier is, like its larger counterparts, quite heavily armed and armored for a typical corvette. Any frontier savages who attempt to meet one with force of arms will soon find themselves staring down the barrels of Zhurong’s finest weaponry, and the Fleet-trained Ma’zals entrusted to operate it. The heavy armament and sensors of the Lammergeier-class come at a cost: it lacks a shield generator and is much larger than a typical Solarian corvette, thus requiring a larger crew. Lammergeier-class captains are generally loyal Ma’zals, such as the citizens of Novi Jadran, and are authorized to take whatever measures are necessary to ensure their crew remains loyal to both Empire and Goddess. This one’s transponder marks it as belonging to the Empire’s First Battlefleet – a battle-hardened formation responsible for patrolling the region of the northern Sparring Sea between the Empire, Hegemony, and Republic of dominia." icon_state = "lammergeier" moving_state = "lammergeier_moving" colors = list("#df1032", "#d4296b") + scanimage = "dominian_corvette.png" + designer = "Zhurong Naval Arsenal, Empire of Dominia" + volume = "42 meters length, 75 meters beam/width, 18 meters vertical height" + drive = "Low-Speed Warp Acceleration FTL Drive" + weapons = "Dual wingtip-mounted extruding medium-caliber ballistic armament, aft obscured flight craft bay" + sizeclass = "Lammergeier-class Corvette" + shiptype = "Military patrol and combat utility" max_speed = 1/(2 SECONDS) burn_delay = 1 SECONDS vessel_mass = 5000 fore_dir = SOUTH vessel_size = SHIP_SIZE_SMALL - scanimage = "dominian_corvette.png" - designer = "Zhurong Naval Arsenal, Empire of Dominia" - volume = "42 meters length, 75 meters beam/width, 18 meters vertical height" - drive = "Low-Speed Warp Acceleration FTL Drive" - weapons = "Dual wingtip-mounted extruding medium-caliber naval batteries, fore low-caliber rotary cannon" - sizeclass = "Lammergeier-class Corvette" - shiptype = "Military patrol and combat utility" - initial_restricted_waypoints = list( "Dominian Shuttle" = list("nav_hangar_dominia") ) @@ -54,9 +142,7 @@ "nav_dominian_corvette_3", "nav_dominian_corvette_4", "nav_dominian_corvette_starboard_dock", - "nav_dominian_corvette_port_dock", - "nav_dominian_corvette_aft_dock", - "nav_dominian_corvette_fore_dock" + "nav_dominian_corvette_dock_port" ) invisible_until_ghostrole_spawn = TRUE @@ -70,3 +156,92 @@ skybox_image.pixel_x = rand(0,64) skybox_image.pixel_y = rand(128,256) return skybox_image + +/obj/effect/shuttle_landmark/dominian_corvette/nav1 + name = "Dominian Corvette - Fore" + landmark_tag = "nav_dominian_corvette_1" + base_turf = /turf/space/dynamic + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/nav2 + name = "Dominian Corvette - Aft" + landmark_tag = "nav_dominian_corvette_2" + base_turf = /turf/space/dynamic + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/nav3 + name = "Dominian Corvette - Starboard" + landmark_tag = "nav_dominian_corvette_3" + base_turf = /turf/space/dynamic + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/nav4 + name = "Dominian Corvette - Port" + landmark_tag = "nav_dominian_corvette_4" + base_turf = /turf/space/dynamic + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/dock + name = "Dominian Corvette Starboard Dock" + landmark_tag = "nav_dominian_corvette_starboard_dock" + docking_controller = "airlock_dominian_corvette_starboard_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/dock/port + name = "Dominian Corvette Port Dock" + landmark_tag = "nav_dominian_corvette_dock_port" + docking_controller = "airlock_dominian_corvette_dock_port" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/dominian_corvette/transit + name = "In transit" + landmark_tag = "nav_transit_dominian_corvette" + base_turf = /turf/space/transit/north + +//shuttle stuff +/obj/effect/overmap/visitable/ship/landable/dominian_shuttle + name = "Dominian Shuttle" + class = "HIMS" + designation = "Chariot" + desc = "A light shuttle used by the Imperial Fleet to move small amounts of cargo or personnel between vessels, the Yupmi-class shuttle is a dependable utility craft. Like most Dominian vessels it is relatively well armored for its size but is not a combat vessel by any means. A short operational range means a Yupmi should never stray too far from its vessel of origin as it will soon run out of fuel." + shuttle = "Dominian Shuttle" + icon_state = "shuttle" + moving_state = "shuttle_moving" + colors = list("#df1032", "#d4296b") + max_speed = 1/(3 SECONDS) + burn_delay = 2 SECONDS + vessel_mass = 3000 //very inefficient pod + fore_dir = NORTH + vessel_size = SHIP_SIZE_SMALL + +/obj/machinery/computer/shuttle_control/explore/dominian_shuttle + name = "shuttle control console" + shuttle_tag = "Dominian Shuttle" + req_access = list(ACCESS_IMPERIAL_FLEET_VOIDSMAN_SHIP) + +/datum/shuttle/autodock/overmap/dominian_shuttle + name = "Dominian Shuttle" + move_time = 20 + shuttle_area = list(/area/shuttle/dominian_shuttle) + current_location = "nav_hangar_dominia" + landmark_transition = "nav_transit_dominian_shuttle" + dock_target = "airlock_dominian_shuttle" + range = 1 + fuel_consumption = 2 + logging_home_tag = "nav_hangar_dominia" + defer_initialisation = TRUE + +/obj/effect/shuttle_landmark/dominian_shuttle/hangar + name = "Dominian Shuttle Hangar" + landmark_tag = "nav_hangar_dominia" + docking_controller = "dominian_shuttle_dock" + base_area = /area/ship/dominian_corvette + base_turf = /turf/space/dynamic + movable_flags = MOVABLE_FLAG_EFFECTMOVE + +/obj/effect/shuttle_landmark/dominian_shuttle/transit + name = "In transit" + landmark_tag = "nav_transit_dominian_shuttle" + base_turf = /turf/space/transit/north diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dmm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dmm index 0165d29f365..100ea382d33 100644 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dmm +++ b/maps/away/ships/dominia/dominian_corvette/dominian_corvette.dmm @@ -1,4349 +1,2271 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aay" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"aaJ" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 8 - }, -/obj/structure/platform_deco/dark{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"abE" = ( -/obj/effect/floor_decal/corner{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"acW" = ( -/obj/effect/map_effect/map_helper/ruler_tiles_3, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/central_lift) -"aep" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/structure/table/stone/marble, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"aha" = ( -/obj/machinery/computer/ship/engines/terminal{ - dir = 4; +"aab" = ( +/obj/machinery/vending/engineering{ req_access = list(212) }, -/obj/effect/floor_decal/spline/plain/beige{ +/obj/effect/floor_decal/corner/yellow{ dir = 9 }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"ahM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/cable/green, -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"akp" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"akr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"alk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"all" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"alu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_starboard) -"alG" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"alY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"ans" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"anv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/meter, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"aou" = ( -/obj/structure/table/stone/marble, -/obj/item/flame/candle{ - pixel_y = 6; - pixel_x = 3 - }, -/obj/item/flame/candle{ - pixel_y = 6; - pixel_x = -9 - }, -/obj/item/flame/candle{ - pixel_y = 2; - pixel_x = -3 - }, -/obj/structure/sign/flag/dominia{ - pixel_y = 32 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"apy" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"aqh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"aqF" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "dominia_stall_2"; - name = "Stall #2 Bolt Control"; - specialfunctions = 4; - pixel_y = 5; - pixel_x = -22 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light/small{ - dir = 1; - must_start_working = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"arX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"auN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"auV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"auZ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Rifle Ammunition" - }, -/obj/item/ammo_magazine/a556, -/obj/item/ammo_magazine/a556, -/obj/item/ammo_magazine/a556, -/obj/item/ammo_magazine/a556, -/obj/item/ammo_magazine/c762/dominia, -/obj/item/ammo_magazine/c762/dominia, -/obj/item/ammo_magazine/c762/dominia, -/obj/item/ammo_magazine/c762/dominia, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"avq" = ( -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"avL" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/offship/dominia/voidsman{ - mask = /obj/item/clothing/mask/gas/half - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"awc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"azb" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/command/gold{ - req_access = list(212); - name = "Commanding Officer's Cabin" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/co_cabin) -"azV" = ( -/obj/machinery/atmospherics/valve/open, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"aBM" = ( -/obj/structure/platform/dark, -/obj/machinery/computer/ship/targeting/terminal{ - dir = 4; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"aBY" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/outfit/admin/imperial_fleet_voidsman/officer, -/obj/structure/sign/painting_frame/goddess{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_cabin) -"aEc" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"aEq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/nullrod/dominia/holodeck, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"aFu" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"aGc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/flag/dominia/large/east{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"aGD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"aHt" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"aIf" = ( -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"aIo" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"aLo" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"aMN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_starboard) -"aMY" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/power/apc/south{ - req_access = list(212) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"aOS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"aQc" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/item/hullbeacon/red, -/obj/effect/floor_decal/industrial/arrow/red{ - pixel_x = -16 - }, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"aQe" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"aRn" = ( -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 4 - }, -/obj/random/dirt_75, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"aVD" = ( -/obj/machinery/air_sensor, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_starboard"; - master_tag = "dominia_co2_port" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_starboard) -"aVG" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"aWi" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"aXd" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Stall #1"; - id_tag = "dominia_stall_1" - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/bathroom) -"aYu" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"aYF" = ( -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fc_port) -"aZa" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"aZQ" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/fo_cabin) -"bat" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"bfs" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"bfC" = ( -/obj/machinery/portable_atmospherics/canister/empty{ - name = "waste canister" - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"bgj" = ( -/obj/structure/bed/padded/bunk, -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/item/bedsheet/black{ - pixel_y = 16 - }, -/obj/random/dirt_75, -/obj/outfit/admin/imperial_fleet_voidsman/armsman, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"bie" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_starboard) -"biT" = ( -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"bjT" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"blz" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/engineering) -"blN" = ( -/obj/effect/shuttle_landmark/dominian_shuttle/transit{ - dir = 1 - }, -/turf/space, -/area/space) -"bmu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"bof" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = -31; - pixel_y = 8; - dir = 1; - req_access = list(212) - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_starboard, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"bot" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"bpi" = ( -/obj/structure/closet/secure_closet/evidence{ - name = "personal belongings storage"; - req_one_access = null; - req_access = list(212) - }, -/obj/item/clothing/under/medical_gown, -/obj/item/clothing/under/medical_gown, -/obj/item/clothing/under/medical_gown, -/obj/item/clothing/under/medical_gown, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"bqt" = ( -/obj/structure/table/glass, -/obj/item/book/manual/dominia_honor{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/versebook/tribunal{ - pixel_y = 3; - pixel_x = -4 - }, -/obj/item/clothing/wrists/watch/pocketwatch{ - closed = 1; - pixel_y = 3; - name = "commemorative pocketwatch"; - desc = "A golden pocketwatch celebrating the 75th year since the Imperial Fleet's founding. Accordingly issued on November 17th, 2459." - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_cabin) -"bsd" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "reactor_lockdown" - }, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"bsw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"bsM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"bsW" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_starboard) -"buk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"bvM" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 30; - pixel_y = 8; - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"bvP" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock" - }, -/obj/machinery/access_button{ - pixel_y = -25; - dir = 1; - req_access = list(212); - pixel_x = 32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"bwb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/appliance/cooker/oven, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"bwm" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"bzt" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"bzx" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"bAS" = ( -/obj/structure/cable/orange{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/portgen/basic/fusion, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/reactor) -"bBt" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/bunks) -"bBK" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"bEN" = ( -/obj/machinery/smartfridge/foodheater, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/galley) -"bFS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"bGg" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"bGP" = ( -/obj/effect/floor_decal/corner_wide/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"bJc" = ( +/area/ship/dominian_corvette/engineering) +"aag" = ( +/obj/structure/railing/mapped, /obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"bJS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"bKn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"bMb" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"bMe" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"bMf" = ( -/obj/structure/closet/secure_closet/cabinet{ - req_access = list(212); - pixel_x = -1; - name = "Personal Equipment" - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/clothing/under/dominia/fleet/officer, -/obj/item/clothing/suit/storage/dominia/fleet, -/obj/item/clothing/head/dominia/fleet/officer, -/obj/item/clothing/accessory/poncho/dominia_cape/zhao, -/obj/item/clothing/accessory/poncho/dominia_cape/zhao/white, -/obj/item/flame/lighter/zippo/dominia, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/item/storage/secure/briefcase, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/co_cabin) -"bOQ" = ( -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_corner/grey, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"bQm" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(212); - name = "Fore Docking Arm" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"bRe" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"bSQ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - start_pressure = 6000; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"bTh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/ap{ - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/ap{ - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/ap{ - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/ap{ - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca/ap{ - pixel_x = -4 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"bTJ" = ( -/obj/structure/closet/secure_closet/custodial/offship{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"bTU" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ dir = 4 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"bTW" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/greencross{ - pixel_x = 32 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"bUA" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"bUE" = ( -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fore_hallway) -"bWY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"bXv" = ( -/obj/random/dirt_75, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"bYN" = ( -/obj/machinery/computer/shuttle_control/multi/lift/dominian_corvette{ - pixel_y = 10 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"caK" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hydroponics) -"cbu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small/red{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"ceE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - req_access = list(212); - name = "Power Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/reactor) -"cfg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"cfU" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"cgu" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 9 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 5 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/engineering) -"cgX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"chs" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/turf/simulated/floor, -/area/dominian_corvette/chapel) -"ciT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"cjH" = ( -/obj/structure/sign/flag/dominia/large/south{ - pixel_y = -32 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"clw" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"clC" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"cmj" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"cmK" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_cabin) -"cpa" = ( -/obj/structure/platform/dark, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"cpy" = ( -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"cpP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"cpQ" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"csD" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/magazine_port) -"ctj" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"cvG" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - use_power = 1; - name = "emergency outlet injector"; - volume_rate = 700 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/atmospherics) -"cxT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"czO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_port) -"cBc" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"cBV" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_cabin) -"cCd" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/access_button{ - pixel_x = -26; - pixel_y = -28; - dir = 4; - req_access = list(212) - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"cCp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"cDq" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"cDt" = ( -/obj/effect/floor_decal/corner_wide/brown/full, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"cDH" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"cEB" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"cFR" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"cFV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"cGa" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/mob/living/heavy_vehicle/premade/ripley/loader{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_starboard) -"cGr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"cJQ" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/mess_hall) -"cLf" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"cLq" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"cOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/brig) -"cQs" = ( -/obj/structure/undies_wardrobe{ - pixel_x = -1 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fo_cabin) -"cQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"cRh" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"cRo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_starboard, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = 25; - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = 24; - dir = 8; - pixel_y = -6; - req_access = list(212) - }, -/obj/machinery/light/small{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"cSs" = ( -/obj/effect/floor_decal/corner/orange/full{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"cTb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/appliance/cooker/grill, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"cTs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"cUz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"cVr" = ( -/obj/machinery/vending/medical{ - req_access = list(212); - pixel_x = -1 - }, -/obj/effect/floor_decal/corner/green/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"cXp" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"cZb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"cZo" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /turf/template_noop, -/area/space) -"cZv" = ( -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"daL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"dbC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"dbL" = ( -/obj/structure/undies_wardrobe{ - pixel_x = -1 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/co_cabin) -"dbQ" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_containers/glass/bucket, -/obj/item/material/minihoe, -/obj/item/material/scythe/sickle, -/obj/item/wirecutters/clippers, -/obj/item/material/hatchet, -/obj/item/reagent_containers/glass/fertilizer/ez, -/obj/item/reagent_containers/glass/fertilizer/ez, -/obj/item/reagent_containers/glass/fertilizer/ez, -/obj/item/reagent_containers/glass/fertilizer/ez, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"deg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/ship/dominian_corvette/exterior) +"aay" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"deH" = ( -/obj/structure/morgue{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"aaJ" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/machinery/door/window/eastright{ dir = 2 }, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"dhp" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"dhC" = ( -/obj/structure/sink/kitchen{ - pixel_y = 29; - name = "sink" +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 }, -/obj/effect/floor_decal/corner/green{ - dir = 5 +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"djK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_port) -"dkm" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - req_access = list(212); - name = "Infirmary"; - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/infirmary) -"dmo" = ( -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/machinery/papershredder{ - pixel_x = -6 - }, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/co_office) -"dov" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"doT" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 8 - }, -/obj/structure/platform_deco/dark{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"dpB" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"dpI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Kitchen"; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/galley) -"dqm" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"acd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"dqP" = ( -/obj/structure/bed/stool/bar/padded/red{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"dqX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"dra" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"dsW" = ( -/obj/structure/cable/orange{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/button/remote/blast_door{ - pixel_y = 25; - pixel_x = -4; - id = "reactor_lockdown"; - name = "Reactor Blast Doors"; - req_one_access = list(212); - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"dtB" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/table/rack/folding_table, -/obj/item/device/versebook/tribunal{ - pixel_y = 2 - }, -/turf/simulated/floor, -/area/dominian_corvette/brig) -"duv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/telecomms) -"dvx" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/atmospherics) -"dxL" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/lounge) -"dxU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"dzq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"dzy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"acm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/dominian_corvette/thrust_starboard) -"dzO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/reagent_containers/toothpaste{ - pixel_y = 14 - }, -/obj/item/reagent_containers/toothpaste{ - pixel_y = 8 - }, -/obj/item/reagent_containers/toothbrush/green{ - pixel_y = 3 - }, -/obj/item/reagent_containers/toothbrush/red, -/obj/item/reagent_containers/toothbrush{ - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"dzQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"dCe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"aep" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/armory) +"aeN" = ( +/obj/machinery/alarm/south{ + req_one_access = list(212) }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_y = 26; - pixel_x = -6 +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"agx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/airlock_sensor{ - pixel_y = 25; - pixel_x = 5 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"dCr" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_corner/service{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/service{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/service{ +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"ahw" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/structure/platform/ledge, +/obj/effect/floor_decal/corner/red{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"dCX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"dDI" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 32 - }, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"dEx" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"ajL" = ( +/obj/machinery/bodyscanner, /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/offship/dominia{ - mask = /obj/item/clothing/mask/gas/half +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"aky" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/dominia/voidsman, +/obj/item/clothing/head/helmet/space/void/dominia/voidsman, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/accessory/flagpatch/dominia, +/obj/item/device/gps, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/alarm/west{ + req_one_access = list(212) }, -/obj/machinery/light{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"alw" = ( +/obj/machinery/alarm/north{ + req_one_access = list(212) }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"dHm" = ( -/obj/machinery/computer/ship/helm/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"dIe" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"dJb" = ( -/obj/effect/shuttle_landmark/dominian_corvette/nav3{ - dir = 4 - }, -/turf/template_noop, -/area/space) -"dJL" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Equipment" - }, -/obj/item/clothing/suit/armor/carrier/dominia, -/obj/item/clothing/suit/armor/carrier/dominia, -/obj/item/clothing/accessory/armor_plate/heavy/dominia, -/obj/item/clothing/accessory/armor_plate/heavy/dominia, -/obj/item/clothing/head/helmet/dominia, -/obj/item/clothing/head/helmet/dominia, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/item/clothing/accessory/holster/thigh/brown, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"dKe" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/item/reagent_containers/food/snacks/fish/fishfillet, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light/small/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/freezer) -"dMj" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"dNR" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"dPj" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 +/obj/effect/floor_decal/corner/red{ + dir = 5 }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"alH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/highsecurity{ - dir = 8; - req_access = list(212); - name = "Portside Gunnery" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"dPG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"ans" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 5 }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"dQc" = ( -/obj/effect/floor_decal/spline/plain/beige{ - dir = 10 - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"dQj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/freezer) -"dRg" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"dRh" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"dRG" = ( -/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/pen/fountain/captain, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"dSL" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Lavatory" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/bathroom) -"dUz" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/reactor) -"dUH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"dWl" = ( -/obj/structure/weapons_rack{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/gun/projectile/automatic/rifle/dominia_carbine, -/obj/item/gun/projectile/automatic/rifle/dominia_carbine, -/obj/item/gun/projectile/automatic/tommygun/dom, -/obj/item/gun/projectile/automatic/tommygun/dom, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/armoury) -"dYb" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/structure/bed/sleeping_bag{ - pixel_y = 6; - pixel_x = -6 - }, -/turf/simulated/floor, -/area/dominian_corvette/brig) -"dZt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"dZG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"eal" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Starboard Fire Control Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fc_starboard) -"ebp" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"ecm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fore_hallway) -"eeK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"efB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/meter, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"egJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"eij" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Close Quarters Armaments" - }, -/obj/item/storage/belt/security/full/alt, -/obj/item/storage/belt/security/full/alt, -/obj/item/material/knife/bayonet, -/obj/item/material/knife/bayonet, -/obj/item/material/knife/bayonet, -/obj/item/material/knife/bayonet, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/plastique, -/obj/item/plastique, -/obj/item/grenade/frag, -/obj/item/grenade/smokebomb, -/obj/item/grenade/stinger, -/obj/item/grenade/stinger, -/obj/item/grenade/flashbang, -/obj/item/grenade/flashbang, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"ejK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fore_hallway) -"elH" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"enj" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_y = 26; - pixel_x = 6 - }, -/obj/machinery/airlock_sensor{ - pixel_y = 25; - pixel_x = -6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"eoL" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/lounge) -"eoR" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"epb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/dominian_shuttle) -"eph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/item/device/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = -10 }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"epw" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"erN" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/co_cabin) -"erT" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 4 - }, -/obj/structure/platform_deco/dark{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"erX" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/structure/sign/flag/dominia/large/west{ - dir = 8; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"aou" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion) +"aow" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"aoH" = ( +/obj/structure/table/steel, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/storage/firstaid/surgery, +/obj/item/storage/box/sharps{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_x = 9; + pixel_y = -4 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"aqo" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"aqS" = ( +/obj/effect/floor_decal/corner{ + dir = 4 + }, /turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"etL" = ( -/turf/space/transit/north, -/area/space) -"evg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/ship/dominian_corvette/temple) +"asL" = ( +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 4; + target_pressure = 250 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"ewD" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"atj" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, thrusters" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/propulsion) +"aue" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Starboard Docking Arm" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/multi_tile{ + req_one_access = null; + dir = 2 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"auV" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"awG" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/bridge) +"aBD" = ( +/obj/machinery/power/apc/east{ + req_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"aCd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"aCZ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"aEq" = ( +/obj/machinery/pipedispenser, +/obj/item/pipewrench, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"aHs" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"aHt" = ( +/obj/structure/curtain/open{ + color = "#4A4A4A" + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"aHw" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secondary Ship Armament"; + req_access = list(212); + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"aMY" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"aOU" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Hangar"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/hangar) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 5 + }, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"aSc" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"aSJ" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/photocopier/faxmachine{ + req_one_access = null; + req_access = list(212); + department = "Dominian Corvette" + }, +/obj/structure/sign/flag/volvalaad{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"aSN" = ( +/obj/machinery/alarm/north{ + req_one_access = list(212) + }, +/obj/structure/railing/mapped, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"aWi" = ( +/obj/structure/table/reinforced/steel, +/obj/item/device/binoculars, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/dom{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/structure/sign/flag/zhao{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"bam" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion/port) +"bfj" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion/port) +"bik" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Reactor Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/engineering/reactor) +"bja" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/janitor) +"bjw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"bjN" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"bnp" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(212); + name = "gun cabinet (SMGs)" + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/item/gun/projectile/automatic/tommygun/dom, +/obj/item/gun/projectile/automatic/tommygun/dom, +/obj/item/gun/projectile/automatic/tommygun/dom, +/obj/item/gun/projectile/automatic/tommygun/dom, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/obj/item/ammo_magazine/submachinemag, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"bos" = ( +/obj/machinery/vending/tool{ + req_access = list(212) + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"bot" = ( +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/yellow, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"bra" = ( +/obj/machinery/alarm/west{ + req_one_access = list(212) + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"bsE" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/officer) +"buA" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/dominian_shuttle) +"buM" = ( +/obj/structure/bed/chair, +/obj/structure/bed/chair{ + pixel_y = 12 + }, +/obj/item/bedsheet/red, +/obj/item/bedsheet/red{ + pixel_y = 12 + }, +/obj/structure/curtain/open/bed, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/ghostspawpoint{ + identifier = "imperial_fleet_voidsman"; + name = "igs - imperial_voidsman" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"bvG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"bwm" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/dominia/voidsman, +/obj/item/clothing/head/helmet/space/void/dominia/voidsman, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/accessory/flagpatch/dominia, +/obj/item/device/gps, +/obj/item/tank/jetpack/carbondioxide, /obj/machinery/power/apc/west{ req_access = list(212) }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/telecomms) -"eyp" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"eyZ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"ezg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/meter, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"ezp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"ezu" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/bathroom) -"eAH" = ( -/obj/machinery/atmospherics/binary/passive_gate/supply{ - target_pressure = 250; - dir = 1; - name = "Air Supply to Distro" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/blue{ - dir = 4; - pixel_y = 1; - pixel_x = -3 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"eAR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"eDG" = ( -/obj/effect/floor_decal/corner/orange{ +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"bws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/structure/closet/secure_closet{ - req_access = list(212); - name = "Engineering Equipment" - }, -/obj/item/storage/backpack/duffel/eng, -/obj/item/storage/backpack/duffel/eng, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/gun/energy/plasmacutter{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/gun/energy/plasmacutter{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/pipewrench, -/obj/item/pipewrench, -/obj/item/taperoll/engineering, -/obj/item/taperoll/engineering, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/engine, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"eDJ" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"byV" = ( +/obj/structure/bed/stool/chair/shuttle{ dir = 8 }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"eFE" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning/cee{ +/obj/machinery/light{ dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"bBK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = -2 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 1 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/machinery/alarm/south{ + pixel_y = 0; + req_one_access = list(212) + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/ship/dominian_corvette/engineering) +"bCq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"bDg" = ( +/obj/structure/fireaxecabinet/east, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"bDu" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/quarters) +"bEJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"bNV" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_temple" + }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/power/smes/buildable/third_party_shuttle, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/reactor) -"eGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm/south{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"eHi" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"eHO" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/effect/shuttle_landmark/dominian_corvette/dock_starboard{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock" - }, -/obj/machinery/access_button{ - pixel_y = -30; - pixel_x = -5; - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"eIz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"eJP" = ( -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"eKj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/sign/flag/dominia/large/north{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"eKI" = ( -/obj/effect/floor_decal/corner/orange/full{ - dir = 4 - }, -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Modified Autolathe"; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"eMk" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1; - name = "Canister to Fuel Tank" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ + desc = "A warning sign which reads 'WARNING: BLAST DOOR'."; + name = "\improper WARNING: BLAST DOOR sign"; pixel_x = 32 }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"eMs" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/galley) -"eNb" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_starboard) -"eOA" = ( -/obj/structure/table/glass, -/obj/item/book/manual/dominia_honor{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/versebook/tribunal{ - pixel_y = 3; - pixel_x = -4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/fo_cabin) -"eQw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/command/gold{ - dir = 4; - req_access = list(212); - name = "First Officer's Quarters" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fo_office) -"eRw" = ( -/obj/structure/lattice, -/obj/structure/ladder{ - pixel_y = 16 - }, -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/turf/simulated/open/airless, -/area/dominian_corvette/central_lift) -"eRN" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"eSP" = ( -/obj/structure/platform_deco/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"eTK" = ( -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-9" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, thruster pod" - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_port) -"eUC" = ( -/obj/structure/platform/dark{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"eUH" = ( -/obj/structure/closet/crate/secure, -/obj/item/flag/dominia, -/obj/item/flag/dominia, -/obj/item/flag/dominia, -/obj/item/flag/dominia, -/obj/item/flag/dominia, -/obj/item/flag/dominia/l, -/obj/item/flag/dominia/l, -/obj/item/flag/dominia/l, -/obj/item/flag/dominia/l, -/obj/item/flag/dominia/l, -/obj/item/storage/stickersheet/dominia, -/obj/item/storage/stickersheet/dominia, -/obj/item/storage/stickersheet/dominia, -/obj/item/storage/stickersheet/dominia, -/obj/item/storage/stickersheet/dominia, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"eVp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/ship_ammunition/lammergeier{ - pixel_y = 4; - pixel_x = 3 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"eWe" = ( -/obj/effect/floor_decal/corner/full{ - dir = 8 - }, -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"eWQ" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"eXn" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/structure/sign/flag/dominia/large/east{ - dir = 4; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"eXs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_starboard) -"eYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"eYX" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"fan" = ( -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"faE" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"fbw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cargo) -"fbI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Nuclear Reactor Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/magazine_starboard) -"fdA" = ( -/obj/structure/platform/dark, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"fdQ" = ( -/obj/structure/coatrack{ - pixel_x = -4; - pixel_y = 23 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_cabin) -"ffF" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"fha" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 4 - }, -/obj/item/device/binoculars{ - pixel_y = 5; - pixel_x = -1 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = -13; - pixel_x = 1 - }, -/obj/item/clothing/glasses/safety/goggles{ - pixel_y = -16; - pixel_x = -3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fc_starboard) -"fiE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"flW" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/atmos{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "dominia_igniter_starboard"; - pixel_x = -10 - }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_starboard"; - master_tag = "dominia_co2_port" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_starboard) -"fmq" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/obj/effect/map_effect/map_helper/ruler_tiles_3, -/obj/effect/landmark/entry_point/fore{ - name = "fore, helm" - }, -/turf/simulated/floor, -/area/dominian_corvette/helm) -"fmO" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/effect/shuttle_landmark/dominian_corvette/dock_aft, -/obj/machinery/access_button{ - pixel_x = -28; - pixel_y = 11; - dir = 1; - req_access = list(212) - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"fnF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"fpS" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard thrusters" - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_starboard) -"frx" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"frC" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Personal Arms" - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/accessory/armor_plate/heavy/dominia, -/obj/item/clothing/head/helmet/dominia/nco, -/obj/item/gun/projectile/pistol/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/shield/energy/dominia, -/obj/item/melee/energy/sword/pirate/generic, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/item/storage/belt/military, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/material/knife/bayonet, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/fo_office) -"frE" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"ftc" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"fuo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"fuJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"fwc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"fAR" = ( -/obj/effect/floor_decal/corner/orange/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"fBb" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"fGW" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/structure/sign/flag/dominia/large/west{ - dir = 8; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"fHL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"fKa" = ( -/obj/structure/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"fMr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"fVL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"fWH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"fWO" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 25; - pixel_y = -30; - dir = 8; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"fWS" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_helm"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"fZl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/sign/flag/dominia/large/north{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"fZq" = ( -/obj/effect/floor_decal/corner{ - dir = 5 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"gcs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"gcD" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"gdk" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"gen" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"ggY" = ( -/obj/machinery/computer/ship/engines/terminal{ - dir = 8; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/flag/dominia{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"giG" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 8; - name = "Scrubber to Waste"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/red{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"giR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"gjd" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/dominian_shuttle) -"glf" = ( -/obj/effect/floor_decal/corner/orange/full, -/obj/effect/floor_decal/industrial/hatch/engineering, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"glk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/appliance/cooker/stove, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"glW" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"gnT" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"goY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/dominian_corvette/thrust_starboard) -"gpE" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"gpJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +/area/ship/dominian_corvette) +"bOQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"bPE" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/propulsion/port) +"bRD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"grl" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_co2_port" +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"bTU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"gtB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; +/turf/template_noop, +/area/ship/dominian_corvette/exterior) +"cbY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ icon_state = "1-4" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"cfL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"gtD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - req_access = list(212); - name = "Portside Thruster Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cargo) -"gtK" = ( -/obj/random/dirt_75, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"gwR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"cgQ" = ( +/obj/machinery/light, +/obj/machinery/media/jukebox/gramophone, +/obj/effect/floor_decal/spline/plain/yellow{ dir = 6 }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"gxA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"gxD" = ( -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Carbon Dioxide Supply Monitor"; - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_starboard"; - master_tag = "dominia_co2_port" - }, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 8 +/obj/effect/floor_decal/spline/plain/yellow, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"cjb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"gzo" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/blast/regular/open{ - id = "dominia_helm" - }, +/area/ship/dominian_corvette/engineering/atmos) +"cjQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"gzE" = ( -/obj/structure/closet/walllocker/medical/secure{ - pixel_y = -32; - req_access = list(212); - name = "Stabilisation Closet" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/vitals_monitor, -/obj/item/vitals_monitor, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/reagent_containers/glass/bottle/inaprovaline, -/obj/item/auto_cpr, -/obj/item/auto_cpr, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"gBf" = ( -/obj/structure/cable/orange{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch_small/yellow, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/reactor) -"gDz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"gEX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"gFH" = ( -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"gGz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"gGR" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"gHG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/armoury) -"gLb" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"gMs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Brig" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/brig) -"gNd" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/firstaid/adv{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/storage/firstaid/combat{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/storage/firstaid/large/stab, -/obj/effect/floor_decal/corner/green/full, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"gNX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"gPM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"gUw" = ( -/obj/effect/floor_decal/corner/paleblue{ +/obj/effect/floor_decal/corner/red{ dir = 6 }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"clh" = ( +/obj/machinery/vending/coffee/free{ + name = "Royal Zhurong Brewers machine" }, -/obj/machinery/power/apc/east{ - req_access = list(212) +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"gUU" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/shot{ - pixel_y = 5; - pixel_x = 1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/shot{ - pixel_y = 3; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/shot{ - pixel_y = 3; - pixel_x = -5 - }, -/obj/random/arcade{ - pixel_x = -20; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"gWy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"gXv" = ( -/obj/effect/floor_decal/corner{ - dir = 10 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"gXw" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"gXL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner/red{ dir = 9 }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"haD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"cno" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"cnH" = ( +/obj/machinery/power/apc/south{ + req_access = list(212) + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"coM" = ( +/obj/effect/floor_decal/spline/plain/white{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"cpa" = ( +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access = list(212); + dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fore_hallway) -"haM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"haQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/dominian_corvette/thrust_port) -"hcb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette) +"cpy" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "dominia_co2_in_port" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/ship/dominian_corvette/engineering/atmos) +"cpP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/binary/pump/on{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"hfc" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"hfh" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"hfi" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"hfx" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"hga" = ( -/obj/machinery/ammunition_loader/lammergeier{ - weapon_id = "Dominian Typhoon Naval Cannon" - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"hgo" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"hgF" = ( -/obj/structure/platform_deco/dark{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, /turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"hhw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"hiw" = ( -/obj/effect/floor_decal/corner/full, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"hjH" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"hkg" = ( -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"hml" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"hnK" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"hos" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ +/area/ship/dominian_corvette/engineering/atmos) +"cqW" = ( +/obj/machinery/door/airlock/service{ + name = "Head"; dir = 4; req_access = list(212) }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"hoO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ d1 = 4; - d2 = 8 + d2 = 8; + icon_state = "4-8" }, -/obj/structure/cable/green{ +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/quarters) +"ctK" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking) +"cwi" = ( +/obj/structure/bed/chair, +/obj/structure/bed/chair, +/obj/structure/bed/chair{ + pixel_y = 12 + }, +/obj/item/bedsheet/red, +/obj/item/bedsheet/red{ + pixel_y = 12 + }, +/obj/structure/curtain/open/bed, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/effect/ghostspawpoint{ + identifier = "imperial_fleet_voidsman"; + name = "igs - imperial_voidsman" + }, +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10; + req_one_access = list(212) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"cwq" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"cBa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"cBV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"cFv" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"cJO" = ( +/obj/structure/railing/mapped{ + icon_state = "railing0-0"; + density = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 4 + }, +/area/ship/dominian_corvette/cic) +"cMo" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"cTq" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/head) +"cUE" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"cYw" = ( +/obj/machinery/door/airlock/hatch{ + name = "Propulsion"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/engineering/reactor) +"cZb" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"cZv" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"cZD" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/eastleft{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking/port) +"dez" = ( +/obj/structure/janitorialcart/full{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/janitor) +"dfw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion) +"dhp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/external{ + frequency = 1441; + icon_state = "door_locked"; + id_tag = "ssmd_shuttle_in"; + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + name = "interior access button"; + pixel_x = 32; + pixel_y = 9; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, /turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"hpQ" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"hrs" = ( +/area/shuttle/dominian_shuttle) +"diE" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/cic) +"dnW" = ( /obj/effect/map_effect/window_spawner/full/shuttle{ spawn_firedoor = 1; spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" + color = "#BDB6AE"; + frame_color = "#BDB6AE" }, /obj/machinery/door/blast/regular/open{ - id = "dominia_windows" + dir = 4; + id = "dominian_corvette_bridge" }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"hrw" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/bridge) +"doI" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/ship/dominian_corvette/exterior) +"dsC" = ( +/obj/effect/shuttle_landmark/dominian_corvette/nav2, +/turf/template_noop, +/area/space) +"dvU" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/clipboard{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"dxX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"dBq" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette) +"dEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = -11 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"dEE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, +/obj/structure/sign/radiation{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"dHm" = ( +/obj/structure/bed/chair, +/obj/structure/bed/chair{ + pixel_y = 12 + }, +/obj/item/bedsheet/red, +/obj/item/bedsheet/red{ + pixel_y = 12 + }, +/obj/structure/curtain/open/bed, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/ghostspawpoint{ + identifier = "imperial_fleet_voidsman"; + name = "igs - imperial_voidsman" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"dHA" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"dIe" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"dMj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/hatch{ + name = "Propulsion"; + dir = 1 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"dTw" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"dYJ" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor, +/area/ship/dominian_corvette/propulsion/port) +"dZr" = ( +/obj/machinery/vending/dinnerware, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"dZC" = ( +/obj/effect/floor_decal/spline/plain/white{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"ebu" = ( +/obj/structure/table/reinforced/steel, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/dom{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/material/ashtray/bronze, +/obj/structure/sign/flag/strelitz{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"edF" = ( +/obj/structure/bed/chair, +/obj/structure/curtain/open/bed, +/obj/item/bedsheet/rd, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/effect/ghostspawpoint{ + identifier = "imperial_fleet_voidsman"; + name = "igs - imperial_voidsman/officer" + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"ehT" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"eiR" = ( +/obj/effect/floor_decal/corner{ + dir = 9 + }, +/obj/item/sign/painting_frame/goddess/scholar{ + pixel_x = -32 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"ejW" = ( +/obj/structure/table/standard, +/obj/item/device/binoculars, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/power/apc/high/south{ + req_access = list(212) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"ekH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"elq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"elw" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/eva) +"elH" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/head) +"epw" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/dominia/voidsman, +/obj/item/clothing/head/helmet/space/void/dominia/voidsman, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/accessory/flagpatch/dominia, +/obj/item/device/gps, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"epB" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + input_tag = "dominia_co2_in_starboard"; + name = "Carbon Dioxide Supply Monitor"; + output_tag = "dominia_co2_out_starboard"; + sensors = list("dominia_co2_sensor_starboard"="Tank"); + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion) +"eqq" = ( +/obj/machinery/alarm/west{ + req_one_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"eqL" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/docking/port) +"eqS" = ( +/obj/structure/sink/kitchen{ + dir = 4; + name = "surgical sink"; + pixel_x = -20 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"erT" = ( +/obj/machinery/ammunition_loader/lammergeier{ + weapon_id = "Lammergeier Cannon" + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"etL" = ( +/turf/space/transit/north, +/area/space) +"eur" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"exm" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"eze" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, crew compartment" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/shuttle/dominian_shuttle) +"ezu" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Primary Ship Armament"; + req_access = list(212); + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"ezV" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"eBK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 6 + }, +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"eIb" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/dominian_corvette, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"eKs" = ( +/obj/machinery/alarm/south{ + pixel_y = 0; + req_one_access = list(212) + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion/port) +"eKR" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion) +"eMs" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering/reactor) +"eMT" = ( +/obj/machinery/alarm/south{ + pixel_y = 0; + req_one_access = list(212) + }, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion) +"eWe" = ( +/obj/machinery/door/airlock/hatch{ + name = "Expedition Prep"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/eva) +"eWQ" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, starboard wing" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/recroom) +"eYR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/spiderling_remains, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"eYX" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/ship_ammunition/lammergeier, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 10 + }, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 5 + }, +/obj/item/ship_ammunition/lammergeier, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"faF" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion/port) +"fdo" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, reactor room" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering/reactor) +"fek" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"fif" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"fjW" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + name = "Midship Shutters"; + id = "dominian_corvette_midship"; + pixel_y = 2; + pixel_x = -4 + }, +/obj/machinery/button/remote/blast_door{ + pixel_y = 9; + pixel_x = 7; + id = "dominian_corvette_temple"; + name = "Temple Shutters" + }, +/obj/machinery/button/distress{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + name = "Bridge Shutters"; + id = "dominian_corvette_bridge"; + pixel_y = 9; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"flC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"flP" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"fnj" = ( +/obj/machinery/computer/ship/targeting{ + req_access = list(212) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"fnY" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/recroom) +"fpW" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/dominian_shuttle) +"frC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"fte" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"fvv" = ( +/obj/structure/table/wood, +/obj/item/deck/cards, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 9 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/yellow, +/obj/item/trash/cigbutt, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"fyC" = ( +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"fyU" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Port Docking Arm" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/multi_tile{ + req_one_access = null; + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/infirmary) +"fBb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 8 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"fBu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"fDv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"fGW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 20; + pixel_y = 6 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"fKE" = ( +/obj/machinery/power/apc/west{ + req_access = list(212) + }, +/obj/structure/cable, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"fNe" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "dominia_co2_out_starboard" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/ship/dominian_corvette/propulsion) +"fNZ" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, crew compartment" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/shuttle/dominian_shuttle) +"fQd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"fQq" = ( +/obj/effect/floor_decal/corner/full, +/obj/structure/sign/flag/dominia{ + pixel_x = -32 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"fSC" = ( +/obj/structure/table/standard, +/obj/item/clothing/ears/earmuffs, +/obj/item/device/binoculars, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"fUN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"fXH" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"hse" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 5 +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"fZl" = ( +/obj/structure/viewport/zavod, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"fZq" = ( +/obj/effect/overmap/visitable/ship/landable/dominian_shuttle, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"gcq" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Bridge" }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"gdk" = ( +/obj/machinery/iff_beacon/name_change, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/airless, +/area/ship/dominian_corvette/bridge) +"giu" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/curtain/open/medical, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"gmO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"grx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion/port) +"grG" = ( +/obj/machinery/power/apc/high/west{ + req_access = list(212) + }, +/obj/structure/cable, +/obj/effect/floor_decal/spline/plain/white{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"gtJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"guT" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/eva) +"gyl" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"gBt" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"gEX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"gFJ" = ( +/obj/machinery/power/portgen/basic/fusion, +/obj/machinery/door/window/southleft, /obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "0-2" }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"hsE" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"hsZ" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"htb" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Thrusters to Canister"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"hvl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - req_access = list(212); - name = "Portside Thruster Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/reactor) -"hxK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"hxQ" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ +/obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/reinforced, -/area/dominian_corvette/docking_arm) -"hxR" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/galley) -"hyQ" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ +/area/ship/dominian_corvette/engineering/reactor) +"gHr" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_midship" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"gHC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Auxiliary CIC"; + dir = 4; + req_one_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/blast/regular/open{ + id = "dominian_corvette_cic" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"gLO" = ( +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10; + req_one_access = list(212) + }, +/obj/machinery/light_switch{ + pixel_y = -14; + pixel_x = -7 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"gNT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"gSY" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"gTU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"gVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/walllocker{ + pixel_y = 32 + }, +/obj/item/clothing/accessory/holster/thigh/brown, +/obj/item/clothing/accessory/holster/thigh/brown, +/obj/item/clothing/accessory/holster/thigh/brown, +/obj/item/clothing/accessory/holster/thigh/brown, +/obj/item/clothing/accessory/holster/thigh, +/obj/item/clothing/accessory/holster/thigh, +/obj/item/clothing/accessory/holster/thigh, +/obj/item/clothing/accessory/holster/thigh, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"gXv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(212) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/obj/effect/floor_decal/corner/red{ + dir = 5 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/shuttle/dominian_shuttle) -"hAC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/closet/walllocker{ + pixel_y = 32 }, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/warning{ +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/clothing/accessory/badge/passport/dominia, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"hbA" = ( +/mob/living/heavy_vehicle/premade/ripley/loader, +/obj/machinery/mech_recharger, +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/full, -/area/dominian_corvette/thrust_port) -"hBA" = ( -/obj/effect/floor_decal/corner{ +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"hcl" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/cannon) +"hcm" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/hangar) +"hdA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/white{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"hfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"hDf" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"hfF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"hgF" = ( +/obj/machinery/door/airlock/freezer{ + dir = 1; + id_tag = "main_unit_1"; + name = "Unit 1" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"hhf" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/ship_ammunition/lammergeier, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 10 + }, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 5 + }, +/obj/item/ship_ammunition/lammergeier, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"hiw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"hjB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 5 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"hlT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"hoK" = ( +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"hqL" = ( +/obj/structure/closet/walllocker{ + name = "tritium locker"; + pixel_y = 32 + }, +/obj/item/stack/material/tritium/full, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"hDC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/alarm/west{ - req_one_access = null; +/obj/item/stack/material/tritium/full, +/obj/item/stack/material/tritium/full, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/stack/material/tritium/full, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"hru" = ( +/obj/machinery/door/airlock/service{ + name = "Dormitory"; + dir = 4; req_access = list(212) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"hHn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"hLa" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ d1 = 4; - d2 = 8 + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"hMc" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 +/obj/machinery/door/firedoor/noid{ + dir = 8 }, -/obj/item/storage/box/condiment{ - pixel_y = 2 +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/quarters) +"huE" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8 }, -/obj/item/storage/box/condimentbottles{ - pixel_y = 5 +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion) +"hzU" = ( +/obj/machinery/cryopod{ + dir = 2 }, -/obj/random/dirt_75, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"hAK" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"hDH" = ( +/obj/machinery/door/window/eastleft{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) +/area/ship/dominian_corvette/recroom) +"hDV" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/cannon) +"hGR" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(212); + name = "gun cabinet (sidearms)" + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/item/ammo_magazine/c45m/dominia, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) "hMR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4351,1141 +2273,615 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/command/gold{ - dir = 4; - req_access = list(212); - name = "First Officer's Cabin" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fo_cabin) -"hNY" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"hQk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_starboard) -"hQq" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/button/remote/blast_door{ - id = "dominia_helm"; - name = "Helm Lockdown"; - dir = 10; - pixel_x = 5; - pixel_y = 8 - }, -/obj/machinery/button/distress{ - pixel_y = -2; - pixel_x = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "dominia_airlock"; - name = "Airlock Shields"; - dir = 10; - pixel_y = 8; - pixel_x = -6 - }, -/obj/machinery/button/remote/blast_door{ - id = "dominia_windows"; - name = "Window Shields"; - dir = 10; - pixel_x = -6; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"hQI" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/red{ + dir = 9 }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"hMT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/corner/red{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"hUe" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fore_hallway) -"hVB" = ( -/obj/structure/platform_stairs, -/obj/structure/platform/dark{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"hVG" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"hWr" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/power/apc/north{ + req_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, -/obj/structure/platform/dark{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"hYY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"hZq" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"iaK" = ( +/obj/effect/floor_decal/corner/full{ + dir = 8 + }, +/obj/item/sign/painting_frame/goddess/soldier{ + pixel_x = -32 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"ibs" = ( +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"ics" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"hYV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"ike" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/engineering/reactor) +"inf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ dir = 10 }, -/obj/structure/cable/green{ - d1 = 1; +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"ioG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/cryogenics) -"iaE" = ( -/obj/machinery/door/blast/regular/open{ - id = "dominia_helm" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"iaP" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +/obj/machinery/light{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"iaY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/coatrack{ - pixel_x = -7; - pixel_y = 20 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"ibm" = ( -/obj/random/dirt_75, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"ibY" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/eva_prep) -"icR" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline_corner/grey, -/obj/effect/floor_decal/industrial/outline_segment/grey{ +/obj/effect/floor_decal/corner/red{ dir = 5 }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"ioR" = ( +/obj/machinery/door/airlock/freezer{ + dir = 1; + id_tag = "main_unit_2"; + name = "Unit 2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"ioT" = ( +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/white{ dir = 8 }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 2 +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"itD" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"itJ" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + name = "Midship Shutters"; + id = "dominian_corvette_midship"; + pixel_y = 2; + pixel_x = -4; + dir = 1 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fc_starboard) -"idv" = ( -/obj/structure/cable/orange{ - icon_state = "1-8"; - d1 = 1; - d2 = 8 +/obj/machinery/button/remote/blast_door{ + pixel_y = 9; + pixel_x = 7; + id = "dominian_corvette_temple"; + name = "Temple Shutters"; + dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/south{ - req_one_access = null; - req_access = list(212) +/obj/machinery/button/distress{ + pixel_x = 7; + pixel_y = 24 }, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"ihf" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 8; - req_access = list(212) +/obj/machinery/button/remote/blast_door{ + name = "Bridge Shutters"; + id = "dominian_corvette_bridge"; + pixel_y = 9; + pixel_x = -4; + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + name = "CIC Lockdown"; + id = "dominian_corvette_cic"; + pixel_y = 2; + pixel_x = 7; + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ - dir = 4 + dir = 1 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"ihj" = ( +/obj/structure/sign/flag/caladius{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"ixD" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/photocopier/faxmachine{ + req_one_access = null; + req_access = list(212); + department = "Dominian Corvette" + }, +/obj/structure/sign/flag/volvalaad{ + pixel_x = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"iyN" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/template_noop, +/area/space) +"iCK" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/shuttle/dominian_shuttle) +"iEC" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/curtain/open/medical, +/obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/offship/dominia/voidsman{ - mask = /obj/item/clothing/mask/gas/half - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"iil" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"inJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = -25; - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -24; - dir = 4; - pixel_y = -6; - req_access = list(212) - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"inN" = ( -/obj/effect/floor_decal/corner/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"ioW" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 +/area/ship/dominian_corvette/infirmary) +"iEY" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"iGr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"iJi" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" }, -/obj/item/hullbeacon/red, -/obj/effect/map_effect/map_helper/ruler_tiles_3{ +/area/ship/dominian_corvette/bridge) +"iJz" = ( +/obj/machinery/power/apc/high/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"iKq" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/engineering/reactor) +"iNt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ dir = 4 }, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"ipe" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/sink{ - pixel_y = 31 +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"iOL" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/ship/dominian_corvette/propulsion) +"iPH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"iRD" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"iRJ" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_midship" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: BLAST DOOR'."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"iTz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"irg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"iTC" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, port docking" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/docking/port) +"iTW" = ( /obj/structure/table/reinforced/steel, -/obj/item/device/radio/intercom/east, -/obj/item/paper_bin{ - pixel_y = 3; +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/red{ pixel_x = 4 }, -/obj/item/pen/black{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/floor_decal/spline/plain/white{ + dir = 4 }, -/obj/item/lore_radio{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"irC" = ( -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/structure/sign/flag/dominia{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"irI" = ( -/obj/effect/floor_decal/spline/plain/beige{ - dir = 9 - }, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 +/obj/machinery/button/distress{ + pixel_x = 7; + pixel_y = -1 }, /turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"isd" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/area/ship/dominian_corvette/cic) +"iUc" = ( +/obj/item/storage/box/produce, +/obj/item/storage/box/produce, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/fish/mollusc, +/obj/item/reagent_containers/food/snacks/fish/mollusc, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/storage/box/condiment{ + pixel_y = 13 }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"iwa" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"ixH" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1; - pixel_x = 1 - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/closet/secure_closet/refrigerator/standard, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"iVM" = ( +/obj/machinery/door/airlock/command{ + name = "Ensign's Quarters"; + req_access = list(212) }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(212); - name = "Chapel" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/chapel) -"iyU" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/dominian_corvette/telecomms) -"iyY" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/docking_arm) -"izm" = ( -/obj/machinery/vending/cigarette/hacked, -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/service, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"izV" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/box/bodybags{ - pixel_y = 3; - pixel_x = -7 - }, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/storage/box/syringes{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"iAc" = ( -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Carbon Dioxide Supply Monitor"; - dir = 8; - req_access = list(212) - }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_port"; - master_tag = "dominia_co2_port" - }, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"iBg" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - name = "Fuel Tank Recycling Pump"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"iDl" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"iEr" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/telecomms) -"iGd" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"iGu" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - dir = 8; - req_access = list(212); - name = "Starboard Gunnery" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"iGG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/full, -/area/dominian_corvette/thrust_port) -"iGW" = ( -/obj/machinery/light/small/red{ - dir = 1 - }, -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"iHp" = ( -/obj/machinery/telecomms/allinone/ship, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/dominian_corvette/telecomms) -"iHI" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, crew lounge" - }, -/turf/simulated/floor, -/area/dominian_corvette/lounge) -"iIv" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"iKD" = ( -/obj/machinery/computer/ship/engines/terminal{ - dir = 4; - req_access = list(212) +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/officer) +"iWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"iMj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/empty{ - name = "waste canister" - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"iNM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"iNW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"iPG" = ( -/obj/machinery/shieldgen, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"iRR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"iTT" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/light, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) +/area/ship/dominian_corvette) "iWi" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"iWj" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrow/service{ - pixel_y = -7; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"iWp" = ( -/obj/item/blueprints, -/obj/item/pen/drafting/blue{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"jaR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"jcj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"jcw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"jeM" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/offship/dominia{ - mask = /obj/item/clothing/mask/gas/half - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"jjJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrow/red{ - pixel_x = -2 - }, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"joh" = ( -/obj/structure/closet/secure_closet/cabinet{ +/obj/machinery/door/airlock/glass_security{ + name = "Cell"; req_access = list(212); - pixel_x = -1; - name = "Personal Equipment" + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/item/clothing/under/dominia/priest, -/obj/item/clothing/accessory/poncho/dominia/red, -/obj/item/clothing/head/beret/dominia/priest, -/obj/item/flame/lighter/zippo/dominia, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fo_cabin) -"jpi" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"jtC" = ( -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/dominian_shuttle) -"jvJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/dirt_75, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"jwV" = ( -/obj/structure/table/stone/marble, -/obj/structure/sign/painting_frame/goddess/scholar, -/obj/structure/sign/painting_frame/goddess/artisan{ - pixel_x = -17; - pixel_y = 5 - }, -/obj/structure/sign/painting_frame/goddess/soldier{ - pixel_x = 17; - pixel_y = 4 - }, -/obj/structure/sign/painting_frame/goddess{ +/area/ship/dominian_corvette/armory) +"iXb" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/flag/dominia{ pixel_y = 32 }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"jxK" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"jBs" = ( -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/effect/floor_decal/corner/red{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fc_port) -"jCC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"jEg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = -25; dir = 4 }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"jfa" = ( +/obj/structure/railing/mapped{ + icon_state = "railing0-0"; + density = 0; + pixel_y = -10 + }, +/obj/effect/floor_decal/spline/plain/white, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"jhH" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/glass/reinforced, +/obj/item/stack/rods/full, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/item/stack/material/lead/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/plastic/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"jhJ" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"jim" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor, /area/shuttle/dominian_shuttle) -"jFX" = ( -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/dominian_corvette/exterior) +"jpw" = ( +/obj/machinery/power/apc/north{ + req_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"jpO" = ( +/obj/structure/table/standard, +/obj/item/melee/whip, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"jrv" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, starboard docking" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/docking) +"juM" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"jwV" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking/port) +"jxG" = ( +/obj/effect/floor_decal/corner{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) "jGb" = ( /obj/effect/floor_decal/corner{ dir = 6 }, -/obj/structure/sign/flag/dominia/large/east{ - dir = 4; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"jIf" = ( -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline_straight/grey{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_straight/grey{ - dir = 4 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"jIN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"jJr" = ( -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/brig) -"jLv" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Thrusters to Canister"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"jLV" = ( +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"jHZ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"jJa" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"jNy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"jQB" = ( -/obj/structure/closet/walllocker/medical/secure{ - pixel_y = -32; - req_access = list(212); - name = "Surgical Closet" +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 28; + pixel_x = -6 }, -/obj/item/tank/anesthetic, -/obj/item/tank/oxygen, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/clothing/mask/breath/medical, -/obj/effect/floor_decal/corner/green{ - dir = 10 +/obj/machinery/airlock_sensor{ + pixel_y = 28; + pixel_x = 6 }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"jTd" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/cryogenics) -"jTh" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1; - pixel_x = -2 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/chapel) -"jTv" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/outline_straight/grey{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline_straight/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"jXM" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/vending/wallmed1{ - pixel_y = 32; - req_access = list(212) - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/dominian_shuttle) -"kaL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"kbm" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/fo_office) -"kco" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking) +"jKA" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -24 }, /obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) }, -/obj/machinery/access_button{ - pixel_x = 25; - pixel_y = 30; +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ dir = 8 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"kcV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"jLX" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/franny) +"jMx" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, atmospherics" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering/atmos) +"jTb" = ( +/obj/structure/ship_weapon_dummy/barrel, +/obj/structure/ship_weapon_dummy/barrel, +/turf/template_noop, +/area/ship/dominian_corvette/cannon) +"jTL" = ( +/obj/effect/floor_decal/corner{ + dir = 8 + }, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"kdb" = ( -/obj/structure/sign/flag/dominia/large/south{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"keA" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"kfr" = ( -/obj/machinery/alarm/freezer/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/freezer) -"khF" = ( -/obj/machinery/vending/engivend{ - req_access = list(212) - }, -/obj/effect/floor_decal/corner/orange/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"khR" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"kjg" = ( -/obj/effect/floor_decal/corner/full{ - dir = 4 - }, /turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"kln" = ( -/obj/structure/closet/crate/drop/grey, -/obj/item/clothing/under/rank/medical/surgeon/zavod, -/obj/item/storage/backpack/duffel/med, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical, -/obj/item/reagent_containers/hypospray, -/obj/item/clothing/accessory/stethoscope, -/obj/item/device/mass_spectrometer, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/material/stool/chair/wheelchair, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"klE" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ +/area/ship/dominian_corvette/temple) +"jVp" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"koq" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/helm) -"koL" = ( -/obj/effect/floor_decal/spline/plain/beige{ - dir = 5 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/computer/ship/engines/terminal{ - dir = 8; - req_access = list(212) - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"kqn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"jXM" = ( /obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"ksW" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ dir = 4 }, -/obj/item/device/binoculars{ - pixel_y = 5; - pixel_x = -1 +/obj/effect/floor_decal/corner/red{ + dir = 6 }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = -13; - pixel_x = 1 - }, -/obj/item/clothing/glasses/safety/goggles{ - pixel_y = -16; - pixel_x = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"ktK" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm/freezer/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"kxH" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 8; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"kyl" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/magazine_starboard) -"kyD" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"kaR" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Recreation Area" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -5493,7268 +2889,3774 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"kze" = ( -/obj/structure/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/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"kCl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy/barrel, -/turf/space/dynamic, -/area/dominian_corvette/docking_arm) -"kCJ" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = -8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/galley) -"kDa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"kEk" = ( -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_port) -"kEn" = ( -/obj/structure/ladder/up{ - pixel_y = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"kEX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/door/firedoor/noid{ dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"kFF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette) +"ked" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/infirmary) +"kfX" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"kis" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"kjg" = ( +/obj/structure/closet, +/obj/item/clothing/accessory/storage/pouches/black, +/obj/item/clothing/accessory/storage/pouches/black, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/full{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/item/clothing/accessory/storage/pouches/black, +/obj/item/clothing/accessory/storage/pouches/black, +/obj/item/material/knife/trench, +/obj/item/material/knife/trench, +/obj/item/material/knife/trench, +/obj/item/material/knife/trench, +/obj/item/material/knife/trench, +/obj/item/material/knife/trench, +/obj/item/clothing/head/dominia/fleet, +/obj/item/clothing/head/dominia/fleet, +/obj/item/clothing/head/dominia/fleet, +/obj/item/clothing/head/dominia/fleet/armsman, +/obj/item/clothing/under/dominia/fleet, +/obj/item/clothing/under/dominia/fleet, +/obj/item/clothing/under/dominia/fleet, +/obj/item/clothing/under/dominia/fleet/armsman, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"kkj" = ( +/obj/machinery/telecomms/allinone/ship, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/ship/dominian_corvette/engineering/reactor) +"klE" = ( +/obj/structure/closet/walllocker/medical/secure{ + pixel_y = -32 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"kJk" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/south{ - req_access = list(212) +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 21 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"kJT" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 1; - req_access = list(212) +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"kni" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/bridge) +"kqx" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_midship" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"kKN" = ( -/obj/structure/bed/stool/chair/office/dark{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"krq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/alarm/east{ + req_one_access = list(212) + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"krt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"krH" = ( +/obj/machinery/appliance/cooker/stove, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"kKZ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -24; - dir = 4; - pixel_y = -6; - req_access = list(212) +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"kyc" = ( +/obj/machinery/shower{ + pixel_y = 21 }, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = -25; +/obj/structure/curtain/open/shower, +/obj/random/soap, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/officer) +"kyi" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion/port) +"kze" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"kOX" = ( -/obj/structure/closet/hazmat/custodial, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/alarm/north{ - req_one_access = null; +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"kzm" = ( +/obj/machinery/power/apc/north{ req_access = list(212) }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"kPs" = ( -/obj/structure/table/stone/marble, -/obj/item/flame/candle{ - pixel_y = 6; - pixel_x = 10 +/obj/effect/floor_decal/corner{ + dir = 5 }, -/obj/item/flame/candle{ - pixel_y = 6; - pixel_x = -2 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/flame/candle{ - pixel_y = 2; - pixel_x = 4 +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"kAa" = ( +/obj/machinery/computer/ship/helm{ + req_access = list(212) }, /obj/structure/sign/flag/dominia{ pixel_y = 32 }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"kQe" = ( -/obj/effect/floor_decal/industrial/warning/cee, -/obj/effect/floor_decal/industrial/hatch_small/yellow, -/obj/machinery/power/terminal{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"kAt" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/ship_ammunition/lammergeier, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 10 + }, +/obj/item/ship_ammunition/lammergeier{ + pixel_y = 5 + }, +/obj/item/ship_ammunition/lammergeier, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"kAE" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"kBs" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"kDV" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"kGF" = ( +/obj/machinery/airlock_sensor{ + frequency = 1441; + pixel_x = -22; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 1 }, -/obj/structure/cable/green{ +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor, +/area/shuttle/dominian_shuttle) +"kIy" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/device/binoculars{ + pixel_y = 5 + }, +/obj/machinery/vending/wallmed1{ + name = "Medical Supplies"; + pixel_x = 32; + req_access = null + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"kII" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/airless, +/area/shuttle/dominian_shuttle) +"kJL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"kLr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"kLY" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"kOL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"kPs" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion) +"kRG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/closet/walllocker/medical/secure{ + pixel_x = -32 + }, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical/paramedic, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/auto_cpr, +/obj/item/auto_cpr, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -8 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"kSg" = ( +/obj/structure/railing/mapped{ + icon_state = "railing0-0"; + density = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 8 + }, +/area/ship/dominian_corvette/cic) +"kTJ" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, port docking" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/docking/port) +"kUR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"kWO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion/port) +"kZr" = ( +/obj/structure/railing/mapped, +/obj/structure/closet/walllocker/emerglocker/south{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"lfC" = ( +/mob/living/heavy_vehicle/premade/ripley/loader, +/obj/machinery/mech_recharger, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"lhk" = ( +/obj/machinery/computer/ship/engines, +/obj/effect/floor_decal/spline/plain/white{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"lhK" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/cic) +"liI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"liN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"lme" = ( +/obj/effect/shuttle_landmark/dominian_corvette/nav4, +/turf/template_noop, +/area/space) +"lnx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"lpa" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"lpl" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/eva) +"lpF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"lri" = ( +/obj/structure/toilet{ + pixel_y = 21 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/officer) +"lsu" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/propulsion/port) +"ltv" = ( +/obj/effect/floor_decal/corner{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"ltw" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_temple" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"lug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"luJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"luU" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_temple" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"lwX" = ( +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"lCA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"lGD" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, secondary armament" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/franny) +"lGR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"lGZ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle{ + spawn_firedoor = 1; + spawn_grille = 1; + color = "#E14644"; + frame_color = "#E14644" + }, +/obj/effect/landmark/entry_point/aft{ + name = "aft, cockpit" + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"lHx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"lKG" = ( +/obj/structure/table/wood, +/obj/item/toy/comic/witchfinder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 10 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"lMJ" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_midship" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: BLAST DOOR'."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"lNZ" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"lPG" = ( +/obj/machinery/ship_weapon/francisca{ + pixel_x = -64; + pixel_y = -162; + weapon_id = "Dominian Francisca Rotary Gun" + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/airless, +/area/ship/dominian_corvette/franny) +"lXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"mbl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"mcJ" = ( +/obj/machinery/vending/engivend{ + req_access = list(212) + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"mfW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"mgC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"mit" = ( +/obj/effect/shuttle_landmark/dominian_corvette/nav1, +/turf/template_noop, +/area/space) +"mjR" = ( +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"mno" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/white{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"mpK" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/hangar) +"mqx" = ( +/obj/effect/map_effect/window_spawner/full/shuttle{ + spawn_firedoor = 1; + spawn_grille = 1; + color = "#E14644"; + frame_color = "#E14644" + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"mqS" = ( +/obj/structure/table/stone/marble, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/flame/candle, +/obj/item/nullrod/dominia, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"mwP" = ( +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/clothing/mask/breath/medical, +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_y = -32; + req_access = list(207) + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"myM" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = 12; + pixel_y = 28; + dir = 4 + }, +/obj/effect/shuttle_landmark/dominian_corvette/dock/port{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking/port) +"mCr" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, cell" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/armory) +"mEE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"mET" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 4 + }, +/area/ship/dominian_corvette/temple) +"mFl" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgical Suite"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"mIW" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/structure/platform/ledge, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"mIY" = ( +/obj/structure/bed/stool/chair/padded/black, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"mJZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"mLa" = ( +/obj/structure/table/steel, +/obj/machinery/vending/wallmed1{ + pixel_y = 27 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -1 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 2 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/large/adv, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"mRY" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/head) +"mSp" = ( +/obj/structure/extinguisher_cabinet/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"mSt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"mZy" = ( +/obj/machinery/power/smes/buildable/third_party_shuttle, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"nbQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"ncl" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"ncB" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"ndu" = ( +/obj/structure/railing/mapped{ + icon_state = "railing0-0"; + density = 0; + pixel_y = -10 + }, +/obj/machinery/alarm/west{ + req_one_access = list(212) + }, +/obj/effect/floor_decal/spline/plain/white, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"ndQ" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"niu" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/ship/dominian_corvette/janitor) +"nke" = ( +/obj/structure/closet/walllocker{ + pixel_y = -32; + name = "radiation suit locker" + }, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/glasses/safety/goggles, +/obj/item/device/geiger, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"nmS" = ( +/obj/item/reagent_containers/toothpaste{ + pixel_x = -2 + }, +/obj/item/reagent_containers/toothbrush/red{ + name = "disposable toothbrush"; + pixel_y = 8 + }, +/obj/item/reagent_containers/toothbrush/red{ + name = "disposable toothbrush"; + pixel_y = 8 + }, +/obj/item/reagent_containers/toothpaste{ + pixel_x = -2 + }, +/obj/item/reagent_containers/toothpaste{ + pixel_x = -2 + }, +/obj/item/reagent_containers/toothbrush/red{ + name = "disposable toothbrush"; + pixel_y = 8 + }, +/obj/random/soap, +/obj/random/soap, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/structure/closet/walllocker{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"nnQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"noq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"ntt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"nuE" = ( +/obj/effect/floor_decal/corner, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"nuI" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/armory) +"nva" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"nvs" = ( +/obj/structure/coatrack{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"nwx" = ( +/obj/machinery/alarm/south{ + req_one_access = list(212) + }, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"nAn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"nBv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/janitor) +"nDC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"nEY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Atmospherics"; + req_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"nJS" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"nKv" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Atmospherics"; + req_one_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "dominian_corvette_cic" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"nMr" = ( +/obj/machinery/power/apc/high/north{ + req_access = list(212) + }, +/obj/structure/cable{ d2 = 4; icon_state = "0-4" }, -/turf/simulated/floor/reinforced, -/area/shuttle/dominian_shuttle) -"kRt" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"kSJ" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/red{ - dir = 4; - req_access = list(212); - name = "Crew Quarters" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/lounge) -"kUW" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1; - name = "Canister to Fuel Tank" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"kVY" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/gunnery_starboard) -"kXq" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/cargo) -"kYB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"kYC" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffee{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/dom, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"kYK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"nOX" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/propulsion) +"nQE" = ( +/obj/structure/bed/stool/chair{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"kZd" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"lbC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"lfY" = ( -/obj/effect/floor_decal/industrial/outline_corner/custodial{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/custodial{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline_segment/custodial, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/custodial) -"lfZ" = ( -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/docking_arm) -"lkf" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"lkV" = ( -/obj/item/stack/material/glass/phoronrglass/full{ - pixel_y = 6 - }, -/obj/item/stack/material/graphite{ - amount = 50; - pixel_y = 6 - }, -/obj/item/stack/material/wood/full, -/obj/item/stack/material/plasteel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/rods/full, -/obj/item/stack/material/glass/reinforced/full, -/obj/item/stack/material/aluminium/full, -/obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/engineering) -"llk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"llB" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"lpc" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"lqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/red{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/flag/dominia/large/north{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"lqF" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"lrs" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"luI" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"luU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"lwX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"lxB" = ( -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"lxR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/command/gold{ - dir = 4; - req_access = list(212); - name = "Commanding Officer's Quarters" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/co_office) -"lxU" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"lzs" = ( -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_port) -"lDm" = ( -/obj/structure/platform_deco/dark{ - dir = 1 - }, -/obj/structure/platform_deco/dark{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"lFc" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"lFp" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/co_office) -"lFs" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/red{ - req_access = list(212); - name = "Bunks" - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/bunks) -"lHp" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"lIz" = ( -/obj/structure/table/wood, -/obj/structure/sign/painting_frame/goddess/soldier{ - pixel_y = 32 - }, -/obj/item/towel_flat{ - pixel_y = 8; - color = "#592720"; - name = "linen cloth"; - desc = "A red linen cloth with the Tribunal Eye sewn at its centre." - }, -/obj/item/flame/candle{ - pixel_y = 3; - pixel_x = -10 - }, -/obj/item/flame/candle{ - pixel_y = 3; - pixel_x = 10 - }, -/obj/item/material/knife/trench{ - pixel_y = 6; - pixel_x = 2 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"lJB" = ( -/obj/effect/landmark/entry_point/starboard, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"lJC" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"lKN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"lMr" = ( -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_starboard) -"lOp" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"lRG" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/access_button{ - pixel_x = 30; - pixel_y = 8; - dir = 1; - req_access = list(212) - }, -/obj/machinery/button/remote/blast_door{ - name = "Airlock Lockdown"; - pixel_x = -30; - pixel_y = 10; - req_access = list(212); - id = "dominia_shuttle_airlock" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "dominia_shuttle_airlock" - }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/obj/effect/landmark/entry_point/aft, -/turf/simulated/floor/tiled/gunmetal/full, -/area/shuttle/dominian_shuttle) -"lRW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"lUi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/area/ship/dominian_corvette) +"nSs" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"lUC" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fc_starboard) -"lVB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"lXK" = ( -/obj/structure/sign/flag/dominia/large/north{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"man" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/carafe{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/tea/tieguanyin{ - desc = "A tin bearing the logo of a Dominian tea company located on Sun Reach. This one contains a bag of tieguanyin, a type of oolong tea."; - desc_info = null; - pixel_x = 14; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/carafe{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"mbl" = ( -/obj/structure/bed/padded/bunk, -/obj/structure/bed/padded, -/obj/item/bedsheet/black{ - pixel_y = 16 - }, -/obj/item/bedsheet/black, -/obj/outfit/admin/imperial_fleet_voidsman, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"mcH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_port) -"mcV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"mdq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"mgN" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"mhj" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"mia" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"mmS" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/hailing{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"mmZ" = ( -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"mno" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 4 - }, -/obj/structure/platform_deco/dark{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain/corner, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"moK" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, co cabin" - }, -/turf/simulated/floor, -/area/dominian_corvette/co_office) -"mqx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"mru" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"mtk" = ( -/obj/effect/shuttle_landmark/dominian_corvette/nav4{ - dir = 8 - }, -/turf/template_noop, -/area/space) -"muj" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"muk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/coatrack{ - pixel_x = 9; - pixel_y = 14 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"mvN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/armoury) -"mwg" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/docking_arm) -"mwv" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2"; - d1 = 1; - d2 = 2 - }, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Nuclear Reactor Compartment" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "reactor_lockdown" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/reactor) -"mwQ" = ( -/obj/structure/bed/padded/bunk, -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/item/bedsheet/brown{ - pixel_y = 16 - }, -/obj/random/dirt_75, -/obj/outfit/admin/imperial_fleet_voidsman/armsman, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"mwV" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/toy/comic/witchfinder{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/storage/box/fancy/cigarettes/dromedaryco{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/flag/imperial_frontier{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"mxn" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_starboard, -/obj/machinery/access_button{ - pixel_x = -26; - pixel_y = -28; - dir = 4; - req_access = list(212) - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"mxF" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"myM" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/obj/structure/platform/cutout/dark, -/obj/structure/platform/ledge/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/dominian_corvette/helm) -"mzE" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"mAf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/shuttle/dominian_shuttle) -"mAt" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/arrow/service{ - pixel_y = -7 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"mBS" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/mob/living/heavy_vehicle/premade/ripley/loader{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"mCr" = ( -/obj/structure/coatrack{ - pixel_x = -10 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"mCK" = ( -/obj/structure/bed/stool/chair/sofa/left/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"mDg" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, xo cabin" - }, -/turf/simulated/floor, -/area/dominian_corvette/fo_cabin) -"mDz" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fc_port) -"mFI" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/random/dirt_75, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"mFJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"mGe" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"mGk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/directions/custodial{ - dir = 8; - pixel_y = 39; - pixel_x = -32 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"mHX" = ( -/obj/structure/closet/secure_closet/cabinet{ - req_access = list(212); - pixel_x = -1 - }, -/obj/item/clothing/under/dominia/fleet, -/obj/item/clothing/under/dominia/fleet, -/obj/item/clothing/under/dominia/fleet/armsman, -/obj/item/clothing/under/dominia/fleet/armsman, -/obj/item/clothing/head/dominia/fleet, -/obj/item/clothing/head/dominia/fleet, -/obj/item/clothing/head/dominia/fleet/armsman, -/obj/item/clothing/head/dominia/fleet/armsman, -/obj/item/clothing/accessory/poncho/dominia_cape/mantle, -/obj/item/clothing/accessory/poncho/dominia_cape/mantle, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/item/clothing/accessory/flagpatch/dominia, -/obj/effect/floor_decal/industrial/outline/service, -/obj/item/flame/lighter/zippo/dominia, -/obj/item/flame/lighter/zippo/dominia, -/obj/item/flame/lighter/zippo/dominia, -/obj/item/flame/lighter/zippo/dominia, -/obj/structure/sign/flag/dominia/large/north{ - pixel_y = 32 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"mIn" = ( -/obj/structure/closet/walllocker/medical/secure{ - req_access = list(212); - pixel_x = 32 - }, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath/medical, -/obj/item/vitals_monitor, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/deployable_kit/iv_drip, -/obj/item/roller, -/turf/simulated/floor/tiled/white, -/area/shuttle/dominian_shuttle) -"mIP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"mIY" = ( -/obj/effect/floor_decal/corner/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"mJt" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"mJK" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"mKC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"mKS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"mLa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"mMc" = ( -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"mNi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"mNy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"mPz" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"mRG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"mRQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"mSp" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"mSt" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/freezer{ - name = "Freezer"; - req_access = list(212) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/freezer) -"mSC" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"mTN" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"mVw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"mWe" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"nbH" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"ncl" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/morgue) -"nfs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"nfD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/armoury) -"nfF" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/atmos{ - dir = 8 - }, -/obj/machinery/sparker{ - id = "dominia_igniter_port"; - pixel_x = -10 - }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_port"; - master_tag = "dominia_co2_port" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_port) -"ngd" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1; - pixel_x = -2 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"nhf" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"nhD" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, port thrusters" - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_port) -"nhX" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/closet/secure_closet/refrigerator, -/obj/item/storage/box/produce, -/obj/item/storage/box/produce, -/obj/item/storage/box/fancy/egg_box, -/obj/item/storage/box/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"niF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"njJ" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"nke" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"nkE" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/galley) -"nmm" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_co2_starboard" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"nmC" = ( -/obj/effect/floor_decal/corner/orange, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"nnx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"nps" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"nrb" = ( -/obj/effect/decal/cleanable/floor_damage/wood_broken7, -/obj/random/dirt_75, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"nso" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"nta" = ( -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/machinery/computer/shuttle_control/multi/lift/dominian_corvette{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"nvu" = ( -/obj/structure/platform_deco/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"nwx" = ( -/obj/effect/map_effect/map_helper/ruler_tiles_3, -/turf/template_noop, -/area/space) -"nzP" = ( -/obj/structure/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"nBE" = ( -/obj/effect/shuttle_landmark/lift/dominia_first_deck, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"nCS" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/fo_cabin) -"nDC" = ( -/obj/effect/map_effect/map_helper/ruler_tiles_3{ - dir = 4 - }, -/turf/template_noop, -/area/space) -"nFf" = ( -/obj/machinery/computer/ship/targeting/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"nFv" = ( -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"nFA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - req_access = list(212); - name = "Portside Thruster Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/thrust_starboard) -"nGd" = ( -/obj/effect/floor_decal/industrial/outline_corner/custodial{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/custodial{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline_segment/custodial{ - dir = 1 - }, -/obj/structure/janitorialcart/full/water{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"nGz" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_co2_starboard" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"nGH" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"nIC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"nIE" = ( -/obj/structure/bed/stool/chair/sofa/right/black, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/synthesized_instrument/guitar{ - pixel_y = 2; - pixel_x = 3 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"nJj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/offship/dominia{ - mask = /obj/item/clothing/mask/gas/half - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"nJX" = ( +/area/ship/dominian_corvette/hangar) +"nTU" = ( /obj/structure/closet/secure_closet/guncabinet{ - name = "Pilot's Locker"; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/head/helmet/pilot, -/obj/item/clothing/head/helmet/pilot, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -2 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/device/binoculars, -/obj/item/device/binoculars/high_power, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"nKq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"nMj" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"nMM" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"nNc" = ( -/obj/structure/bed/roller, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/medical/dark_green, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"nNN" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/hydroponics) -"nOh" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/obj/machinery/access_button{ - pixel_y = -30; - dir = 4; req_access = list(212); - pixel_x = 5 + name = "gun cabinet (rifles)" }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"nPF" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/outline/security, +/obj/item/gun/projectile/automatic/rifle/dominia, +/obj/item/gun/projectile/automatic/rifle/dominia, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/item/ammo_magazine/a556, +/obj/item/ammo_magazine/a556, +/obj/item/ammo_magazine/a556, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"nXd" = ( +/obj/structure/sink{ + pixel_y = 21 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"nYM" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/flag/dominia{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"ocx" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"nSI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"nTe" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"nUe" = ( -/obj/machinery/shower{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/bathroom) -"nUP" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"ocM" = ( +/obj/machinery/power/apc/high/south, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion) +"ogz" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/obj/item/device/versebook/tribunal, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"opa" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/corner/red/full{ dir = 4 }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"orm" = ( +/obj/machinery/computer/shuttle_control/explore/dominian_shuttle, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"owG" = ( +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"oAQ" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"oBB" = ( +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 4; + target_pressure = 250 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"oBD" = ( +/obj/machinery/shipsensors, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/ship/dominian_corvette/bridge) +"oBX" = ( +/obj/machinery/vending/cigarette/hacked{ + name = "Alterim Tobacco Corporation machine" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"oDq" = ( +/obj/structure/sink{ + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"oFS" = ( +/obj/structure/bed/stool/padded/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"nWB" = ( -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"nYf" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_y = 8; - pixel_x = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/brig) -"nZL" = ( -/obj/structure/cable/green{ + d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"oaa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"oHv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"oLC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"oNi" = ( +/obj/machinery/power/apc/south{ + req_access = list(212) + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/yellow{ dir = 10 }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"oaE" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"ocM" = ( -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"odC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"oej" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"ofE" = ( -/obj/structure/sign/flag/dominia/large/south{ - pixel_y = -32 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"ogc" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/hangar) -"oge" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/area/ship/dominian_corvette/engineering) +"oNR" = ( +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"ogq" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/seed_storage/garden{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"ojk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/light/small{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"okw" = ( -/obj/machinery/power/emitter{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"olk" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Personal Arms" - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/accessory/armor_plate/heavy/dominia, -/obj/item/clothing/head/helmet/dominia/nco, -/obj/item/gun/projectile/pistol/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/shield/energy/dominia, -/obj/item/melee/energy/sword/pirate/generic, -/obj/item/storage/belt/military, -/obj/item/clothing/accessory/storage/pouches/black, -/obj/item/material/knife/bayonet, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/co_cabin) -"olX" = ( -/obj/machinery/computer/shuttle_control/multi/lift/dominian_corvette{ - pixel_y = 10 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"omt" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/shuttle_control/explore/terminal/dominian_shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"omv" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"omy" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"onn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"oPa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"oQe" = ( +/obj/machinery/atmospherics/unary/engine, /turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"onG" = ( -/obj/structure/closet/crate/secure, -/obj/item/storage/box/dominia_honor, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/sticker/religious/tribunal, -/obj/item/sticker/religious/tribunal, -/obj/item/sticker/religious/tribunal, -/obj/item/sticker/religious/tribunal, -/obj/item/sticker/religious/tribunal, -/obj/effect/floor_decal/corner_wide/yellow{ +/area/ship/dominian_corvette/propulsion) +"oVO" = ( +/obj/machinery/sleeper, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/flag/dominia/large/north{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/paleblue{ dir = 5 }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"ooB" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/roller_rack, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "surgery cleaner"; - pixel_x = 4; - pixel_y = -16 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_y = -14; - pixel_x = 10 - }, -/obj/item/storage/box/sharps{ - pixel_x = -6; - pixel_y = -14 - }, /turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"opu" = ( -/obj/machinery/light/small{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"ovI" = ( -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"ovU" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - req_access = list(212); - name = "Bridge" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"owC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - req_access = list(212); - name = "Exterior Systems Access" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/thrust_port) -"ozh" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/infirmary) -"ozk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/area/ship/dominian_corvette/infirmary) +"oWU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking) +"oXP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"oXW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/bottle/dominian_wine, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/janitor) +"oYG" = ( +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"oZv" = ( +/obj/structure/platform/ledge, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"oZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"paP" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm/north{ + req_one_access = list(212) + }, +/obj/machinery/power/apc/high/west{ + req_access = list(212) + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"pcl" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/engineering) +"pdm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Reactor Room" + }, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/engineering) +"pfE" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/docking/port) +"phv" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/franny) +"piA" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"pnY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"pvH" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/cic) +"pwl" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Tribunal Chapel"; + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette) +"pxu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"ozw" = ( -/obj/machinery/atmospherics/portables_connector/scrubber{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/empty{ - name = "waste canister" - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"oAx" = ( -/obj/structure/platform_deco/dark{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"oAQ" = ( -/obj/effect/floor_decal/corner/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"oCa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"oFx" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"oFT" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, -/obj/machinery/door/blast/shutters/open{ - id = "dominia_shuttle_windows" - }, -/obj/effect/landmark/entry_point/fore, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"oGX" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"oHj" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, cafeteria" - }, -/turf/simulated/floor, -/area/dominian_corvette/galley) -"oHo" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"oOE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; +/obj/structure/cable{ d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"oOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"oPp" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/bathroom) -"oPG" = ( -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"oQe" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"oTw" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"oTN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/docking_arm) -"oUi" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_fc_window_port"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fc_port) -"oXz" = ( -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"pcc" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/bottle/algae_wine{ - pixel_y = 8; - pixel_x = -6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"pdo" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"peb" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"pee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"peq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/corner/orange/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"pew" = ( -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"pff" = ( -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/brown/diagonal, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 1 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"pgu" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(212); - name = "Custodial Closet" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/custodial) -"pgw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"pgM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"pia" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Support Ammunition" - }, -/obj/item/ammo_magazine/a556/dlmg, -/obj/item/ammo_magazine/a556/dlmg, -/obj/item/ammo_magazine/boltaction, -/obj/item/ammo_magazine/boltaction, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ammo_magazine/submachinemag, -/obj/item/ammo_magazine/submachinemag, -/obj/item/ammo_magazine/submachinemag, -/obj/item/ammo_magazine/submachinemag, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"pkK" = ( -/obj/random/dirt_75, -/obj/structure/sign/flag/dominia/large/south{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"pmh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"pms" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/telecomms) -"pmE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/radio/intercom/hailing/west, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/device/radio/hailing{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"pmZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"pnH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"ppz" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - req_access = list(212); - name = "EVA Preperation"; - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"pqD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"ptm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"pvI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"pww" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline_corner/grey, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"pwW" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"pxL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"pxM" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"pyi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"pzw" = ( -/obj/machinery/computer/ship/targeting/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"pAh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/co_office) -"pAL" = ( -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fc_starboard) -"pBk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"pBl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"pBz" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, helm" - }, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/helm) -"pDu" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"pDR" = ( -/obj/effect/floor_decal/industrial/outline_corner/grey, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/random/dirt_75, + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"pyr" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"pFj" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 6 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"pHx" = ( -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/warning{ +/area/ship/dominian_corvette/hangar) +"pAh" = ( +/obj/machinery/computer/ship/navigation{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/corner/red{ dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/full, -/area/dominian_corvette/thrust_starboard) -"pIE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"pCa" = ( +/obj/machinery/power/apc/high/north{ + req_access = list(212) }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"pKs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/railing/mapped, +/obj/structure/sign/flag/caladius{ + pixel_x = 32 }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"pCT" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/engineering/atmos) +"pDZ" = ( +/obj/machinery/optable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/light{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"pKL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"pLf" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/effect/floor_decal/corner/paleblue{ dir = 5 }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"pLQ" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"pGp" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, primary armament" }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/cannon) +"pIf" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"pIS" = ( +/obj/structure/table/steel, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/item/pen/drafting, +/obj/item/blueprints, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"pJj" = ( +/obj/item/sign/painting_frame/goddess/soldier{ + pixel_x = 32 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor, -/area/dominian_corvette/helm) +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"pKp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"pLf" = ( +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking/port) +"pLQ" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) "pMz" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 8 - }, -/obj/structure/platform_deco/dark{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"pPr" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/fc_port) -"pQl" = ( -/obj/effect/shuttle_landmark/dominian_corvette/nav2, -/turf/template_noop, -/area/space) +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/docking) "pRf" = ( /obj/effect/step_trigger/teleporter, /turf/space, /area/space) "pRO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 4; - pixel_x = -4 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"pRU" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/machinery/light{ +/obj/structure/sign/flag/dominia/large/east{ dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"pTK" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; +/turf/simulated/wall, +/area/ship/dominian_corvette/officer) +"pSw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"pTL" = ( -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/freezer) -"pUM" = ( -/obj/effect/floor_decal/corner{ - dir = 6 + d2 = 8; + icon_state = "4-8" }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"pVk" = ( /obj/structure/sign/flag/dominia{ - pixel_x = 32 + pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 4 }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"pVh" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"pWm" = ( -/obj/structure/platform/dark{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"pWv" = ( -/obj/machinery/atmospherics/binary/pump/scrubber/on{ - dir = 1; - target_pressure = 15000; - name = "Scrubbers to Canister" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/red{ - dir = 4; - pixel_x = 3 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"pXP" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout/dark{ - dir = 8 - }, -/obj/structure/platform/ledge/dark{ +/obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/dominian_corvette/helm) -"pYG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/ship/dominian_corvette) +"pXx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/spline/plain/yellow{ dir = 1 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/freezer{ - dir = 1; - name = "Morgue"; - req_access = list(212) - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/morgue) -"pYS" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8 - }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_port"; - master_tag = "dominia_co2_port" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_port) -"pZt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/airless, -/area/dominian_corvette/atmospherics) -"qad" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"qaN" = ( -/obj/machinery/button/remote/blast_door{ - id = "dominia_co2"; - name = "Chamber Blast Doors"; - pixel_y = 35; - pixel_x = -3; - dir = 9 - }, -/obj/machinery/button/ignition{ - id = "dominia_igniter_port"; - pixel_y = 36; - dir = 8; - pixel_x = 5 - }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"pXP" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"pYB" = ( +/obj/structure/table/stone/marble, /obj/structure/railing/mapped{ - dir = 1 + dir = 4 + }, +/obj/item/device/versebook/tribunal, +/obj/item/flame/candle, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"qaN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/light, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"qbw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"qaS" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, -/obj/machinery/door/blast/shutters/open{ - id = "dominia_shuttle_windows" - }, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"qbw" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/folder/red{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/pen/fountain{ - pixel_y = 6; - pixel_x = -6 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 3; - pixel_x = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"qcn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"qcD" = ( -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"qfg" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + id_tag = "ssmd_shuttle_in"; dir = 1; - pixel_x = 1 + frequency = 1441 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(212); - name = "Mess Hall" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"qgD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/table/steel, /turf/simulated/floor, -/area/dominian_corvette/eva_prep) -"qhe" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_starboard) -"qhk" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ +/area/shuttle/dominian_shuttle) +"qdL" = ( +/obj/machinery/door/airlock/service{ + name = "Private Bathroom"; + req_access = list(212); dir = 1 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"qkd" = ( -/obj/machinery/vending/tool{ - req_access = list(212) - }, -/obj/effect/floor_decal/corner/orange{ +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/officer) +"qfg" = ( +/obj/effect/floor_decal/corner{ dir = 10 }, -/obj/effect/floor_decal/industrial/hatch/engineering, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"qkn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner{ + dir = 5 }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"qmG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy/barrel, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_starboard) -"qnz" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"qoz" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/obj/effect/shuttle_landmark/dominian_shuttle/hangar{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 30; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"qpb" = ( -/obj/structure/platform_deco/dark, -/obj/structure/platform_deco/dark{ +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"qgN" = ( +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"qhO" = ( +/obj/effect/floor_decal/corner/red{ dir = 8 }, -/obj/structure/platform_deco/dark{ +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"qkm" = ( +/obj/structure/platform/ledge{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"qqs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/holofloor/tiled/ramp, +/area/ship/dominian_corvette/bridge) +"qnr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"qrU" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/alarm/north{ + req_one_access = list(212) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"qoT" = ( +/obj/machinery/computer/ship/sensors{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"qpo" = ( +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/yellow, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"qqr" = ( +/obj/structure/railing/mapped, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) "que" = ( /obj/effect/step_trigger/teleporter, /turf/space/transit/north, /area/space) -"quP" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(212); - name = "Mess Hall" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_helm"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"qyw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"qAB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"qAE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Sidearms" - }, -/obj/item/gun/projectile/pistol/dominia, -/obj/item/gun/projectile/pistol/dominia, -/obj/item/gun/projectile/pistol/dominia, -/obj/item/gun/projectile/pistol/dominia, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"qAM" = ( -/obj/random/dirt_75, -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"qBa" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/peppertank/spacecleaner{ - pixel_y = 32 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/custodial) -"qBX" = ( +"qvK" = ( +/obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"qDf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/platform/dark, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"qDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"qFc" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"qFw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"qFK" = ( -/obj/structure/weapons_rack{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/item/gun/projectile/shotgun/pump/rifle/dominia, -/obj/item/gun/projectile/automatic/rifle/dominia_lmg, -/obj/item/gun/projectile/automatic/rifle/dominia, -/obj/item/gun/projectile/automatic/rifle/dominia, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/armoury) -"qHG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"qHR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light/small/red{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"qKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"qKj" = ( -/obj/structure/table/stone/marble, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"qLz" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"qNl" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"qSa" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"qSD" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/shuttle/dominian_shuttle) -"qUT" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/obj/machinery/access_button{ - pixel_y = -25; - dir = 1; - req_access = list(212); - pixel_x = -32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"qVz" = ( -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"qVR" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"qXH" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 22; - name = "sink" - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"qXX" = ( -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-8" - }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, thruster pod" - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_starboard) -"qZH" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"qZT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Brig" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/armoury) -"raE" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/machinery/button/remote/blast_door{ - dir = 4; - pixel_x = 21; - id = "dominia_fc_window_port"; - name = "Portside Fire Control Window Shutters" - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_port) -"raR" = ( -/obj/effect/floor_decal/corner_wide/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"raU" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"rbN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"rel" = ( -/obj/structure/trash_pile, -/obj/random/dirt_75, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"rhc" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/smes/buildable/third_party_shuttle, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/dominian_shuttle) -"rhu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy, -/turf/space/dynamic, -/area/dominian_corvette/docking_arm) -"riC" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"rkh" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/infirmary) -"rmm" = ( -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"rnD" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/obj/machinery/photocopier, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/co_office) -"rqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"qyg" = ( +/obj/structure/sink{ + pixel_y = 21 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/full, -/area/dominian_corvette/thrust_starboard) -"rqN" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1; - pixel_x = 1 - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(212); - name = "Chapel" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/chapel) -"rvh" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/dirt_75, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"rvA" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"ryL" = ( -/obj/structure/bed/stool/chair/sofa/black, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"ryX" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - name = "Fuel Tank Recycling Pump"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"rCz" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_port) -"rCO" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"rEo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hydroponics) -"rGb" = ( -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_starboard) -"rGr" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - start_pressure = 6000; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/machinery/light, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"rLm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"rMc" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor, -/area/dominian_corvette/hydroponics) -"rMA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"rNe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_starboard) -"rNg" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/reactor) -"rQg" = ( -/obj/machinery/atmospherics/valve/open, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"rRy" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/brig) -"rRT" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/button/remote/blast_door{ - id = "dominia_shuttle_windows"; - name = "Window Shields"; - dir = 10; - pixel_x = -6 - }, -/obj/machinery/button/remote/blast_door{ - id = "dominia_shuttle_airlock"; - name = "Airlock Shields"; - dir = 10; - pixel_x = 6 - }, -/obj/machinery/button/distress{ - pixel_y = 9 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/shuttle/dominian_shuttle) -"rSD" = ( -/obj/structure/platform_deco/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"rTE" = ( -/obj/machinery/computer/ship/targeting/terminal{ - dir = 4; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"rUo" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/structure/sign/flag/imperial_frontier{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"rUN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"rVk" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_cabin) -"rVt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"rWn" = ( -/obj/machinery/computer/ship/navigation/terminal{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/flag/zhao{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/fo_office) -"rWG" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"rXs" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/cable/green, -/obj/machinery/power/apc/west{ - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"rZr" = ( -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"sag" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"sbO" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(212); - name = "Sidearm Ammunition" - }, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/item/ammo_magazine/c45m/dominia, -/obj/effect/floor_decal/corner/paleblue/full, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"scf" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"seW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"shT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/tray/tea, -/obj/item/reagent_containers/glass/beaker/teapot/lidded{ - pixel_x = -5 - }, -/obj/item/teapot_lid/kyusu{ - pixel_y = 2; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/teacup{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/teacup{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/teacup{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/sign/flag/dominia{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"siM" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"skg" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/gold{ - req_access = list(212); - name = "Commanding Officer's Cabin" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/co_cabin) -"skL" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"snL" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"spF" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/dominian_corvette/thrust_port) -"spM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"sqo" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"srQ" = ( -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/secure_closet/evidence{ - name = "personal belongings storage"; - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/brig) -"ssT" = ( -/obj/structure/platform_deco/dark{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/helm) -"stk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"stX" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "12-0"; - d1 = 12; - d2 = 0 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"suq" = ( /obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/infirmary) -"svl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = 24; - dir = 8; - pixel_y = -6; - req_access = list(212) - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = 25; - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"svV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/dominian_corvette/thrust_port) -"sxj" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 10 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_starboard) -"szj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"sAf" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/fc_starboard) -"sAH" = ( -/obj/effect/shuttle_landmark/dominian_corvette/nav1{ - dir = 1 - }, -/turf/template_noop, -/area/space) -"sCv" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"sCK" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, mess hall" - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"sDi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 8 - }, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"sDB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"sDI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"sDQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"sER" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"sFI" = ( -/obj/machinery/computer/ship/targeting/terminal{ - dir = 8; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"sIV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"sJi" = ( -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/space) -"sJz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"sJZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"sKm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Portside Fire Control Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fc_port) -"sMN" = ( -/obj/structure/bed/stool/chair/sofa/corner/concave/black, -/obj/effect/decal/cleanable/dirt, -/obj/random/arcade, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"sNP" = ( -/obj/structure/cryofeed, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/cryogenics) -"sOb" = ( -/turf/space, -/area/space) -"sOD" = ( -/obj/effect/floor_decal/industrial/outline_corner/grey, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"sOJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"sPF" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_port) -"sPH" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/effect/shuttle_landmark/dominian_corvette/dock_fore{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 30; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"sPS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"sTu" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"sVK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/directions/cryo{ - pixel_x = 32; - pixel_y = 29 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"sYo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/random/dirt_75, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"sYZ" = ( -/obj/effect/floor_decal/corner/full{ - dir = 4 - }, -/obj/machinery/alarm/freezer/south{ req_one_access = list(212) }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"sZm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"taD" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/red{ - req_access = list(212); - name = "Bunks" - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/bunks) -"tcN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Nuclear Reactor Compartment" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/magazine_port) -"tcZ" = ( -/obj/structure/sign/flag/zhao{ +/obj/structure/mirror{ pixel_y = 32 }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"tds" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/freezer) -"tdE" = ( -/obj/effect/floor_decal/industrial/loading/red{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/docking_arm) -"tfs" = ( -/obj/machinery/bodyscanner, -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/medical, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/infirmary) -"thk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - req_access = list(212); - name = "Warehouse" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cargo) -"tiv" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/chapel) -"tix" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/greencross{ - pixel_x = 32 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"tjk" = ( -/obj/structure/table/wood, -/obj/item/stamp/zavodskoi{ - name = "empire of dominia rubber stamp"; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/pen/fountain{ - pixel_y = 2; - pixel_x = 5 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 14; - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 1 - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"tki" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"tkv" = ( -/obj/structure/platform/dark, -/obj/structure/platform/dark{ - dir = 4 - }, -/obj/structure/platform_deco/dark{ +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"qAT" = ( +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/ship/dominian_corvette/franny) +"qHm" = ( +/obj/effect/floor_decal/corner{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/alarm/north{ + req_one_access = list(212) }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor/exoplanet/plating, -/area/dominian_corvette/helm) -"tlQ" = ( -/obj/structure/toilet{ - pixel_y = 12 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "dominia_stall_1"; - name = "Stall #1 Bolt Control"; - specialfunctions = 4; - pixel_y = 5; - pixel_x = -22 +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"qHO" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, hangar" }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light/small{ - dir = 1; - must_start_working = 1 +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/hangar) +"qIf" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/franny) +"qIu" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/marble, -/area/dominian_corvette/bathroom) -"tlY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_y = 26; + id_tag = "dominian_shuttle_dock"; + name = "Dominian Shuttle docking port controller" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"qJS" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, primary armament" + }, +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/cannon) +"qLt" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/cannon) +"qOX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/poncho/dominia_cape/zhao, +/obj/item/clothing/accessory/poncho/dominia_cape/zhao/white, +/obj/item/clothing/accessory/poncho/dominia_cape/strelitz, +/obj/item/clothing/accessory/poncho/dominia_cape/strelitz/white, +/obj/item/gun/projectile/pistol/dominia, +/obj/item/clothing/accessory/holster/thigh, +/obj/item/clothing/accessory/badge/passport/dominia, +/obj/item/material/sword/rapier, +/obj/item/clothing/suit/space/void/dominia/voidsman, +/obj/item/clothing/head/helmet/space/void/dominia/voidsman, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/accessory/flagpatch/dominia, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"tnS" = ( -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"toj" = ( -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/structure/cable/green, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_starboard) -"tou" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"tpG" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"tqu" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"tqK" = ( -/obj/structure/bed/padded/bunk, -/obj/structure/bed/padded, -/obj/item/bedsheet/brown{ - pixel_y = 16 - }, -/obj/item/bedsheet/black, -/obj/outfit/admin/imperial_fleet_voidsman, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"tqM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"trE" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/access_button{ - pixel_x = 30; - pixel_y = -7; - req_access = list(212) - }, -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/shuttle/dominian_shuttle) -"tsu" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/under/dominia/fleet/officer, +/obj/item/clothing/head/dominia/fleet/officer, +/obj/item/clothing/suit/storage/dominia/fleet, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"qPL" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/red{ dir = 10 }, -/obj/effect/floor_decal/industrial/outline_straight/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/item/folder/red{ + pixel_x = 4 + }, +/obj/item/folder/sec, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"qQq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, /obj/machinery/power/apc/west{ req_access = list(212) }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_starboard) -"ttn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"tty" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"ttP" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/armoury) -"tvf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"twq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"twx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"txg" = ( -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/reagent_dispensers/coolanttank{ - pixel_x = 5 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -8; - pixel_y = -6 - }, -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'PORT PROPULSION'."; - name = "\improper PORT THRUSTERS sign"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/reactor) -"txq" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Stall #2"; - id_tag = "dominia_stall_2" - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/bathroom) -"tza" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/dominian_shuttle) -"tzA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_straight/red, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 4 - }, -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"tzK" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_corner/service{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/service, -/obj/effect/floor_decal/industrial/outline_segment/service{ +/obj/structure/cable, +/obj/effect/floor_decal/corner/paleblue{ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"tBh" = ( -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/fc_starboard) -"tBp" = ( +/area/ship/dominian_corvette/infirmary) +"qRq" = ( /obj/structure/table/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/arcade{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/machinery/alarm/west{ - req_one_access = null; - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/bunks) -"tBz" = ( -/obj/effect/floor_decal/corner_wide/brown/full, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"tBD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/eva_prep) -"tEa" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 5 - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"tHA" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/structure/cable/green{ - icon_state = "11-2"; - d1 = 11; - d2 = 2 - }, -/obj/structure/sign/drop{ - pixel_y = 32 - }, -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/turf/simulated/open/airless, -/area/dominian_corvette/central_lift) -"tHH" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_co2_port" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"tHL" = ( -/obj/effect/floor_decal/corner_wide/brown/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"tHY" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"tIx" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"tIZ" = ( -/obj/machinery/computer/ship/navigation/terminal{ - dir = 8; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/co_office) -"tKR" = ( -/obj/structure/viewport/zavod, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"tLl" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"tLN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"tMJ" = ( -/obj/machinery/appliance/cooker/stove, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"tMO" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/obj/effect/shuttle_landmark/dominian_corvette/dock_port{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"tOm" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = 31; - pixel_y = 8; - dir = 1; - req_access = list(212) - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_port, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"tOo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/mess_hall) -"tPl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"tPp" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/button/remote/blast_door{ - dir = 8; - pixel_x = -21; - id = "dominia_fc_window_starboard"; - name = "Starboard Fire Control Window Shutters" - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"tRb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -24; - dir = 4; - pixel_y = -6; - req_access = list(212) - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = -25; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"tRJ" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/brig) -"tSX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"tYJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/media/jukebox{ - anchored = 1; - density = 0 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"tZg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light/small/red{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/magazine_port) -"ubc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"ubd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"ubl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"uch" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"ucA" = ( -/obj/structure/sign/painting_frame/goddess{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/fo_cabin) -"udO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"uiC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"uiE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"ujJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"ulO" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/gunnery_starboard) -"unf" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"unT" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"uql" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"usf" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, morgue" - }, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/morgue) -"uwa" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/custodial) -"uyG" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/co_cabin) -"uyV" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "dominia_shuttle_windows" - }, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"uzv" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - name = "Hydroponics Bay"; - dir = 8; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"uAK" = ( -/obj/machinery/ship_weapon/grauwolf{ - pixel_x = -32; - pixel_y = -192; - weapon_id = "Dominian Grauwolf Flak Battery" - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"uCS" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/obj/machinery/vending/engineering{ - req_access = list(212); - pixel_x = -1 - }, -/obj/effect/floor_decal/industrial/hatch/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"uDT" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"uEC" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/north{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/armoury) -"uFf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"uFP" = ( -/obj/structure/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/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"uIT" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"uJe" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - name = "Canister to Fuel Tank" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"uJD" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_port, -/obj/machinery/access_button{ - pixel_x = 26; - pixel_y = -28; - dir = 8; - req_access = list(212) - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"uNK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"uOn" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/gunnery_port) -"uOq" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/spline/plain/beige{ - dir = 6 - }, -/turf/simulated/floor/carpet/rubber, -/area/dominian_corvette/thrust_port) -"uOB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -24; - dir = 4; - frequency = 1380; +/obj/item/storage/box/fancy/cigarettes/cigar{ + pixel_x = -5; pixel_y = 6 }, -/obj/machinery/airlock_sensor{ - pixel_x = -24; - dir = 4; - pixel_y = -6 - }, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"uPu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"uRH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"uTP" = ( -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"uWt" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"uYD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"vaa" = ( -/obj/structure/cable/orange{ - icon_state = "1-2"; - d1 = 1; - d2 = 2 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"vaL" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"vcT" = ( -/obj/effect/decal/cleanable/floor_damage/wood_broken6, -/obj/random/dirt_75, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/shot{ - pixel_y = -7; +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/dom{ + pixel_y = 9; pixel_x = 9 }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"vdb" = ( -/obj/structure/curtain/open{ - color = "#4A4A4A" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor{ - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/dominian_corvette/brig) -"veL" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"veU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south{ - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"veY" = ( -/obj/machinery/ammunition_loader/grauwolf{ - weapon_id = "Dominian Grauwolf Flak Battery" - }, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_port) -"vfh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ship_weapon_dummy/barrel, -/turf/space/dynamic, -/area/dominian_corvette/gunnery_port) -"vgX" = ( -/obj/structure/table/wood/gamblingtable, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/fancy/cigarettes/dromedaryco{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/flame/lighter{ - pixel_y = 3; - pixel_x = 1 - }, -/obj/item/material/ashtray/glass{ - pixel_y = 4; - pixel_x = -13 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"vhC" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(212) - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/engineering) -"vhF" = ( -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"vmF" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"voS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_lift) -"voU" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"vql" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"vsW" = ( -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"vtb" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "dominia_co2_starboard" - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"vtS" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"vur" = ( -/obj/machinery/light/small/red, -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"vuM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/eva_prep) -"vvd" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"vvH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"vxl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/dominian_corvette/fo_office) -"vxo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"vxs" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) -"vyW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"vzM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/sign/flag/zhao{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/helm) -"vzV" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/outfit/admin/imperial_fleet_voidsman/priest, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/fo_cabin) -"vAj" = ( -/obj/structure/cable/orange{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 - }, -/obj/structure/closet/walllocker/secure{ - req_access = list(212); - name = "Fuel Storage"; - pixel_x = -32 - }, -/obj/item/stack/material/tritium/full, -/obj/item/stack/material/tritium/full, -/obj/item/stack/material/tritium/full, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/sign/radiation{ - pixel_y = -32 - }, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"vAT" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/south{ - req_access = list(212) - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"vAW" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"vBe" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - target_pressure = 15000; - name = "Waste to Void" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/red{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/atmospherics) -"vCa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/fore_hallway) -"vCk" = ( -/obj/effect/landmark/entry_point/port, -/turf/simulated/wall/shuttle/space_ship/mercenary, -/area/shuttle/dominian_shuttle) -"vCs" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/fc_starboard) -"vEM" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_cabin) -"vHa" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"vHT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/structure/fireaxecabinet/north, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"vIz" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows"; - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"vIP" = ( -/obj/structure/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/lattice/catwalk/indoor, -/turf/simulated/floor, -/area/dominian_corvette/cargo) -"vJZ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"vKK" = ( -/obj/effect/floor_decal/industrial/hatch/service, -/obj/machinery/vending/hydronutrients{ - req_access = list(212) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hydroponics) -"vLB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"vMi" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access = list(212) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 25; - pixel_y = 30; - dir = 8; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/hangar) -"vMT" = ( -/obj/structure/lattice/catwalk, -/obj/effect/map_effect/map_helper/ruler_tiles_3{ - dir = 4 - }, -/turf/space/dynamic, -/area/dominian_corvette/exterior) -"vNi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"vNs" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - pixel_y = 6; - req_one_access = null; - req_access = list(246) - }, -/turf/simulated/floor/carpet/red, -/area/dominian_corvette/co_office) -"vQG" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"vRI" = ( -/obj/machinery/air_sensor, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_port"; - master_tag = "dominia_co2_port" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_port) -"vSK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/flag/zhao{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"vUs" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"vUE" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"vWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"vWP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/bunks) -"vXu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"vXG" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - req_access = list(212); - name = "Chapel" - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/chapel) -"vZx" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"vZS" = ( -/obj/effect/floor_decal/corner/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"wbF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/portgen/basic{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/reactor) -"wbV" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"wcv" = ( -/obj/machinery/sleeper, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/security, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/infirmary) -"wdH" = ( -/obj/effect/floor_decal/corner{ - dir = 6 - }, -/obj/effect/floor_decal/corner{ - dir = 9 - }, -/obj/structure/closet/walllocker/secure{ - pixel_y = -32; - name = "Chapel Closet"; - req_access = list(212) - }, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/device/versebook/tribunal, -/obj/item/reagent_containers/food/drinks/bottle/dominian_wine, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"wdY" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/machinery/vending/coffee/free, -/obj/effect/floor_decal/industrial/hatch/service, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/mess_hall) -"wei" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/co_office) -"wfj" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/brig) -"wfX" = ( -/obj/machinery/vending/boozeomat/abandoned, -/obj/effect/floor_decal/industrial/hatch/service, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/galley) -"wjC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/bunks) -"wmx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"wnr" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"wnt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_starboard) -"wpb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_cabin) -"wpQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/armoury) -"wqo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"wrB" = ( -/obj/structure/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/alarm/east{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"wrN" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/ship_weapon/francisca{ - pixel_x = -64; - pixel_y = -162; - weapon_id = "Dominian Rotary" - }, -/obj/structure/ship_weapon_dummy, -/turf/space/dynamic, -/area/dominian_corvette/docking_arm) -"wsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/shuttle/dominian_shuttle) -"wsH" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - pixel_y = 5 - }, -/obj/effect/floor_decal/spline/plain/full/beige, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/dominian_shuttle) -"wuc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"wvk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"wwK" = ( -/obj/machinery/computer/ship/helm/terminal{ - dir = 1; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"wyn" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"wzc" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/hangar) -"wAi" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/gunnery_port) -"wAt" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"wAN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"wBO" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" - }, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"wGR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrow/red{ - pixel_x = 6 - }, -/turf/simulated/floor/airless, -/area/dominian_corvette/exterior) -"wHc" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 4; - req_access = list(212) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/flag/dominia{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/helm) -"wHX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"wJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"wMG" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"wNa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/east{ - req_access = list(212) - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/dominian_corvette/thrust_port) -"wNe" = ( -/obj/machinery/ammunition_loader/francisca{ - weapon_id = "Dominian Rotary" - }, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/docking_arm) -"wPn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"wQa" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, brig" - }, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/brig) -"wQn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"wVE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/device/hand_labeler{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/eva_prep) -"wWv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable{ icon_state = "2-4" }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"wXZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/shuttle_landmark/lift/dominia_second_deck, -/turf/simulated/floor/tiled/gunmetal/full, -/area/turbolift/dominian_corvette/dominian_lift) -"wYS" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"qSI" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/door/airlock/highsecurity{ - req_access = list(212); - name = "Cell"; +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking) +"qTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/brig) -"xdP" = ( -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/tent, -/obj/item/tent, -/obj/structure/closet/crate/secure/legion{ - req_access = list(204); - name = "tables, chairs, and camping equipment"; - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Armed Forces. It appears quite scuffed." - }, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/stool/chair/folding/camping, -/obj/item/material/stool/chair/folding/camping, -/obj/item/material/stool/chair/folding/camping, -/obj/item/material/stool/chair/folding/camping, -/obj/item/material/hatchet/lumber, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/cargo) -"xeU" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/overmap/visitable/ship/dominian_corvette, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/helm) -"xff" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/firstaid/surgery{ - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/green/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"xkW" = ( -/obj/effect/floor_decal/corner{ +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"qXR" = ( +/obj/structure/table/rack, +/obj/item/reagent_containers/weldpack, +/obj/item/clothing/glasses/welding{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"qZm" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"raf" = ( +/obj/effect/floor_decal/corner/red{ dir = 10 }, -/obj/structure/cable/green{ +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"rbu" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"rde" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/hullbeacon/red, +/turf/template_noop, +/area/ship/dominian_corvette/exterior) +"rdB" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/ramp, +/area/ship/dominian_corvette/bridge) +"rdJ" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 4 + }, +/obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion) +"rdM" = ( +/obj/effect/floor_decal/corner{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" }, /turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"xlW" = ( -/obj/effect/floor_decal/corner/orange, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/engineering) -"xnb" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" +/area/ship/dominian_corvette/temple) +"ret" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_windows" +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"rhv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"rkO" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, port thrusters" }, /turf/simulated/floor, -/area/dominian_corvette/helm) -"xoC" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_office) -"xpr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/dirt_75, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cargo) -"xpB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"xqe" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"xqO" = ( -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/mess_hall) -"xtv" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/light/small{ - dir = 1; - must_start_working = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/dominian_corvette/morgue) -"xvb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/lattice/catwalk/indoor, -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_port, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = 6; - pixel_x = -25; - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -24; - dir = 4; - pixel_y = -6; - req_access = list(212) - }, -/turf/simulated/floor, -/area/dominian_corvette/gunnery_port) -"xvv" = ( +/area/ship/dominian_corvette/propulsion/port) +"rkP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"rnD" = ( +/obj/effect/floor_decal/corner{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"rog" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"rpY" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"rqE" = ( +/obj/machinery/power/apc/west{ + req_access = list(212) + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/helm) -"xvI" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"rrx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_ring) -"xvM" = ( -/obj/item/sticker/religious/tribunal, -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/chapel) -"xwI" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/fore_hallway) -"xyb" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"rsA" = ( /obj/machinery/door/airlock/external{ - dir = 4; - req_access = list(212) + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock" +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +/obj/machinery/access_button{ + pixel_x = 28; + pixel_y = 32 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/fore_hallway) -"xBv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking) +"rtf" = ( +/obj/structure/sign/flag/dominia{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"rxe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/meter, -/turf/simulated/floor, -/area/dominian_corvette/atmospherics) -"xBH" = ( -/obj/structure/table/wood/gamblingtable, -/obj/effect/decal/cleanable/dirt, -/obj/item/deck/cards{ - pixel_y = 6; - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/dice{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/lounge) -"xBX" = ( -/obj/effect/floor_decal/corner/full, -/obj/machinery/power/apc/south{ - req_access = list(212) - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/marble/dark, -/area/dominian_corvette/chapel) -"xCH" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ dir = 4 }, -/obj/effect/map_effect/marker/large_tank{ - name = "dominia_co2_starboard"; - master_tag = "dominia_co2_port" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/dominian_corvette/thrust_starboard) -"xCM" = ( -/obj/structure/ship_weapon_dummy, /turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"xDs" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" +/area/ship/dominian_corvette/franny) +"rxI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/door/blast/regular/open{ - id = "dominia_fc_window_starboard"; +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/turf/simulated/floor, -/area/dominian_corvette/fc_starboard) -"xFb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"xFM" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock, -/obj/machinery/door/blast/regular/open{ - id = "dominia_airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/docking_arm) -"xGG" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light, -/turf/simulated/floor, -/area/dominian_corvette/docking_arm) -"xHu" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, +/turf/simulated/floor/tiled/dark, /area/shuttle/dominian_shuttle) -"xIv" = ( -/obj/structure/bed/roller, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green/full{ +"rya" = ( +/turf/simulated/floor/airless, +/area/ship/dominian_corvette/exterior) +"ryV" = ( +/obj/structure/reagent_dispensers/coolanttank{ + pixel_x = 5; + amount_per_transfer_from_this = 60 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/medical/dark_green, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"xJU" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/floor_decal/industrial/outline/security, -/obj/effect/overmap/visitable/ship/landable/dominian_shuttle, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"rzi" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/armory) +"rGb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + id_tag = "dominian_shuttle_dock"; + name = "Dominian Shuttle docking port controller"; + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"rJj" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering/atmos) +"rLG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"rLK" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 1 + }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/dominian_shuttle) -"xLb" = ( -/obj/effect/floor_decal/industrial/hatch_tiny/yellow{ +"rOt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"rUU" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner{ dir = 10 }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"rWn" = ( +/obj/effect/floor_decal/corner/full{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Fuel Tank to Thrusters" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"xLJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/reactor) -"xNE" = ( -/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/lattice/catwalk/indoor/grate/gunmetal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/central_lift) -"xPN" = ( -/obj/effect/map_effect/window_spawner/full/shuttle{ - spawn_firedoor = 1; - spawn_grille = 1; - color = "#E14644"; - frame_color = "#E14644" - }, -/turf/simulated/floor, -/area/dominian_corvette/lounge) -"xRX" = ( -/turf/template_noop, -/area/space) -"xTI" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/fo_cabin) -"xTZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; +/obj/machinery/light/floor, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"rYH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion) +"saf" = ( +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/central_ring) -"xUa" = ( -/turf/simulated/wall/shuttle/dark/cardinal/red, -/area/dominian_corvette/central_lift) -"xVh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/meter, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"xVq" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light/small/red{ - dir = 4 - }, -/turf/simulated/floor, -/area/dominian_corvette/telecomms) -"xYQ" = ( -/obj/machinery/atmospherics/binary/passive_gate/on{ - target_pressure = 250; - name = "Air Supply to Distro" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/dominian_shuttle) -"xZd" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_port) -"xZO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/viewport/zavod, -/obj/machinery/ship_weapon/lammergeier{ - pixel_y = -256; - pixel_x = -96; - weapon_id = "Dominian Typhoon Naval Cannon" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/reinforced, -/area/dominian_corvette/gunnery_starboard) -"ybe" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = -27; - pixel_x = 3 - }, -/obj/machinery/recharger/wallcharger{ - pixel_y = -38; - pixel_x = 3 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/armoury) -"ybu" = ( -/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/hangar) -"ybH" = ( -/obj/machinery/body_scanconsole{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/medical{ - pixel_y = 2; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/dominian_corvette/infirmary) -"yeK" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"scv" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ dir = 8 }, -/obj/item/melee/ceremonial_sword{ - name = "imperial officer ceremonial sword"; - desc = "A ceremonial sword issued to Commissioned Officers of His Imperial Majesty's Fleet as part of their dress uniform."; - pixel_y = 32 - }, -/obj/structure/weapon_rack{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/dominian_corvette/co_cabin) -"yfm" = ( -/obj/machinery/button/remote/blast_door{ - id = "dominia_co2_starboard"; - name = "Chamber Blast Doors"; - pixel_y = 35; - pixel_x = 4; - dir = 5 - }, -/obj/machinery/button/ignition{ - id = "dominia_igniter_starboard"; - pixel_y = 35; - dir = 4; - pixel_x = -5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/dominian_corvette/thrust_starboard) -"yiy" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(212); - name = "Cryogenics" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/cryogenics) -"yiK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/gunmetal, -/turf/simulated/floor, -/area/dominian_corvette/mess_hall) -"yiP" = ( -/obj/structure/closet/walllocker/medical/secure{ - pixel_y = 32; - req_access = list(204); - name = "O- Blood" - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/dominian_corvette/infirmary) -"yjI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/alarm/north{ - req_one_access = null; - req_access = list(212) - }, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/central_ring) -"ykc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_corner/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_segment/grey{ - dir = 4 - }, -/obj/random/dirt_75, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, -/area/shuttle/dominian_shuttle) -"ykj" = ( -/obj/effect/floor_decal/corner/paleblue/full{ +/area/ship/dominian_corvette/engineering/atmos) +"sdI" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/eva_prep) -"yls" = ( -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/structure/closet/crate/trashcart, -/obj/item/storage/bag/trash{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/storage/bag/trash, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/gunmetal, -/area/dominian_corvette/custodial) -"ylQ" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking/port) +"sdV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/gunmetal/full, -/area/dominian_corvette/central_lift) +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"sfW" = ( +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/ship/dominian_corvette/cannon) +"shi" = ( +/obj/machinery/alarm/west{ + req_one_access = list(212) + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"srr" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"ssO" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 8 + }, +/obj/effect/floor_decal/corner{ + dir = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"ssT" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/reinforced/airless, +/area/ship/dominian_corvette/cannon) +"stk" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"sts" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/ship_weapon_dummy/barrel, +/turf/template_noop, +/area/ship/dominian_corvette/franny) +"svf" = ( +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -3 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/hoist_kit, +/obj/machinery/alarm/south{ + req_one_access = list(212) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"szI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"szY" = ( +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -3 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/hoist_kit, +/obj/machinery/light/small/emergency, +/obj/machinery/alarm/south{ + req_one_access = list(212) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"sFI" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"sGv" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard thrusters" + }, +/turf/simulated/floor, +/area/ship/dominian_corvette/propulsion) +"sKi" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor, +/area/shuttle/dominian_shuttle) +"sKj" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"sLx" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"sOb" = ( +/turf/space, +/area/space) +"sRv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/rack, +/obj/item/tank/hydrogen/shuttle, +/obj/item/tank/hydrogen/shuttle, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"tca" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion/port) +"thf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = -33 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"tjd" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, prep room" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering) +"tqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"tqX" = ( +/obj/effect/map_effect/window_spawner/full/shuttle{ + spawn_firedoor = 1; + spawn_grille = 1; + color = "#E14644"; + frame_color = "#E14644" + }, +/obj/machinery/door/blast/regular/open{ + id = "dominian_corvette_bridge" + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/bridge) +"tra" = ( +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/docking/port) +"trX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"tsC" = ( +/obj/structure/table/wood, +/obj/structure/television{ + pixel_y = 13 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/red, +/area/ship/dominian_corvette/recroom) +"tub" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/engineering) +"tuF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/flag/dominia{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"tvD" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/airless, +/area/ship/dominian_corvette/franny) +"txu" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"tyl" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_temple" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: BLAST DOOR'."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"tzi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"tzn" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + input_tag = "dominia_co2_in_port"; + name = "Carbon Dioxide Supply Monitor"; + output_tag = "dominia_co2_out_port"; + sensors = list("dominia_co2_sensor_port"="Tank"); + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"tAi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 6; + pixel_y = 28; + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/quarters) +"tCv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"tGm" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "dominia_co2_out_port"; + use_power = 1 + }, +/obj/machinery/air_sensor{ + pixel_y = 16; + frequency = 1441; + id_tag = "dominia_co2_sensor_port" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/ship/dominian_corvette/engineering/atmos) +"tJz" = ( +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/hangar) +"tOE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"tPT" = ( +/obj/effect/map_effect/window_spawner/full/shuttle{ + spawn_firedoor = 1; + spawn_grille = 1; + color = "#BDB6AE"; + frame_color = "#BDB6AE" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "dominian_corvette_bridge" + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/bridge) +"tSZ" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/engineering/atmos) +"tYf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"tYz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"ubT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"ucC" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/hangar) +"ueS" = ( +/obj/machinery/power/apc/south{ + req_access = list(212) + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion/port) +"ugF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"umF" = ( +/obj/machinery/power/apc/high/south{ + req_access = list(212) + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"upC" = ( +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 4 + }, +/area/ship/dominian_corvette/temple) +"urn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 5 + }, +/turf/simulated/wall, +/area/ship/dominian_corvette/propulsion/port) +"urz" = ( +/obj/effect/shuttle_landmark/dominian_corvette/nav3, +/turf/template_noop, +/area/space) +"uxh" = ( +/obj/structure/weightlifter, +/obj/item/towel{ + pixel_y = -8; + pixel_x = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"uzF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"uCl" = ( +/obj/machinery/power/apc/north{ + is_critical = 1; + req_access = list(212) + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"uCK" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger{ + pixel_y = 10 + }, +/obj/random/powercell, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"uCS" = ( +/obj/machinery/computer/ship/helm{ + req_access = list(212) + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/dominian_shuttle) +"uFI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/armory) +"uGj" = ( +/obj/machinery/computer/ship/helm{ + req_access = list(212) + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"uIz" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion) +"uJD" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_port"; + landmark_tag = "airlock_dominian_corvette_dock_port"; + master_tag = "airlock_dominian_corvette_dock_port" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = -19; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/aux, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking/port) +"uNg" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/engineering) +"uNN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/obj/machinery/light{ + dir = 8; + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"uOY" = ( +/obj/machinery/ammunition_loader/francisca{ + weapon_id = "Dominian Francisca Rotary Gun" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"uQz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"uQD" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/structure/platform/ledge, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"uQR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"uSQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"uWa" = ( +/obj/structure/sign/flag/dominia{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"uXT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/eva) +"uYP" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/landmark/entry_point/fore{ + name = "fore, airlock" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"vaL" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access = list(212); + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/engineering) +"vlF" = ( +/obj/effect/floor_decal/corner{ + dir = 9 + }, +/obj/item/sign/painting_frame/goddess/artisan{ + pixel_x = -32 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"vqn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"vwC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/template_noop, +/area/ship/dominian_corvette/exterior) +"vwF" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"vwK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 4 + }, +/turf/simulated/wall/shuttle/space_ship, +/area/shuttle/dominian_shuttle) +"vyg" = ( +/obj/machinery/computer/ship/targeting, +/obj/machinery/light{ + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"vBe" = ( +/obj/machinery/body_scanconsole{ + dir = 1; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"vDG" = ( +/obj/machinery/door/airlock/service{ + name = "Custodial Closet"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/janitor) +"vFn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"vGe" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/infirmary) +"vGn" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/iff_beacon/name_change, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/dominian_shuttle) +"vHb" = ( +/obj/structure/extinguisher_cabinet/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/infirmary) +"vJm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking/port) +"vPq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/ship/dominian_corvette/officer) +"vUu" = ( +/obj/effect/floor_decal/corner/full{ + dir = 1 + }, +/obj/structure/closet/walllocker{ + name = "priest's raiments locker"; + pixel_y = 32 + }, +/obj/item/clothing/head/beret/dominia, +/obj/item/clothing/under/dominia/priest, +/obj/item/clothing/accessory/poncho/dominia/red/surcoat, +/obj/item/storage/box/fancy/candle_box, +/obj/item/flame/lighter/zippo/dominia, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/obj/item/clothing/accessory/dominia, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"vZS" = ( +/obj/machinery/door/airlock/hatch{ + name = "Propulsion"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/propulsion/port) +"wjB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/ship/dominian_corvette/franny) +"woN" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/fuel_port/phoron{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"wqT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"wrJ" = ( +/obj/effect/shuttle_landmark/dominian_shuttle/transit, +/turf/space/transit/north, +/area/space) +"wsE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/alarm/west{ + req_one_access = list(212) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"wxN" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel, +/obj/structure/sign/flag/dominia{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"wzs" = ( +/obj/structure/closet/walllocker{ + pixel_y = -32 + }, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/machinery/power/apc/north{ + req_access = list(212) + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/janitor) +"wAt" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + name = "airlock_dominian_corvette_dock_starboard"; + master_tag = "airlock_dominian_corvette_dock_starboard"; + landmark_tag = "airlock_dominian_corvette_dock_starboard" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = -8; + dir = 8; + pixel_y = -28 + }, +/obj/effect/shuttle_landmark/dominian_corvette/dock{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/ship/dominian_corvette/docking) +"wBq" = ( +/obj/effect/floor_decal/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"wCU" = ( +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/franny) +"wDk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/cannon) +"wDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/dark, +/area/shuttle/dominian_shuttle) +"wEY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/white{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"wGu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion) +"wGQ" = ( +/obj/structure/extinguisher_cabinet/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/engineering/reactor) +"wHc" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/closet/crate/bin, +/obj/random/junk, +/obj/machinery/power/apc/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette) +"wIx" = ( +/obj/machinery/computer/ship/targeting, +/obj/machinery/light{ + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"wIV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/atmos) +"wNR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"wQu" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/airlock_sensor{ + pixel_x = 24; + pixel_y = 6 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/dominian_shuttle) +"wQA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/propulsion/port) +"wVD" = ( +/obj/machinery/computer/ship/sensors, +/obj/effect/floor_decal/spline/plain/white{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) +"wXi" = ( +/obj/machinery/power/smes/buildable/third_party_shuttle, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering/reactor) +"wZf" = ( +/obj/effect/floor_decal/corner{ + dir = 5 + }, +/obj/effect/floor_decal/corner{ + dir = 10 + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"xbd" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/engineering/atmos) +"xbK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/machinery/atmospherics/portables_connector/aux, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/docking) +"xbY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"xdJ" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/reinforced, +/area/ship/dominian_corvette/franny) +"xfv" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/docking) +"xfy" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, washroom" + }, +/turf/simulated/wall/shuttle/space_ship, +/area/ship/dominian_corvette/head) +"xkK" = ( +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) + }, +/obj/effect/shuttle_landmark/dominian_shuttle/hangar, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"xmH" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/recroom) +"xoc" = ( +/obj/machinery/autolathe, +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"xqq" = ( +/obj/effect/floor_decal/corner{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/marble/dark, +/area/ship/dominian_corvette/temple) +"xrz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette) +"xvM" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/flag/strelitz{ + pixel_x = -32 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/bridge) +"xDn" = ( +/turf/simulated/wall/shuttle/space_ship{ + color = "#E14644" + }, +/area/ship/dominian_corvette/recroom) +"xDT" = ( +/turf/simulated/wall, +/area/ship/dominian_corvette/infirmary) +"xGB" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_y = -6; + pixel_x = 20 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + name = "airlock_dominian_shuttle"; + master_tag = "airlock_dominian_shuttle"; + shuttle_tag = "Dominian Shuttle"; + req_one_access = list(212); + cycle_to_external_air = 1 + }, +/turf/simulated/floor, +/area/shuttle/dominian_shuttle) +"xIX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/engineering) +"xKg" = ( +/obj/structure/punching_bag, +/obj/effect/floor_decal/corner/red/full, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/recroom) +"xNk" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "dominia_co2_in_starboard"; + use_power = 1 + }, +/obj/machinery/air_sensor{ + pixel_y = 16; + frequency = 1441; + id_tag = "dominia_co2_sensor_starboard" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/ship/dominian_corvette/propulsion) +"xPJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"xPN" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/dominian_shuttle) +"xRk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare/glowstick/red, +/obj/item/device/flashlight/flare/glowstick/red, +/obj/item/device/flashlight/flare/glowstick/red, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"xRX" = ( +/turf/template_noop, +/area/space) +"xTT" = ( +/obj/structure/table/stone/marble, +/obj/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"xTW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/janitor) +"xVA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/cic) +"xVK" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 21 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/flour, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"xXX" = ( +/obj/structure/cable, +/obj/machinery/power/apc/west{ + req_access = list(212) + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/hangar) +"ygs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/dominian_corvette/infirmary) +"ygP" = ( +/obj/machinery/appliance/cooker/oven, +/obj/machinery/light{ + dir = 1; + icon_state = "tube_empty" + }, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/recroom) +"ygQ" = ( +/obj/structure/curtain/open/shower, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/ship/dominian_corvette/head) +"yhK" = ( +/obj/machinery/ship_weapon/lammergeier{ + pixel_y = -33; + pixel_x = 1; + weapon_id = "Lammergeier Cannon" + }, +/obj/structure/ship_weapon_dummy/barrel, +/turf/template_noop, +/area/ship/dominian_corvette/cannon) +"yjk" = ( +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_hangar_dominia"; + master_tag = "dominian_shuttle_dock"; + name = "dominian_shuttle_dock"; + req_one_access = list(212) + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/ship/dominian_corvette/hangar) +"ylE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/sign/flag/zhao{ + pixel_x = 32 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/ship/dominian_corvette/cic) (1,1,1) = {" xRX @@ -14274,9 +8176,9 @@ sOb sOb etL etL -sOb -sOb -sOb +etL +etL +etL etL etL etL @@ -14542,7 +8444,7 @@ etL etL sOb sOb -sOb +etL etL etL etL @@ -14791,19 +8693,19 @@ etL sOb sOb sOb +etL +etL +etL +etL +etL +etL sOb sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -15051,16 +8953,16 @@ sOb sOb sOb sOb +etL +etL sOb sOb sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -15313,11 +9215,11 @@ sOb sOb sOb sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -15570,11 +9472,11 @@ sOb sOb sOb sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -15827,11 +9729,11 @@ sOb sOb sOb sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -16081,14 +9983,14 @@ sOb sOb sOb sOb +etL +etL sOb sOb -sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL sOb sOb sOb @@ -16333,19 +10235,19 @@ sOb sOb sOb sOb -etL -etL -etL +sOb +sOb sOb sOb sOb etL +etL sOb +etL sOb -sOb -sOb -sOb -sOb +wrJ +etL +etL sOb sOb sOb @@ -16586,10 +10488,20 @@ etL sOb sOb sOb -blN sOb sOb sOb +sOb +sOb +sOb +sOb +sOb +sOb +etL +etL +sOb +etL +sOb etL etL etL @@ -16597,16 +10509,6 @@ sOb sOb sOb etL -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -etL etL sOb pRf @@ -16847,19 +10749,19 @@ sOb sOb sOb sOb -etL -etL -etL sOb sOb sOb etL sOb +etL +etL sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL sOb sOb sOb @@ -17101,13 +11003,6 @@ sOb sOb sOb sOb -etL -etL -etL -etL -etL -sOb -sOb sOb sOb sOb @@ -17115,6 +11010,8 @@ sOb sOb sOb etL +sOb +etL etL sOb etL @@ -17122,6 +11019,11 @@ etL etL etL etL +etL +etL +etL +etL +etL sOb pRf "} @@ -17358,13 +11260,6 @@ sOb sOb sOb sOb -etL -etL -etL -etL -etL -sOb -sOb sOb sOb sOb @@ -17372,6 +11267,8 @@ sOb sOb sOb etL +sOb +etL etL sOb etL @@ -17379,6 +11276,11 @@ etL etL etL etL +etL +etL +etL +etL +etL sOb pRf "} @@ -17615,13 +11517,6 @@ etL etL etL etL -etL -etL -etL -etL -etL -sOb -sOb sOb sOb sOb @@ -17629,9 +11524,16 @@ sOb sOb sOb etL +sOb +etL etL sOb etL +sOb +sOb +etL +etL +etL etL etL etL @@ -17874,21 +11776,21 @@ etL etL sOb sOb -etL -etL -etL sOb sOb sOb sOb +etL sOb etL etL -etL -etL -etL sOb etL +sOb +sOb +etL +etL +etL etL etL etL @@ -18131,19 +12033,19 @@ etL etL sOb sOb +sOb +sOb +sOb etL etL +sOb +etL etL sOb sOb sOb sOb sOb -etL -etL -etL -etL -etL sOb etL etL @@ -18389,6 +12291,11 @@ etL sOb sOb sOb +sOb +sOb +etL +etL +etL etL etL sOb @@ -18396,11 +12303,6 @@ sOb sOb sOb sOb -etL -etL -etL -etL -etL sOb etL etL @@ -18648,9 +12550,9 @@ sOb sOb sOb sOb -sOb -sOb -sOb +etL +etL +etL etL etL etL @@ -18905,9 +12807,9 @@ sOb sOb sOb sOb -sOb -sOb -sOb +etL +etL +etL etL etL etL @@ -19162,9 +13064,9 @@ sOb sOb sOb sOb -sOb -sOb -sOb +etL +etL +etL etL etL etL @@ -19663,14 +13565,14 @@ xRX xRX xRX xRX -pRf -sOb -sOb -sOb -sOb -sOb -sOb -sOb +que +etL +etL +etL +etL +etL +etL +etL sOb sOb sOb @@ -19681,17 +13583,17 @@ etL etL etL etL +etL +etL sOb sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb -sOb +etL +etL +etL +etL +etL +etL +etL sOb pRf "} @@ -19921,35 +13823,35 @@ xRX xRX xRX que -etL -etL -etL -etL -etL -etL -etL -sOb -sOb -sOb -sOb -sOb -etL -etL -etL -etL -etL -etL -etL -sOb -sOb -etL -etL -etL -etL -etL -etL -etL -sOb +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +que +pRf +pRf pRf "} (29,1,1) = {" @@ -20177,37 +14079,37 @@ xRX xRX xRX xRX -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -que -pRf -pRf -pRf +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX +xRX "} (30,1,1) = {" xRX @@ -24419,7 +18321,7 @@ xRX xRX xRX xRX -xRX +urz xRX xRX xRX @@ -30089,7 +23991,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -32355,7 +26257,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -38095,7 +31997,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -39328,10 +33230,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +xfv +qSI +wAt +xfv xRX xRX xRX @@ -39585,10 +33487,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +pMz +jJa +oWU +pMz xRX xRX xRX @@ -39842,10 +33744,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +pMz +rsA +ctK +pMz xRX xRX xRX @@ -40040,6 +33942,7 @@ xRX xRX xRX xRX +iyN xRX xRX xRX @@ -40098,11 +34001,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX +xfv +cUE +ndQ +xfv xRX xRX xRX @@ -40356,10 +34258,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +pMz +tYf +fif +pMz xRX xRX xRX @@ -40613,10 +34515,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +xfv +rog +fif +xfv xRX xRX xRX @@ -40870,10 +34772,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +pMz +hWr +fif +jrv xRX xRX xRX @@ -41126,11 +35028,11 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX +pMz +xfv +qnr +kis +xfv xRX xRX xRX @@ -41368,26 +35270,26 @@ xRX xRX xRX xRX +iOL +iOL +atj +eMs +ike +ike +fdo +ike +tub +uNg +tjd +tub +tub +uNg xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +pMz +xbK +luJ +fUN +pMz xRX xRX xRX @@ -41623,28 +35525,28 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +iOL +iOL +nOX +aou +ocM +iKq +gFJ +dEE +gBt +wXi +pcl +bos +mcJ +aab +tCv +pcl +xDn +xDn +pMz +bCq +aue +pMz xRX xRX xRX @@ -41880,29 +35782,29 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +oQe +aRd +uIz +huE +eMT +iKq +iKq +nMr +acd +wGQ +pcl +owG +gTU +gTU +kJL +vaL +mSp +rqE +shi +iTz +hMT +fnY +xDn xRX xRX xRX @@ -42137,29 +36039,29 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +oQe +rYH +epB +wGu +rdJ +cYw +krq +rLG +iPH +frC +pdm +acm +bws +gSY +oNi +pcl +dZr +mEE +mEE +dxX +xbY +xKg +eWQ xRX xRX xRX @@ -42394,39 +36296,39 @@ xRX xRX xRX xRX +sGv +dfw +kPs +eKR +eKR +iKq +iKq +iKq +hqL +nke +pcl +uCK +ocx +gSY +bBK +pcl +krH +hDH +dIe +oFS +cfL +ehT +fnY xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +qAT +tvD +tvD +wjB +sts +bTU xRX xRX xRX @@ -42651,39 +36553,39 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +iOL +iOL +nOX +fNe +xNk +iKq +kkj +ncl +qTV +ryV +pcl +pIS +xIX +gSY +jhH +pcl +ygP +jHZ +pIf +oFS +cfL +uxh +xDn +bja +wCU +jLX +jLX +lPG +qIf +rya +vwC +vwC +rde xRX xRX xRX @@ -42910,34 +36812,34 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +iOL +iOL +nOX +ike +iKq +iKq +bik +iKq +pcl +pcl +xoc +bDg +qXR +pcl +iUc +xVK +xTT +oFS +cfL +kLr +xDn +nBv +phv +phv +phv +uOY +phv +wCU xRX xRX xRX @@ -43170,31 +37072,31 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +elw +cwq +lpa +uXT +bwm +aky +bsE +bsE +bsE +bsE +bsE +pRO +bsE +bsE +mgC +mbl +lKG +xmH +oXW +phv +cZv +qgN +fXH +phv +wCU xRX xRX xRX @@ -43427,31 +37329,31 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +guT +rtf +cBV +nnQ +aay +kOL +bsE +kyc +bsE +qOX +mIY +ans +jhJ +bsE +tsC +gEX +bot +xmH +niu +phv +aaJ +lwX +xdJ +phv +lGD xRX xRX xRX @@ -43678,6 +37580,41 @@ xRX xRX xRX xRX +cMo +cMo +cMo +cMo +xRX +xRX +guT +epw +epw +tzi +epw +epw +bsE +lri +qdL +vPq +mjR +qRq +uQR +iVM +pXx +bEJ +qpo +xmH +xTW +phv +fBb +lwX +hbA +phv +awG +iJi +tqX +iJi +iJi xRX xRX xRX @@ -43708,41 +37645,6 @@ xRX xRX xRX xRX -ogc -sJi -sJi -sJi -ogc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -mMc -mMc -xRX -mMc -mMc -lJB -mMc -mMc -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -43929,6 +37831,48 @@ xRX xRX xRX xRX +cMo +iCK +eze +iCK +iCK +cMo +cMo +woN +eBK +buA +xRX +xRX +elw +lpl +lpl +eWe +lpl +lpl +bsE +bsE +bsE +edF +pJj +uCl +gLO +bsE +nvs +hfF +fvv +xmH +wzs +phv +lwX +aRr +ejW +phv +kni +xvM +uQD +wIx +awG +gdk xRX xRX xRX @@ -43965,48 +37909,6 @@ xRX xRX xRX xRX -ogc -mxF -mxF -mxF -ogc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -gjd -mcV -mMc -mMc -ykc -pDR -rhc -kQe -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -44183,6 +38085,51 @@ xRX xRX xRX xRX +fpW +cMo +cMo +cMo +vwF +auV +xPN +wxN +tYz +dMj +flP +iNt +buA +xRX +xRX +hcm +nSs +bra +pxu +xXX +liI +kUR +uNN +mpK +bsE +bsE +bsE +bsE +bsE +hjB +stk +cgQ +xmH +dez +phv +oNR +rxe +svf +phv +kni +kZr +oZv +aSJ +awG +iJi xRX xRX xRX @@ -44219,51 +38166,6 @@ xRX xRX xRX xRX -ogc -ogc -ogc -ogc -iWi -iWi -iWi -ogc -ogc -ogc -ogc -xRX -xRX -xRX -xRX -mMc -iNW -jXM -jtC -lUi -sZm -wsC -veU -mMc -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -44440,6 +38342,52 @@ xRX xRX xRX xRX +iCK +iCK +paP +mZy +aSc +hiw +mJZ +aMY +flC +cMo +qZm +cMo +wQu +xRX +xRX +qHO +exm +lNZ +krt +hAK +liI +pyr +eur +mpK +iaK +eiR +vlF +fQq +dBq +kaR +dBq +dBq +dBq +vDG +dBq +dBq +aHw +dBq +dBq +dBq +kBs +mIW +pAh +dvU +iJi +awG xRX xRX xRX @@ -44476,52 +38424,6 @@ xRX xRX xRX xRX -ogc -stX -kFF -aGD -lbC -wqo -egJ -gpJ -eAR -eoR -ogc -xRX -xRX -xRX -xRX -epb -iNW -tza -mIn -lUi -scf -pvI -uWt -jpi -mMc -mMc -uyV -qaS -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -44697,6 +38599,52 @@ xRX xRX xRX xRX +mqx +cFv +sFI +aMY +rxI +agx +mJZ +aMY +flC +cMo +cMo +cMo +vwK +ucC +ucC +ucC +hlT +lNZ +krt +hAK +xRk +ekH +lpF +mpK +mET +pYB +mqS +upC +dBq +uWa +tyl +oBX +clh +uSQ +wsE +lMJ +hMR +liN +hZq +dBq +nYM +oZv +eIb +piA +uGj +awG xRX xRX xRX @@ -44733,52 +38681,6 @@ xRX xRX xRX xRX -ogc -kEn -wuc -bGP -skL -qNl -aQe -nps -ybu -ogc -ogc -mxF -ogc -gwR -gcs -gXL -iNW -mMc -mMc -mMc -qSa -qSD -qSa -mMc -mMc -mmS -iKD -uyV -qaS -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -44925,6 +38827,7 @@ xRX xRX xRX xRX +dsC xRX xRX xRX @@ -44953,6 +38856,52 @@ xRX xRX xRX xRX +lGZ +uCS +fZq +aow +asL +lug +elq +lXK +wDu +qbw +kGF +jim +uYP +xkK +ibs +jKA +qvK +oXP +fQd +qhO +hVG +uQz +hoK +aOU +rnD +nuE +aqS +xqq +pwl +alH +ltw +ezV +dEo +saf +lnx +kqx +oZW +lnx +nAn +gcq +nJS +qkm +aHs +aHs +fjW +dnW xRX xRX xRX @@ -44975,54 +38924,7 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -ogc -ogc -ogc -ogc -ogc -wuc -rmm -nBE -biT -biT -vJZ -ybu -ogc -tRb -pnH -ogc -nKq -kKZ -qLz -iNW -khR -wMG -cXp -oej -pvI -cXp -vUs -qSa -uPu -wsH -wwK -qaS -xRX -xRX -xRX -xRX +mit xRX xRX xRX @@ -45211,6 +39113,52 @@ xRX xRX xRX xRX +mqx +orm +rLK +nva +ugF +gNT +gNT +gNT +noq +dhp +xGB +sKi +dHA +yjk +fGW +kLY +gmO +rGb +oLC +rhv +xPJ +rhv +aqo +tJz +wZf +ssO +rUU +qfg +iWe +cBa +luU +ics +tqI +fBu +gtJ +gHr +xrz +tOE +tOE +bOQ +uzF +rdB +aHs +aHs +qPL +tPT xRX xRX xRX @@ -45244,52 +39192,6 @@ xRX xRX xRX xRX -jFX -gXw -inJ -luI -tou -wuc -omy -biT -biT -biT -isd -nZL -bvM -rVt -iRR -qoz -lRG -jaR -qcn -trE -vvH -dZt -dZt -kcV -bmu -nso -nso -mAf -pxL -xJU -rRT -oFT -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -45468,6 +39370,52 @@ xRX xRX xRX xRX +iCK +iCK +qIu +kIy +aMY +aMY +aMY +aMY +flC +cMo +cMo +cMo +vwK +ucC +ucC +diE +pvH +pvH +gHC +pvH +pvH +mpK +mpK +mpK +qHm +jTL +wBq +rdM +dBq +pVk +bNV +nQE +gyl +cjQ +wHc +iRJ +cjQ +jXM +opa +dBq +iXb +oZv +aHs +pXP +qoT +awG xRX xRX xRX @@ -45501,52 +39449,6 @@ xRX xRX xRX xRX -jFX -vMi -xpB -fWO -hsZ -eYq -rmm -biT -biT -biT -vJZ -lkf -ogc -dRh -jcj -ogc -mMc -jLV -gPM -iNW -aRn -sOD -nhf -glW -vql -nhf -lJC -qSa -qHG -wsH -omt -qaS -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -45725,6 +39627,52 @@ xRX xRX xRX xRX +vGn +cMo +cMo +cMo +oAQ +byV +oAQ +oAQ +flC +cMo +qZm +cMo +kII +xRX +xRX +diE +ebu +ndu +cJO +grG +ixD +mpK +mpK +mpK +kzm +juM +ncB +jxG +bDu +hru +bDu +dBq +dBq +cpa +dBq +dBq +ezu +dBq +dBq +dBq +qqr +mIW +kfX +srr +iJi +awG xRX xRX xRX @@ -45758,52 +39706,6 @@ xRX xRX xRX xRX -ogc -ogc -ogc -ogc -ogc -wHX -vAW -tqM -wzc -hjH -bYN -ubd -ogc -ogc -mxF -ogc -mMc -mMc -mMc -iNW -mMc -mMc -mMc -qSa -hyQ -qSa -mMc -mMc -nJX -kxH -uyV -qaS -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -45985,6 +39887,48 @@ xRX xRX xRX xRX +cMo +iCK +fNZ +iCK +iCK +tuF +dMj +flP +aCd +buA +xRX +xRX +diE +lhk +wEY +kze +coM +iTW +mpK +mpK +mpK +vUu +ltv +jGb +rWn +bDu +tAi +itD +aep +jpO +hfp +hcl +kAt +vqn +szY +hcl +kni +aSN +oZv +aWi +awG +iJi xRX xRX xRX @@ -46018,48 +39962,6 @@ xRX xRX xRX xRX -ogc -xqe -cQY -nke -ubl -gGz -sJZ -tpG -jNy -eoR -ogc -xRX -xRX -xRX -xRX -jEg -iNW -xHu -sDi -xYQ -nnx -onn -pWv -ozw -mMc -mMc -uyV -qaS -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -46246,6 +40148,44 @@ xRX xRX xRX xRX +iCK +cMo +cMo +rbu +inf +buA +xRX +xRX +lhK +kAa +iGr +jVp +sKj +fnj +xDT +xDT +xDT +xDT +kAE +xDT +bDu +bDu +gXv +buM +aep +hGR +mSt +hcl +eYX +wDk +iJz +hcl +kni +pCa +ahw +vyg +awG +oBD xRX xRX xRX @@ -46275,44 +40215,6 @@ xRX xRX xRX xRX -ogc -ogc -ogc -ogc -iWi -iWi -iWi -ogc -ogc -ogc -ogc -xRX -xRX -xRX -xRX -mMc -iNW -aLo -tlY -uWt -dqX -xLb -fuJ -mMc -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -46505,6 +40407,41 @@ xRX xRX xRX xRX +cMo +cMo +cMo +cMo +xRX +xRX +lhK +wVD +mno +xVA +hdA +ioT +xDT +aoH +eqS +xDT +thf +xDT +kjg +fek +bvG +dHm +aep +nTU +cnH +hcl +hhf +fyC +lfC +hcl +awG +iJi +tqX +iJi +iJi xRX xRX xRX @@ -46535,41 +40472,6 @@ xRX xRX xRX xRX -ogc -mxF -mxF -mxF -ogc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -gjd -dov -mMc -mMc -vZx -uJe -vNi -jxK -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -46768,6 +40670,38 @@ xRX xRX xRX xRX +diE +itJ +jfa +kSg +dZC +ylE +xDT +pDZ +mfW +mFl +qaN +xDT +hzU +rOt +aBD +cwi +aep +bnp +aeN +hcl +hcl +txu +fyC +cno +cno +sfW +sfW +sfW +sfW +sfW +sfW +yhK xRX xRX xRX @@ -46792,38 +40726,6 @@ xRX xRX xRX xRX -ogc -sJi -sJi -sJi -ogc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -mMc -mMc -xRX -mMc -mMc -vCk -mMc -mMc -mMc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX xRX xRX xRX @@ -47022,41 +40924,41 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +lsu +bPE +bPE +pCT +pCT +pCT +nKv +pCT +pCT +pCT +iRD +mwP +xDT +rkP +xDT +bDu +cqW +bDu +bDu +aep +aep +gVp +dTw +aep +fyC +cno +cno +cno +ssT +sfW +sfW +sfW +sfW +sfW +jTb xRX xRX xRX @@ -47277,42 +41179,42 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +lsu +lsu +bPE +faF +bam +bfj +xbd +cjb +wqT +sRv +umF +pCT +xDT +xDT +xDT +rkP +xDT +qyg +ubT +fKE +hgF +aCZ +aep +uFI +iWi +aep +fyC +cno +cno +cno +ssT +doI +vwC +vwC +vwC +rde xRX xRX xRX @@ -47534,38 +41436,38 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +rkO +urn +tca +kyi +bam +fDv +ntt +oHv +lGR +bjw +bjw +nEY +eqq +qQq +kRG +vHb +xDT +nXd +pnY +rrx +cTq +cTq +aep +oDq +iEY +aep +fyC +erT +fSC +fZl +vwC +aag xRX xRX xRX @@ -47791,36 +41693,36 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +dYJ +kWO +grx +wQA +vZS +cpP +szI +oPa +lCA +wIV +nwx +pCT +mLa +cbY +ret +giu +xDT +ygQ +sLx +nmS +ioR +aCZ +aep +aHt +ogz +nuI +pLQ +kDV +fyC +qJS xRX xRX xRX @@ -48048,36 +41950,36 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +dYJ +bfU +tca +ueS +bam +vFn +oBB +wNR +tzn +scv +bjN +pCT +oVO +pSw +ret +iEC +ked +mRY +xfy +mRY +mRY +elH +nuI +rzi +mCr +nuI +pGp +qLt +hDV +hDV xRX xRX xRX @@ -48305,23 +42207,23 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +lsu +lsu +bPE +eKs +bam +trX +eYR +fte +pCT +rpY +rpY +pCT +ajL +vBe +lHx +klE +vGe xRX xRX xRX @@ -48564,21 +42466,21 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +lsu +bPE +bPE +sdV +bRD +aEq +pCT +cpy +tGm +pCT +xDT +ygs +fyU +ked +ked xRX xRX xRX @@ -48823,19 +42725,19 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX +diE +rJj +tSZ +tSZ +jMx +rJj +tSZ +tSZ +pfE +ioG +vJm +cZD +pfE xRX xRX xRX @@ -49088,11 +42990,11 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX -xRX +pfE +jpw +nDC +pfE +pfE xRX xRX xRX @@ -49345,10 +43247,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +eqL +alw +hYY +kTJ xRX xRX xRX @@ -49602,10 +43504,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +eqL +pKp +nbQ +eqL xRX xRX xRX @@ -49859,10 +43761,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +iTC +cZb +raf +pfE xRX xRX xRX @@ -50116,10 +44018,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +eqL +oYG +raf +eqL xRX xRX xRX @@ -50373,10 +44275,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +eqL +jwV +uJD +eqL xRX xRX xRX @@ -50630,10 +44532,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +pfE +tra +pLf +pfE xRX xRX xRX @@ -50887,10 +44789,10 @@ xRX xRX xRX xRX -xRX -xRX -xRX -xRX +eqL +myM +sdI +eqL xRX xRX xRX @@ -51204,7 +45106,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -55734,7 +49636,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -61203,8 +55105,8 @@ xRX xRX xRX xRX -xRX -xRX +iyN +iyN xRX xRX xRX @@ -62201,7 +56103,7 @@ xRX xRX xRX xRX -xRX +lme xRX xRX xRX @@ -62704,7 +56606,7 @@ xRX xRX xRX xRX -xRX +iyN xRX xRX xRX @@ -78291,65539 +72193,3 @@ xRX xRX xRX "} - -(1,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(2,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(3,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(4,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(5,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(6,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(7,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(8,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(9,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(10,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(11,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(12,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(13,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(14,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(15,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(16,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(17,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(18,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(19,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(20,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(21,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(22,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(23,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(24,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(25,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(26,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(27,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(28,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(29,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(30,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(31,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(32,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(33,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(34,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(35,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(36,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(37,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(38,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(39,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(40,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(41,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(42,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(43,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(44,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(45,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(46,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(47,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(48,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(49,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(50,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(51,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(52,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(53,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(54,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(55,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(56,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(57,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(58,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(59,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(60,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(61,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(62,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(63,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(64,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(65,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(66,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(67,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(68,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(69,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(70,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -dJb -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(71,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(72,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(73,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(74,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(75,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(76,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(77,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(78,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(79,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(80,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(81,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(82,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(83,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(84,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(85,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(86,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(87,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(88,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(89,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(90,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(91,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(92,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(93,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(94,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(95,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(96,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(97,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(98,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kVY -kVY -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(99,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kVY -hrs -kVY -kVY -vtS -kVY -kVY -kVY -kVY -kVY -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(100,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -bof -cRo -mxn -bzt -pmh -pBl -cDH -eDJ -kaL -eXs -eXs -eXs -eXs -eXs -qmG -lqF -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(101,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -sAf -sAf -sAf -sAf -sAf -hQk -cgX -xCM -xCM -xFb -eXs -eXs -eXs -eXs -eXs -qmG -aQc -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(102,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -sAf -sAf -nGH -tPp -pzw -xDs -ulO -cgX -xCM -xCM -xFb -eXs -rGb -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(103,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -lUC -clw -siM -vCs -xDs -ulO -cgX -hga -hNY -xZO -rGb -rGb -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(104,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -lUC -sag -fha -icR -sAf -fwc -ptm -tki -bat -kVY -kVY -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(105,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -sAf -sAf -qhk -pAL -tBh -eal -fMr -wnt -cGa -kVY -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(106,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -cZo -kyl -kyl -kyl -kyl -kyl -rNe -cxT -bsW -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(107,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -lMr -lMr -qXX -lMr -lMr -xRX -cZo -cZo -xRX -kyl -bTh -eeK -tsu -fbI -tvf -rbN -toj -kVY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(108,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -lMr -lMr -lMr -flW -aVD -xCH -lMr -lMr -lMr -xRX -cZo -kyl -pRO -cbu -eVp -kyl -kVY -iGu -kVY -kVY -cZo -cZo -cZo -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(109,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -lMr -lMr -eJP -lMr -nmm -vtb -nGz -lMr -kqn -lMr -cZo -cZo -kXq -kXq -kXq -kXq -kXq -wWv -sJz -xBv -daL -pZt -pZt -cvG -cZo -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(110,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -eNb -aMN -rWG -rQg -wPn -lxU -dCX -kUW -rqr -lMr -lMr -hnK -kXq -njJ -xpr -wAt -kXq -oOE -ubc -vBe -dvx -dvx -cZo -cZo -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(111,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -fpS -bie -xVh -lxU -mzE -iBg -dpB -lxU -goY -dzy -nFA -vIP -gtD -luU -cZb -alY -thk -gtB -dUH -ezg -iMj -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(112,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -qhe -alu -htb -lxB -aha -gxD -sxj -yfm -pHx -lMr -lMr -hnK -kXq -vQG -fbw -elH -kXq -vHT -kEX -giG -bfC -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(113,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -lMr -lMr -bMb -tty -dDI -kKN -pFj -tty -lMr -lMr -cZo -cZo -vIz -xdP -qAM -cjH -kXq -niF -wJH -efB -mIP -dvx -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(114,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -lMr -lMr -lMr -lMr -lMr -lMr -lMr -lMr -xRX -xRX -xRX -vIz -onG -qAM -okw -kXq -sIV -llB -llB -gWy -rGr -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xwI -voU -eHO -xwI -nDC -xRX -jFX -vMT -jFX -jFX -ioW -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(115,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -xRX -cZo -xRX -xRX -xRX -xRX -cZo -cZo -xRX -xRX -vIz -eUH -rel -iPG -kXq -uYD -eAH -anv -qyw -bSQ -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -aIo -aFu -hpQ -aIo -xRX -jFX -rhu -rhu -rhu -kCl -wGR -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(116,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -cZo -xRX -xRX -xRX -cZo -ttP -ttP -ttP -ttP -ttP -uwa -uwa -uwa -uwa -sCv -dvx -dvx -dvx -dvx -dvx -dvx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -hxR -jFX -jFX -jFX -hxR -xRX -xRX -xwI -enj -clC -xwI -xRX -wrN -rhu -rhu -jFX -jFX -oTw -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(117,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -xRX -xRX -xRX -xRX -rRy -ibY -ibY -ibY -ibY -ibY -ttP -auZ -pia -sbO -ttP -kOX -mFI -yls -uwa -lwX -oPp -aqF -txq -rvh -dzO -oPp -oPp -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -hxR -nkE -oHj -nkE -hxR -xRX -xRX -xwI -xyb -bvP -iyY -iyY -wNe -iyY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(118,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -rRy -rRy -rRy -jeM -hfx -mRG -hfx -avL -ttP -qFc -mvN -ybe -ttP -bTJ -pgw -nGd -uwa -qHR -oPp -oPp -oPp -ipe -eHi -nUe -oPp -oPp -xRX -xRX -cJQ -jFX -jFX -jFX -jFX -cJQ -xRX -hxR -bwb -fnF -cpQ -tds -tds -tds -tds -klE -wnr -iyY -hxQ -tdE -iyY -hfc -hfc -hfc -iyY -iyY -iyY -hfc -iyY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(119,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -rRy -srQ -rRy -nJj -unT -wVE -unT -ihj -ttP -uEC -wpQ -dJL -ttP -qBa -sYo -lfY -uwa -lwX -oPp -tlQ -aXd -mVw -alk -ezu -ezu -oPp -cJQ -cJQ -cJQ -wBO -sCK -wBO -wBO -cJQ -cJQ -hxR -tMJ -llk -cTb -tds -kfr -dKe -tds -vCa -bUE -bQm -oTN -oTN -mwg -rMA -lfZ -aOS -tIx -hsE -uOB -bjT -xFM -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(120,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -rRy -rRy -cOr -gMs -vuM -vuM -qgD -tBD -vuM -qZT -nfD -gHG -eij -ttP -uwa -pgu -uwa -uwa -iGd -oPp -oPp -oPp -dSL -oPp -oPp -oPp -oPp -cJQ -cJQ -gLb -eYX -eYX -eYX -eYX -tBz -cJQ -hxR -glk -mKS -auV -mSt -pTL -dQj -tds -lqA -qqs -iIv -gNX -dZG -dZG -ahM -cGr -stk -mhj -kco -oCa -mKC -sPH -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -sAH -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(121,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -wQa -wfj -jJr -rRy -nJj -unT -eIz -vWG -sqo -ttP -riC -qZH -qAE -ttP -nfs -mGk -kze -hcb -xTZ -qAB -sPS -wmx -jIN -hcb -fKa -kze -bKn -cJQ -izm -dRg -dqP -dqP -dqP -dqP -iWj -cDt -bEN -llk -gdk -dqm -tds -tds -tds -tds -kYB -hHn -iyY -uIT -bwm -xGG -iyY -hfc -hfc -iyY -iyY -iyY -hfc -iyY -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(122,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -rRy -wYS -vdb -rRy -dEx -apy -gUw -wyn -ykj -ttP -dWl -qFK -ttP -ttP -mJK -oPG -uFf -oaa -buk -oPG -oQe -oPG -uFf -oaa -buk -oPG -pTK -cJQ -rUo -nWB -pff -jTv -jIf -bOQ -nWB -aay -eMs -llk -nMM -hMc -nhX -pRU -wfX -hxR -oge -haD -koq -koq -koq -koq -koq -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(123,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -rRy -nYf -tRJ -rRy -ibY -ibY -ibY -ppz -ibY -ttP -ttP -ttP -ttP -dzq -pKs -oPG -tiv -tiv -chs -chs -tiv -chs -chs -tiv -tiv -bTU -xvI -cJQ -wdY -nWB -avq -avq -avq -avq -nWB -dCr -eMs -llk -cpP -qkn -vXu -qkn -aMY -hxR -fuo -fHL -koq -man -vzM -bsw -koq -koq -koq -xnb -xnb -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(124,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -rRy -dtB -dYb -rRy -tHA -uql -veL -ozk -veL -rLm -uql -avR -xUa -hDf -oPG -oPG -vXG -mIY -hBA -fGW -irC -dMj -erX -xBX -tiv -cFV -pTK -cJQ -tHL -nTe -nTe -nTe -nTe -nTe -mAt -tzK -eMs -kCJ -hxR -hxR -hxR -hxR -dpI -hxR -gzo -iaE -koq -shT -aIf -faE -aBM -wHc -koq -aaJ -hgF -pLQ -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(125,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -acW -rCO -xUa -xUa -xUa -xUa -eRw -cfU -raR -ylQ -oGX -peb -rvA -auN -xUa -nUP -bTU -tiv -xvM -fZq -pKL -ocM -vaL -vaL -gcD -xkW -ixH -qAB -sDQ -qfg -evg -kYK -evg -evg -hrw -evg -pBk -evg -mqx -evg -quP -nzP -pmZ -gxA -mLa -deg -dPG -hgo -ovU -eph -sTu -cTs -fdA -pVh -pmE -rTE -pMz -hgF -pLQ -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(126,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xUa -fiE -ojk -giR -cCd -lrs -voS -bot -hkg -wXZ -iNM -nIC -bJc -auN -gen -pTK -wQn -tiv -aou -fZq -qKj -kjg -dIe -oAQ -mSp -abE -jTh -wQn -pTK -ngd -xqO -mdq -ujJ -aGc -nSI -mmZ -uTP -ujJ -mdq -epw -fWS -ecm -uRH -iil -ejK -pgM -uRH -hUe -koq -tYJ -muk -hVB -qpb -pWm -rSD -omv -kJT -cpa -pLQ -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(127,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -pQl -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -fmO -fiE -kDa -rUN -vxs -snL -sDB -qDU -aYu -odC -nta -vHa -pLf -bWY -bJS -hxK -eGu -tiv -jwV -fBb -aep -fZq -ocM -gXv -bBK -wdH -tiv -yjI -iTT -eoL -eoL -kSJ -eoL -bBt -bBt -bBt -bBt -bBt -kyD -cEB -kbm -kbm -eQw -kbm -lFp -lFp -lxR -lFp -uyG -uyG -uyG -uyG -pXP -hQq -doT -eSP -szj -pMz -hgF -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(128,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -mgN -fiE -svl -giR -uDT -gen -ovI -qBX -hkg -vLB -tSX -tPl -bJc -auN -gen -pTK -qFw -tiv -kPs -fZq -qKj -hiw -eWQ -eWe -vaL -abE -rqN -qFw -vAT -eoL -pcc -jvJ -mCr -bBt -tqK -tBp -mbl -bBt -sER -kdb -kbm -iaY -vxl -frC -lFp -rnD -pAh -dmo -uyG -yeK -olk -uyG -lXK -cBc -xeU -qDf -xvv -qad -cpa -fmq -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(129,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xUa -rCO -xUa -xUa -xUa -xUa -oaE -gDz -aHt -iwa -qnz -raU -olX -auN -xUa -nUP -bTU -tiv -xvM -fZq -ttn -ocM -mSp -mSp -cLf -abE -jTh -oPG -pTK -xPN -gUU -bXv -gtK -lFs -qVR -ciT -vWP -taD -jCC -xqO -kbm -fZl -ebp -rWn -lFp -eKj -lFc -vxo -uyG -rVk -bMf -uyG -myM -vUE -tkv -nvu -pIE -mno -ssT -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(130,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -ncl -deH -opu -ncl -ctj -pee -bTW -mru -tix -vvd -xNE -oOZ -xUa -hDf -oPG -oPG -vXG -vZS -jGb -aWi -pUM -eXn -eyp -sYZ -tiv -cFV -pTK -xPN -cpy -nrb -ibm -bBt -lIz -wjC -bgj -bBt -mdq -tOo -kbm -alG -aEq -qbw -lFp -ans -gEX -aEc -uyG -cmK -dbL -uyG -lDm -eUC -oAx -omv -dHm -cpa -pLQ -pLQ -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(131,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -ncl -deH -cZv -ncl -ncl -rkh -rkh -dkm -rkh -rkh -rkh -rkh -rkh -cUz -wAN -oPG -tiv -tiv -chs -chs -tiv -chs -chs -tiv -tiv -bTU -nUP -xPN -nIE -xBH -pkK -bBt -mHX -bfs -mwV -bBt -twq -vSK -xTI -hMR -xTI -xTI -lFp -tjk -dhp -nPF -azb -wpb -vEM -skg -unf -gpE -irg -sFI -mno -ssT -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(132,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -ncl -deH -cZv -bpi -ncl -wcv -suq -hQI -bUA -ooB -izV -gNd -rkh -rkh -mJK -oPG -uFf -udO -buk -oPG -oQe -oPG -uFf -udO -buk -oPG -pTK -xPN -ryL -vgX -gtK -bBt -tLl -nMj -mwQ -bBt -hLa -tLN -xTI -nCS -ucA -eOA -lFp -tcZ -gGR -xoC -uyG -fdQ -cBV -uyG -ihf -ggY -koq -erT -ssT -pLQ -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(133,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -usf -xtv -cZv -hml -ncl -tfs -ybH -pqD -dRG -bzx -bRe -uiE -cVr -rkh -akr -sVK -kze -bFS -pyi -qAB -sPS -cfg -ezp -bFS -wrB -kze -uiC -eoL -sMN -mCK -vcT -pms -pms -pms -pms -pms -vsW -ofE -xTI -joh -vzV -cQs -lFp -kYC -vNs -tIZ -uyG -aBY -bqt -uyG -koq -koq -pBz -xnb -xnb -pLQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(134,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -ncl -ncl -mWe -qKc -pYG -ftc -eyZ -fan -inN -cmj -oXz -pxM -kln -rkh -jTd -yiy -jTd -jTd -iGd -nNN -nNN -nNN -uzv -nNN -nNN -nNN -nNN -eoL -dxL -iHI -dxL -pms -iHp -duv -ewD -iEr -yiK -mSC -xTI -aZQ -mDg -aZQ -lFp -wei -moK -wei -uyG -erN -erN -uyG -koq -koq -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(135,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -ncl -ktK -dNR -ncl -yiP -bMe -pwW -gzE -rkh -nFv -qcD -gFH -rkh -mPz -hYV -pew -jTd -lwX -nNN -qVz -spM -rEo -uNK -keA -rMc -caK -jFX -jFX -jFX -jFX -pms -pms -xVq -iyU -pms -iDl -ffF -xTI -jFX -jFX -jFX -lFp -jFX -jFX -jFX -uyG -jFX -jFX -uyG -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(136,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -ncl -ncl -ncl -ncl -frE -nNc -tqu -xIv -rkh -dhC -pxM -jQB -rkh -iGW -oFx -vur -jTd -qHR -nNN -ogq -mNi -mRQ -aVG -rMc -caK -caK -jFX -xRX -xRX -xRX -xRX -pms -pms -pms -pms -hos -qUT -cJQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(137,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -ncl -ozh -ozh -ozh -ozh -rkh -frE -pDu -xff -rkh -sNP -sNP -sNP -jTd -lwX -nNN -vKK -qXH -dbQ -rMc -caK -caK -jFX -jFX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cJQ -dCe -iaP -cJQ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(138,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -xRX -xRX -xRX -xRX -cZo -cZo -xRX -xRX -xRX -cZo -rkh -ozh -ozh -ozh -rkh -jTd -jTd -jTd -jTd -vhC -blz -blz -blz -blz -blz -blz -jFX -jFX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -oHo -wvk -vmF -oHo -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(139,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -xRX -cZo -xRX -xRX -xRX -xRX -cZo -cZo -xRX -xRX -dUz -bAS -mwv -vAj -dUz -fAR -hfh -hfh -frx -glf -blz -xRX -xRX -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -nDC -cJQ -tMO -nOh -cJQ -nDC -xRX -xRX -nDC -xRX -xRX -nDC -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(140,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kEk -kEk -kEk -kEk -kEk -kEk -kEk -kEk -xRX -xRX -xRX -dUz -bsd -dUz -dsW -dUz -hse -cgu -gnT -xlW -eKI -blz -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(141,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kEk -kEk -sOJ -cLq -irI -uch -dQc -cLq -kEk -kEk -cZo -cZo -dUz -gBf -vaa -idv -dUz -mTN -iWp -gnT -uCS -blz -blz -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(142,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -rCz -svV -jLv -tnS -koL -iAc -uOq -qaN -hAC -kEk -kEk -lOp -dUz -eFE -lKN -xLJ -ceE -kZd -lkV -gnT -qkd -blz -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(143,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nhD -mcH -haM -mJt -cFR -ryX -xZd -mJt -haQ -wNa -owC -uFP -hvl -xLJ -mia -kJk -dUz -tEa -gnT -nmC -khF -blz -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(144,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -spF -czO -vyW -azV -lRW -mJt -twx -eMk -iGG -kEk -kEk -lOp -dUz -txg -wbF -rNg -dUz -eDG -sDI -vhF -blz -blz -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(145,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kEk -kEk -lHp -kEk -grl -akp -tHH -kEk -mFJ -kEk -cZo -cZo -dUz -dUz -dUz -dUz -dUz -peq -tHY -cSs -blz -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(146,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kEk -kEk -kEk -nfF -vRI -pYS -kEk -kEk -kEk -xRX -cZo -csD -hhw -tZg -dzQ -csD -uOn -dPj -uOn -uOn -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(147,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -kEk -kEk -eTK -kEk -kEk -xRX -cZo -cZo -xRX -csD -dra -aqh -tzA -tcN -hDC -hoO -rXs -uOn -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(148,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -cZo -cZo -csD -csD -csD -csD -csD -mNy -fVL -sPF -uOn -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(149,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -pPr -pPr -pdo -aYF -jBs -sKm -awc -cCp -mBS -uOn -uOn -uOn -uOn -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(150,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -mDz -aZa -ksW -pww -pPr -bsM -fWH -lVB -cRh -lpc -djK -vfh -lqF -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(151,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -mDz -aZa -eRN -nFf -oUi -muj -arX -uAK -rZr -bGg -djK -vfh -jjJ -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(152,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -pPr -pPr -hfi -raE -cDq -oUi -nbH -arX -rZr -rZr -bGg -djK -vfh -mGe -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(153,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -pPr -pPr -pPr -pPr -pPr -dxU -arX -veY -qrU -tKR -lzs -lzs -oTw -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(154,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -jFX -tOm -xvb -uJD -wAi -jcw -seW -all -dbC -uOn -uOn -uOn -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(155,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -uOn -kRt -uOn -uOn -wbV -uOn -uOn -uOn -uOn -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(156,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -uOn -uOn -uOn -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(157,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(158,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(159,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(160,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(161,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(162,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(163,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(164,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(165,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(166,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(167,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(168,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -nwx -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(169,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(170,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(171,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(172,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(173,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(174,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(175,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(176,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(177,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(178,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(179,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(180,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(181,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -mtk -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(182,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(183,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(184,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(185,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(186,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(187,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(188,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(189,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(190,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(191,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(192,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(193,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(194,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(195,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(196,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(197,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(198,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(199,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(200,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(201,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(202,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(203,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(204,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(205,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(206,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(207,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(208,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(209,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(210,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(211,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(212,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(213,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(214,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(215,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(216,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(217,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(218,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(219,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(220,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(221,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(222,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(223,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(224,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(225,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(226,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(227,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(228,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(229,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(230,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(231,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(232,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(233,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(234,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(235,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(236,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(237,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(238,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(239,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(240,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(241,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(242,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(243,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(244,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(245,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(246,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(247,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(248,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(249,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(250,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(251,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(252,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(253,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(254,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} -(255,1,2) = {" -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -xRX -"} diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_areas.dm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette_areas.dm deleted file mode 100644 index abe7fb3619d..00000000000 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_areas.dm +++ /dev/null @@ -1,137 +0,0 @@ -/area/dominian_corvette - name = "Dominian Corvette" - icon_state = "red" - requires_power = TRUE - dynamic_lighting = TRUE - no_light_control = FALSE - base_turf = /turf/space - area_flags = AREA_FLAG_RAD_SHIELDED - ambience = AMBIENCE_ENGINEERING - -/area/dominian_corvette/exterior - name = "Dominian Corvette - Exterior" - -/area/dominian_corvette/docking_arm - name = "Dominian Corvette - Docking Arm" - -/area/dominian_corvette/fore_hallway - name = "Dominian Corvette - Fore Hallway" - -/area/dominian_corvette/helm - name = "Dominian Corvette - Helm" - -/area/dominian_corvette/co_office - name = "Dominian Corvette - Commanding Officer's Quarters" - -/area/dominian_corvette/co_cabin - name = "Dominian Corvette - Commanding Officer's Cabin" - -/area/dominian_corvette/fo_office - name = "Dominian Corvette - First Officer's Quarters" - -/area/dominian_corvette/fo_cabin - name = "Dominian Corvette - First Officer's Cabin" - -/area/dominian_corvette/galley - name = "Dominian Corvette - Galley" - -/area/dominian_corvette/freezer - name = "Dominian Corvette - Freezer" - -/area/dominian_corvette/mess_hall - name = "Dominian Corvette - Mess Hall" - -/area/dominian_corvette/telecomms - name = "Dominian Corvette - Telecommunications" - -/area/dominian_corvette/bunks - name = "Dominian Corvette - Crew Bunks" - -/area/dominian_corvette/lounge - name = "Dominian Corvette - Crew Lounge" - -/area/dominian_corvette/central_ring - name = "Dominian Corvette - Central Ring" - -/area/dominian_corvette/chapel - name = "Dominian Corvette - Chapel" - -/area/dominian_corvette/bathroom - name = "Dominian Corvette - Lavatory" - -/area/dominian_corvette/custodial - name = "Dominian Corvette - Custodial Closet" - -/area/dominian_corvette/cryogenics - name = "Dominian Corvette - Cryogenics" - -/area/dominian_corvette/hydroponics - name = "Dominian Corvette - Hydroponics" - -/area/dominian_corvette/atmospherics - name = "Dominian Corvette - Atmospherics" - -/area/dominian_corvette/cargo - name = "Dominian Corvette - Warehouse" - -/area/dominian_corvette/engineering - name = "Dominian Corvette - Engineering" - -/area/dominian_corvette/reactor - name = "Dominian Corvette - Reactor Compartment" - -/area/dominian_corvette/central_lift - name = "Dominian Corvette - Central Lift" - -/area/dominian_corvette/eva_prep - name = "Dominian Corvette - EVA Preperations" - -/area/dominian_corvette/armoury - name = "Dominian Corvette - Armoury" - -/area/dominian_corvette/brig - name = "Dominian Corvette - Brig" - -/area/dominian_corvette/infirmary - name = "Dominian Corvette - Infirmary" - -/area/dominian_corvette/morgue - name = "Dominian Corvette - Morgue" - -/area/dominian_corvette/gunnery_starboard - name = "Dominian Corvette - Starboard Gunnery" - -/area/dominian_corvette/magazine_starboard - name = "Dominian Corvette - Starboard Magazine" - -/area/dominian_corvette/fc_starboard - name = "Dominian Corvette - Starboard Fire Control" - -/area/dominian_corvette/gunnery_port - name = "Dominian Corvette - Portside Gunnery" - -/area/dominian_corvette/magazine_port - name = "Dominian Corvette - Portside Magazine" - -/area/dominian_corvette/fc_port - name = "Dominian Corvette - Portside Fire Control" - -/area/dominian_corvette/thrust_starboard - name = "Dominian Corvette - Starboard Thruster Module" - -/area/dominian_corvette/thrust_port - name = "Dominian Corvette - Portside Thruster Module" - -/area/dominian_corvette/hangar - name = "Dominian Corvette - Hangar" - -// Shuttle area -/area/shuttle/dominian_shuttle - name = "Dominian Shuttle" - icon_state = "shuttle2" - requires_power = TRUE - -// Lift area. -/area/turbolift/dominian_corvette/dominian_lift - name = "Dominian Corvette Lift" - station_area = FALSE diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_ghostroles.dm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette_ghostroles.dm index 199ddce1317..6236680ff54 100644 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_ghostroles.dm +++ b/maps/away/ships/dominia/dominian_corvette/dominian_corvette_ghostroles.dm @@ -1,4 +1,4 @@ -// Voidsmen, regular crew +//elyran naval infantry /datum/ghostspawner/human/imperial_fleet_voidsman short_name = "imperial_fleet_voidsman" @@ -18,13 +18,11 @@ special_role = "Imperial Fleet Voidsman" respawn_flag = null - culture_restriction = list(/singleton/origin_item/culture/dominia) /obj/outfit/admin/imperial_fleet_voidsman name = "Imperial Fleet Voidsman" uniform = /obj/item/clothing/under/dominia/fleet - accessory = /obj/item/clothing/accessory/dominia head = /obj/item/clothing/head/dominia/fleet shoes = /obj/item/clothing/shoes/jackboots back = /obj/item/storage/backpack/satchel @@ -33,58 +31,11 @@ l_ear = /obj/item/device/radio/headset/ship - backpack_contents = list(/obj/item/storage/box/survival = 1, /obj/item/clothing/accessory/badge/passport/dominia) + backpack_contents = list(/obj/item/storage/box/survival = 1) /obj/outfit/admin/imperial_fleet_voidsman/get_id_access() return list(ACCESS_IMPERIAL_FLEET_VOIDSMAN_SHIP, ACCESS_EXTERNAL_AIRLOCKS) -// Armsmen, equivalent to naval infantry - -/datum/ghostspawner/human/imperial_fleet_voidsman/armsman - short_name = "imperial_fleet_armsman" - name = "Imperial Fleet Armsman" - desc = "You are a Ma’zal (a Dominian citizen not from Moroz) who serves as an Imperial Fleet armsman, and are expected to defend the ship from boarders. While not one of the elite Marines, you are older, more experienced, and are well-trained and well-equipped to defend your vessel. You have been trained to obey your commanding officer, and most nobles, without question or delay. (OOC Note: Players should be familiar with Dominian lore and play a character with a background appropriate to a Dominian Ma'zal.)" - mob_name_prefix = "ARMSN. " //Armsman - - max_count = 2 - - outfit = /obj/outfit/admin/imperial_fleet_voidsman/armsman - - assigned_role = "Imperial Fleet Armsman" - special_role = "Imperial Fleet Armsman" - - -/obj/outfit/admin/imperial_fleet_voidsman/armsman - name = "Imperial Fleet Armsman" - head = /obj/item/clothing/head/dominia/fleet/armsman - uniform = /obj/item/clothing/under/dominia/fleet/armsman - -// On-board Priest who is also a commissioned officer of the Fleet, XO and ship doctor - -/datum/ghostspawner/human/imperial_fleet_voidsman/priest - short_name = "imperial_fleet_priest" - name = "Imperial Fleet Priest" - desc = "You are a Ma’zal (a Dominian citizen not from Moroz) educated and trained by the Moroz Holy Tribunal to serve as a priest or priestess of the Imperial Military, a great honour. While you are nominally a civilian, life on the frontier is harsh and barbaric Coalitioners will show you little mercy. You have been trained in basic military tactics and are expected to fight shoulder-to-shoulder with your fellow crew in a boarding action. You have more education than your fellow crewmembers and also serve as the ship’s doctor. (OOC Note: Players should be familiar with Dominian lore and play a character with a background appropriate to a Dominian Ma'zal.)" - mob_name_prefix = null - - max_count = 1 - - outfit = /obj/outfit/admin/imperial_fleet_voidsman/priest - - assigned_role = "Imperial Fleet Priest" - special_role = "Imperial Fleet Priest" - -/obj/outfit/admin/imperial_fleet_voidsman/priest - name = "Imperial Fleet Priest" - head = /obj/item/clothing/head/dominia/fleet/officer - uniform = /obj/item/clothing/under/dominia/fleet/officer - shoes = /obj/item/clothing/shoes/laceup - gloves = /obj/item/clothing/gloves/black_leather/white - suit = /obj/item/clothing/suit/storage/dominia/fleet - back = /obj/item/storage/backpack/satchel/leather - -// Captain - /datum/ghostspawner/human/imperial_fleet_voidsman/officer short_name = "imperial_fleet_voidsman_officer" name = "Imperial Fleet Officer" @@ -104,17 +55,50 @@ name = "Imperial Fleet Officer" head = /obj/item/clothing/head/dominia/fleet/officer uniform = /obj/item/clothing/under/dominia/fleet/officer - shoes = /obj/item/clothing/shoes/laceup - gloves = /obj/item/clothing/gloves/black_leather/white suit = /obj/item/clothing/suit/storage/dominia/fleet - back = /obj/item/storage/backpack/satchel/leather + +/datum/ghostspawner/human/imperial_fleet_voidsman/armsman + short_name = "imperial_fleet_armsman" + name = "Imperial Fleet Armsman" + desc = "You are a Ma’zal (a Dominian citizen not from Moroz) who serves as an Imperial Fleet armsman, and are expected to defend the ship from boarders. While not one of the elite Marines, you are older, more experienced, and are well-trained and well-equipped to defend your vessel. You have been trained to obey your commanding officer, and most nobles, without question or delay. (OOC Note: Players should be familiar with Dominian lore and play a character with a background appropriate to a Dominian Ma'zal.)" + mob_name_prefix = "ARMSN. " //Armsman + + max_count = 2 + + outfit = /obj/outfit/admin/imperial_fleet_voidsman/armsman + + assigned_role = "Imperial Fleet Armsman" + special_role = "Imperial Fleet Armsman" + + +/obj/outfit/admin/imperial_fleet_voidsman/armsman + name = "Imperial Fleet Armsman" + head = /obj/item/clothing/head/dominia/fleet/armsman + uniform = /obj/item/clothing/under/dominia/fleet/armsman + accessory = /obj/item/clothing/accessory/poncho/dominia_cape/mantle + +/datum/ghostspawner/human/imperial_fleet_voidsman/priest + short_name = "imperial_fleet_priest" + name = "Imperial Fleet Priest" + desc = "You are a Ma’zal (a Dominian citizen not from Moroz) educated and trained by the Moroz Holy Tribunal to serve as a priest or priestess of the Imperial Military, a great honour. While you are nominally a civilian, life on the frontier is harsh and barbaric Coalitioners will show you little mercy. You have been trained in basic military tactics and are expected to fight shoulder-to-shoulder with your fellow crew in a boarding action. You have more education than your fellow crewmembers and also serve as the ship’s doctor. (OOC Note: Players should be familiar with Dominian lore and play a character with a background appropriate to a Dominian Ma'zal.)" + mob_name_prefix = null + + max_count = 1 + + outfit = /obj/outfit/admin/imperial_fleet_voidsman/priest + + assigned_role = "Imperial Fleet Priest" + special_role = "Imperial Fleet Priest" + + +/obj/outfit/admin/imperial_fleet_voidsman/priest + name = "Imperial Fleet Priest" + head = /obj/item/clothing/head/beret/dominia/priest + uniform = /obj/item/clothing/under/dominia/priest + accessory = /obj/item/clothing/accessory/poncho/dominia/red/surcoat //items /obj/item/card/id/imperial_fleet name = "imperial fleet id" access = list(ACCESS_IMPERIAL_FLEET_VOIDSMAN_SHIP, ACCESS_EXTERNAL_AIRLOCKS) - -/obj/item/clothing/gloves/black_leather/white - name = "white leather gloves" - color = "#DDDDDD" diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_landmarks.dm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette_landmarks.dm deleted file mode 100644 index 8f942381290..00000000000 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_landmarks.dm +++ /dev/null @@ -1,99 +0,0 @@ -// Maintenance airlocks -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_hangar - name = "Maintenance Hatch" - master_tag = "dominia_aft_hangar" - -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_starboard - name = "Maintenance Hatch" - master_tag = "dominia_aft_starboard" - -/obj/effect/map_effect/marker/airlock/dominian_corvette/aft_port - name = "Maintenance Hatch" - master_tag = "dominia_aft_port" - -// Docking Ports -// Starboard dock -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/starboard_dock - name = "Starboard Dock" - master_tag = "airlock_dominia_starboard_dock" - landmark_tag = "dominian_corvette_starboard_dock" - -/obj/effect/shuttle_landmark/dominian_corvette/dock_starboard - name = "Starboard Dock" - docking_controller = "airlock_dominia_starboard_dock" - landmark_tag = "dominian_corvette_starboard_dock" - -// Port dock -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/port_dock - name = "Port Dock" - master_tag = "airlock_dominia_port_dock" - landmark_tag = "dominian_corvette_port_dock" - -/obj/effect/shuttle_landmark/dominian_corvette/dock_port - name = "Port Dock" - docking_controller = "airlock_dominia_port_dock" - landmark_tag = "dominian_corvette_port_dock" - -// Aft dock -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/aft_dock - name = "Aft Dock" - master_tag = "airlock_dominia_aft_dock" - landmark_tag = "dominian_corvette_aft_dock" - -/obj/effect/shuttle_landmark/dominian_corvette/dock_aft - name = "Aft Dock" - docking_controller = "airlock_dominia_aft_dock" - landmark_tag = "dominian_corvette_aft_dock" - -// Fore dock -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/fore_dock - name = "Fore Dock" - master_tag = "airlock_dominia_fore_dock" - landmark_tag = "dominian_corvette_fore_dock" - -/obj/effect/shuttle_landmark/dominian_corvette/dock_fore - name = "Fore Dock" - docking_controller = "airlock_dominia_fore_dock" - landmark_tag = "dominian_corvette_fore_dock" - -// Space landmarks -/obj/effect/shuttle_landmark/dominian_corvette/nav1 - name = "Dominian Corvette - Fore" - landmark_tag = "nav_dominian_corvette_1" - -/obj/effect/shuttle_landmark/dominian_corvette/nav2 - name = "Dominian Corvette - Aft" - landmark_tag = "nav_dominian_corvette_2" - -/obj/effect/shuttle_landmark/dominian_corvette/nav3 - name = "Dominian Corvette - Starboard" - landmark_tag = "nav_dominian_corvette_3" - -/obj/effect/shuttle_landmark/dominian_corvette/nav4 - name = "Dominian Corvette - Port" - landmark_tag = "nav_dominian_corvette_4" - -// Lift -/datum/shuttle/autodock/multi/lift/dominia - name = "Dominian Corvette Lift" - current_location = "nav_dominia_lift_first_deck" - shuttle_area = /area/turbolift/dominian_corvette/dominian_lift - destination_tags = list( - "nav_dominia_lift_first_deck", - "nav_dominia_lift_second_deck", - ) - -/obj/effect/shuttle_landmark/lift/dominia_first_deck - name = "Dominian Corvette - First Deck" - landmark_tag = "nav_dominia_lift_first_deck" - base_area = /area/dominian_corvette/hangar - base_turf = /turf/simulated/floor/plating - -/obj/effect/shuttle_landmark/lift/dominia_second_deck - name = "Dominian Corvette - Second Deck" - landmark_tag = "nav_dominia_lift_second_deck" - base_area = /area/dominian_corvette/central_lift - base_turf = /turf/simulated/open - -/obj/machinery/computer/shuttle_control/multi/lift/dominian_corvette - shuttle_tag = "Dominian Corvette Lift" diff --git a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_shuttle.dm b/maps/away/ships/dominia/dominian_corvette/dominian_corvette_shuttle.dm deleted file mode 100644 index 9524634dd97..00000000000 --- a/maps/away/ships/dominia/dominian_corvette/dominian_corvette_shuttle.dm +++ /dev/null @@ -1,63 +0,0 @@ -/obj/effect/overmap/visitable/ship/landable/dominian_shuttle - name = "Dominian Shuttle" - class = "HIMS" - designation = "Chariot" - desc = "A light shuttle used by the Imperial Fleet to move small amounts of cargo or personnel between vessels, the Yupmi-class shuttle is a dependable utility craft. Like most Dominian vessels it is relatively well armored for its size but is not a combat vessel by any means. A short operational range means a Yupmi should never stray too far from its vessel of origin as it will soon run out of fuel." - shuttle = "Dominian Shuttle" - icon_state = "shuttle" - moving_state = "shuttle_moving" - designer = "Zhurong Naval Arsenal, Empire of Dominia" - sizeclass = "Yupmi-class Shuttle" - shiptype = "Short-distance cargo and personnel transport" - colors = list("#df1032", "#d4296b") - max_speed = 1/(3 SECONDS) - burn_delay = 2 SECONDS - vessel_mass = 3000 - fore_dir = SOUTH - vessel_size = SHIP_SIZE_TINY - -/obj/machinery/computer/shuttle_control/explore/terminal/dominian_shuttle - name = "shuttle control console" - shuttle_tag = "Dominian Shuttle" - req_access = list(ACCESS_IMPERIAL_FLEET_VOIDSMAN_SHIP) - -// Controls docking behaviour -/datum/shuttle/autodock/overmap/dominian_shuttle - name = "Dominian Shuttle" - move_time = 20 - shuttle_area = list(/area/shuttle/dominian_shuttle) - current_location = "nav_hangar_dominia" - landmark_transition = "nav_transit_dominian_shuttle" - dock_target = "airlock_dominian_shuttle" - range = 1 - fuel_consumption = 2 - logging_home_tag = "nav_hangar_dominia" - defer_initialisation = TRUE - -// Hangar marker -/obj/effect/shuttle_landmark/dominian_shuttle/hangar - name = "Shuttle Port" - landmark_tag = "nav_hangar_dominia" - docking_controller = "dominian_shuttle_dock" - base_area = /area/space - base_turf = /turf/space - movable_flags = MOVABLE_FLAG_EFFECTMOVE - -// Transit landmark -/obj/effect/shuttle_landmark/dominian_shuttle/transit - name = "In transit" - landmark_tag = "nav_transit_dominian_shuttle" - base_turf = /turf/space/transit/north - -// Shuttle docking port -/obj/effect/map_effect/marker/airlock/docking/dominian_corvette/shuttle_port - name = "Shuttle Dock" - landmark_tag = "nav_hangar_dominia" - master_tag = "dominia_shuttle_dock" - -// Shuttle airlock -/obj/effect/map_effect/marker/airlock/shuttle/dominian_shuttle - name = "dominian_shuttle" - master_tag = "dominian_shuttle" - shuttle_tag = "Dominian Shuttle" - cycle_to_external_air = TRUE diff --git a/maps/away/ships/tajara/taj_smuggler/tajaran_smuggler.dmm b/maps/away/ships/tajara/taj_smuggler/tajaran_smuggler.dmm index 93a7a9444fb..85e95609586 100644 --- a/maps/away/ships/tajara/taj_smuggler/tajaran_smuggler.dmm +++ b/maps/away/ships/tajara/taj_smuggler/tajaran_smuggler.dmm @@ -2297,8 +2297,8 @@ /obj/item/reagent_containers/food/drinks/bottle/treebark_firewater, /obj/item/reagent_containers/food/drinks/bottle/veterans_choice, /obj/item/reagent_containers/food/drinks/bottle/veterans_choice, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine, /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine, /obj/item/reagent_containers/food/drinks/bottle/small/khlibnyz, diff --git a/maps/random_ruins/exoplanets/adhomai/adhomai_bar.dmm b/maps/random_ruins/exoplanets/adhomai/adhomai_bar.dmm index 46048f630c3..eab9c24e7ed 100644 --- a/maps/random_ruins/exoplanets/adhomai/adhomai_bar.dmm +++ b/maps/random_ruins/exoplanets/adhomai/adhomai_bar.dmm @@ -14,8 +14,8 @@ /obj/item/seeds/earthenroot, /obj/item/seeds/blizzard, /obj/item/seeds/blizzard, -/obj/item/seeds/dirtberries, -/obj/item/seeds/dirtberries, +/obj/item/seeds/nifberries, +/obj/item/seeds/nifberries, /turf/simulated/floor/exoplanet/wood, /area/adhomai_bar) "bf" = ( @@ -282,10 +282,10 @@ /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine, /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine, /obj/item/reagent_containers/food/drinks/bottle/shyyrkirrtyr_wine, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, /obj/item/reagent_containers/food/drinks/bottle/small/midynhr_water, /obj/item/reagent_containers/food/drinks/bottle/small/midynhr_water, /obj/item/reagent_containers/food/drinks/bottle/small/midynhr_water, @@ -865,8 +865,8 @@ /obj/item/seeds/blizzard, /obj/item/seeds/sugartree, /obj/item/seeds/sugartree, -/obj/item/seeds/dirtberries, -/obj/item/seeds/dirtberries, +/obj/item/seeds/nifberries, +/obj/item/seeds/nifberries, /turf/simulated/floor/exoplanet/wood, /area/adhomai_bar) "Wa" = ( diff --git a/maps/random_ruins/exoplanets/adhomai/adhomai_hunting.dmm b/maps/random_ruins/exoplanets/adhomai/adhomai_hunting.dmm index 2ca95d0b706..977dba1bfde 100644 --- a/maps/random_ruins/exoplanets/adhomai/adhomai_hunting.dmm +++ b/maps/random_ruins/exoplanets/adhomai/adhomai_hunting.dmm @@ -179,7 +179,7 @@ "wj" = ( /obj/structure/closet/crate/hydroponics, /obj/item/seeds/mtearseed, -/obj/item/seeds/dirtberries, +/obj/item/seeds/nifberries, /obj/item/seeds/sugartree, /obj/item/seeds/earthenroot, /turf/simulated/floor/exoplanet/snow/cold, diff --git a/maps/random_ruins/exoplanets/adhomai/adhomai_village.dmm b/maps/random_ruins/exoplanets/adhomai/adhomai_village.dmm index a2fa6f227f7..06f6fd16864 100644 --- a/maps/random_ruins/exoplanets/adhomai/adhomai_village.dmm +++ b/maps/random_ruins/exoplanets/adhomai/adhomai_village.dmm @@ -256,8 +256,8 @@ /obj/item/seeds/earthenroot, /obj/item/seeds/blizzard, /obj/item/seeds/blizzard, -/obj/item/seeds/dirtberries, -/obj/item/seeds/dirtberries, +/obj/item/seeds/nifberries, +/obj/item/seeds/nifberries, /turf/simulated/floor/exoplanet/wood, /area/adhomai_village) "qk" = ( @@ -606,8 +606,8 @@ /obj/item/seeds/blizzard, /obj/item/seeds/sugartree, /obj/item/seeds/sugartree, -/obj/item/seeds/dirtberries, -/obj/item/seeds/dirtberries, +/obj/item/seeds/nifberries, +/obj/item/seeds/nifberries, /turf/simulated/floor/exoplanet/wood, /area/adhomai_village) "Iy" = ( diff --git a/maps/random_ruins/exoplanets/adhomai/nka_base.dmm b/maps/random_ruins/exoplanets/adhomai/nka_base.dmm index a75074a07a5..1e5b13ac04c 100644 --- a/maps/random_ruins/exoplanets/adhomai/nka_base.dmm +++ b/maps/random_ruins/exoplanets/adhomai/nka_base.dmm @@ -537,7 +537,7 @@ /obj/item/reagent_containers/food/drinks/bottle/messa_mead, /obj/item/reagent_containers/food/drinks/drinkingglass/newglass/mug, /obj/item/reagent_containers/food/drinks/drinkingglass/newglass/mug, -/obj/item/reagent_containers/food/drinks/bottle/sugartree_liquor, +/obj/item/reagent_containers/food/drinks/bottle/nmshaan_liquor, /turf/simulated/floor/exoplanet/wood, /area/nka_base) "Jg" = ( diff --git a/maps/sccv_horizon/code/sccv_horizon.dm b/maps/sccv_horizon/code/sccv_horizon.dm index 0d083dad741..a618f245e71 100644 --- a/maps/sccv_horizon/code/sccv_horizon.dm +++ b/maps/sccv_horizon/code/sccv_horizon.dm @@ -152,8 +152,8 @@ evac_controller_type = /datum/evacuation_controller/starship - allowed_spawns = list("Living Quarters Lift", "Cryogenic Storage", "Medbay Recovery Ward") - spawn_types = list(/datum/spawnpoint/living_quarters_lift, /datum/spawnpoint/cryo, /datum/spawnpoint/medbay_recovery) + allowed_spawns = list("Living Quarters Lift", "Cryogenic Storage") + spawn_types = list(/datum/spawnpoint/living_quarters_lift, /datum/spawnpoint/cryo) default_spawn = "Living Quarters Lift" allow_borgs_to_leave = TRUE diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index e34698d7138..75b30a57506 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -1,14 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Hangar" - }, /obj/machinery/door/blast/regular/open{ dir = 8; id = "hangarlockdown"; name = "Hangar Lockdown" }, +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Hangar" + }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/hangar/intrepid) @@ -2124,7 +2124,12 @@ pixel_x = 7; pixel_y = 14 }, -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/structure/railing/mapped{ dir = 8 }, @@ -5177,17 +5182,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm/north, /obj/machinery/door/blast/shutters/open{ dir = 8; id = "shutters_hangardeskcpport"; name = "Security Checkpoint Shutter" }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm/north, /turf/simulated/floor/tiled, /area/security/checkpoint) "aKy" = ( @@ -9159,10 +9160,10 @@ /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_storage) "bkY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood, @@ -11818,13 +11819,6 @@ }, /turf/simulated/floor/tiled, /area/operations/loading) -"bEp" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "bEx" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -12152,7 +12146,12 @@ /turf/simulated/floor/tiled/dark, /area/hangar/control) "bGN" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/item/device/flashlight/lamp/holodeck{ light_color = "#C48A18"; light_power = 2; @@ -12183,30 +12182,18 @@ /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) "bGX" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(5,12) + }, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Recovery"; - req_access = list(5); - id_tag = "RecoveryWard" - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ward) +/turf/simulated/floor, +/area/maintenance/bridge) "bGY" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -12276,6 +12263,11 @@ /obj/structure/cable/green{ icon_state = "0-2" }, +/obj/structure/curtain/open/medical, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/folder, /turf/simulated/floor/tiled/white, /area/medical/ward) "bHs" = ( @@ -14176,14 +14168,15 @@ icon_state = "1-2" }, /obj/structure/cable/green, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/latejoinmedbayrecovery, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/machinery/power/apc/west, +/turf/simulated/floor, +/area/maintenance/bridge) "bTL" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor{ @@ -14831,15 +14824,10 @@ /turf/space/transit/east, /area/template_noop) "bYL" = ( -/obj/item/folder, -/obj/structure/table/glass{ - table_reinf = "glass" +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Recovery1" }, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark/full, /area/medical/ward) "bYM" = ( /obj/machinery/light/small/emergency{ @@ -17282,7 +17270,7 @@ }, /obj/structure/trash_pile, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "cqg" = ( /obj/machinery/airlock_sensor{ dir = 4; @@ -18982,20 +18970,6 @@ /obj/structure/bed/stool/chair/office/bridge, /turf/simulated/floor/carpet/rubber, /area/bridge/controlroom) -"cEK" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/structure/curtain/open/medical, -/obj/item/folder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "cEL" = ( /obj/machinery/door/airlock/glass_command{ dir = 1; @@ -19081,7 +19055,6 @@ /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/effect/floor_decal/corner_wide/green/full, /turf/simulated/floor/tiled/white, /area/medical/ward) "cFC" = ( @@ -19990,8 +19963,9 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/wall, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/bridge) "cMy" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -30876,12 +30850,8 @@ /turf/simulated/open, /area/turbolift/primary/deck_3) "eqE" = ( -/obj/structure/curtain/open/medical, -/obj/structure/bed/stool/padded/red{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -36967,7 +36937,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white, /area/medical/ward) "fjA" = ( @@ -38771,14 +38740,8 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "fzi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled/white, +/area/medical/ward) "fzj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -40330,16 +40293,14 @@ /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/machinery/alarm/west{ + req_one_access = list(24,11,55) + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(5,12) - }, -/obj/machinery/door/firedoor, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "fKD" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48701,8 +48662,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/item/reagent_containers/food/drinks/carton/cream, /obj/item/reagent_containers/food/drinks/carton/cream, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/soysauce, /turf/simulated/floor/tiled/dark/full, /area/horizon/kitchen) "gTq" = ( @@ -49142,7 +49101,6 @@ name = "sink"; pixel_x = -21 }, -/obj/machinery/food_cart, /turf/simulated/floor/tiled/freezer{ name = "cooled tiles"; temperature = 253.15 @@ -51555,13 +51513,20 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "hpL" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/hallway/medical/upper) "hpM" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -52043,7 +52008,12 @@ icon_state = "freighter_flip"; name = "passing vessel shadows" }, -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) "hsY" = ( @@ -52860,14 +52830,15 @@ /turf/simulated/floor/tiled/dark, /area/supply/dock) "hyv" = ( -/obj/item/device/radio/intercom/north{ - dir = 8; - pixel_y = 0; - pixel_x = -7 +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Examination Office 1" }, +/obj/structure/bed/padded, +/obj/item/device/radio/intercom/north, +/obj/item/bedsheet/medical, /turf/simulated/floor/tiled/white, /area/medical/ward) "hyB" = ( @@ -53611,12 +53582,18 @@ /turf/simulated/floor/holofloor/tiled, /area/template_noop) "hFt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/newscaster/east, +/obj/machinery/disposal/small/west{ + pixel_y = -5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) "hFx" = ( /obj/structure/closet/walllocker/medical/firstaid{ pixel_x = -32 @@ -59548,15 +59525,20 @@ /turf/unsimulated/floor/plating, /area/centcom/specops) "izA" = ( -/obj/machinery/light, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 + }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/structure/table/glass{ + table_reinf = "glass" }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 +/obj/item/modular_computer/laptop/preset/medical{ + pixel_y = 4 }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -62509,6 +62491,11 @@ /obj/effect/floor_decal/corner_wide/green{ dir = 9 }, +/obj/structure/curtain/open/medical, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/folder, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -64178,12 +64165,13 @@ /turf/unsimulated/floor/dark, /area/antag/actor) "jhV" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, +/obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white, /area/medical/ward) "jib" = ( @@ -65148,10 +65136,20 @@ /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) "joV" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,12) }, -/turf/simulated/floor/tiled/white, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, /area/medical/ward) "joW" = ( /obj/machinery/light/small{ @@ -73041,9 +73039,8 @@ }, /obj/structure/sink/kitchen{ dir = 4; - pixel_x = -19 + pixel_x = -21 }, -/obj/machinery/firealarm/west, /turf/simulated/floor/lino, /area/horizon/bar) "kuF" = ( @@ -76365,6 +76362,9 @@ pixel_y = 16; pixel_x = 4 }, +/obj/machinery/chem_heater{ + pixel_y = 6 + }, /obj/structure/table/stone/marble, /turf/simulated/floor/tiled/dark, /area/horizon/bar) @@ -78745,6 +78745,7 @@ dir = 8 }, /obj/machinery/disposal/small/north, +/obj/machinery/firealarm/south, /turf/simulated/floor/lino, /area/horizon/bar) "loh" = ( @@ -79791,17 +79792,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"lvK" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/deck/kotahi{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "lvM" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 1 @@ -81629,9 +81619,23 @@ departmentType = 1; name = "Kitchen Requests Console" }, +/obj/random/pottedplant_small{ + spawn_nothing_percentage = 25; + name = "random potted plant, small (25% nothing)"; + pixel_y = -2; + pixel_x = 7 + }, /obj/structure/closet/walllocker/medical/firstaid{ pixel_y = -32 }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_y = 1; + pixel_x = -16 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_y = 1; + pixel_x = -7 + }, /turf/simulated/floor/tiled/dark/full, /area/horizon/kitchen) "lIW" = ( @@ -82888,15 +82892,10 @@ /turf/simulated/floor/tiled/dark, /area/engineering/atmos) "lRI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/light{ dir = 4 }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 19 - }, -/obj/machinery/light{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood, @@ -83203,13 +83202,6 @@ }, /turf/simulated/wall, /area/maintenance/wing/port/far) -"lTQ" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/vending/lavatory, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "lTW" = ( /turf/simulated/floor/holofloor/desert{ name = "dirt" @@ -86402,16 +86394,6 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"mrR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/random/junk, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "mrU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -86656,7 +86638,8 @@ c_tag = "Service - Deck 2 - Bar Backroom"; dir = 8 }, -/obj/structure/closet/secure_closet/cabinet/beer/horizon, +/obj/structure/closet/secure_closet/cabinet/bar, +/obj/item/reagent_containers/food/drinks/bottle/valokki_wine, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) "mtw" = ( @@ -90773,7 +90756,7 @@ /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "naL" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -91293,16 +91276,17 @@ /turf/simulated/floor/tiled, /area/bridge) "nfj" = ( +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/bed/stool/padded/red{ - dir = 8 - }, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light{ + dir = 4 }, +/obj/machinery/alarm/north, /turf/simulated/floor/tiled/white, /area/medical/ward) "nfr" = ( @@ -91821,7 +91805,12 @@ /turf/simulated/floor/tiled, /area/operations/storage) "niJ" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/machinery/door/window/holowindoor, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) @@ -95039,18 +95028,13 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/hop/xo) "nHc" = ( -/obj/machinery/alarm/north{ +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ dir = 4; - pixel_y = 3; - pixel_x = 8 + req_one_access = list(5,12) }, -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/cryopod/living_quarters{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/medical/ward) +/turf/simulated/floor, +/area/maintenance/bridge) "nHw" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/firedoor, @@ -101459,10 +101443,10 @@ /obj/effect/floor_decal/corner/grey{ dir = 10 }, +/obj/machinery/light, /obj/structure/weapon_rack/double{ pixel_y = -32 }, -/obj/machinery/light, /turf/simulated/floor/lino, /area/horizon/bar) "oEL" = ( @@ -102674,7 +102658,12 @@ /turf/unsimulated/floor/monotile, /area/antag/mercenary) "oOX" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) "oPh" = ( @@ -103438,10 +103427,8 @@ /obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, +/obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled/white, /area/medical/ward) "oUB" = ( @@ -103686,14 +103673,12 @@ /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) "oWN" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/machinery/light, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/open, +/area/hallway/medical/upper) "oWT" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -104257,7 +104242,12 @@ /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) "paV" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_jupiter) "paY" = ( @@ -106885,7 +106875,7 @@ dir = 8 }, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "pua" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -109201,8 +109191,6 @@ /obj/effect/floor_decal/industrial/warning{ dir = 6 }, -/obj/random/loot, -/obj/structure/reagent_dispensers/watertank, /turf/simulated/floor, /area/horizon/maintenance/deck_three/aft/starboard) "pLN" = ( @@ -109913,9 +109901,6 @@ departmentType = 1; name = "Bar Requests Console" }, -/obj/structure/closet/crate/drinks, -/obj/item/storage/box/fancy/yoke/grape_juice, -/obj/item/storage/box/fancy/yoke/beetle_milk, /turf/simulated/floor/lino, /area/horizon/bar) "pQn" = ( @@ -110126,8 +110111,6 @@ /obj/structure/closet/secure_closet/freezer, /obj/item/reagent_containers/food/condiment/flour, /obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/light{ dir = 4 @@ -113965,9 +113948,15 @@ /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) "qvR" = ( -/obj/machinery/light, -/turf/simulated/open, -/area/hallway/medical/upper) +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) "qvT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -115213,9 +115202,11 @@ /obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 +/obj/structure/curtain/open/medical, +/obj/structure/bed/stool/padded/red, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -115983,7 +115974,12 @@ /turf/simulated/floor/tiled/dark, /area/medical/gen_treatment) "qJv" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/structure/railing/mapped{ dir = 8 }, @@ -117874,16 +117870,16 @@ /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) "qWS" = ( +/obj/machinery/light{ + dir = 4 + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /obj/structure/sink/kitchen{ dir = 8; name = "sink"; - pixel_x = 19 - }, -/obj/machinery/light{ - dir = 4 + pixel_x = 21 }, /turf/simulated/floor/wood, /area/horizon/bar) @@ -117962,7 +117958,6 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/chem_heater, /turf/simulated/floor/lino, /area/horizon/bar) "qXs" = ( @@ -118375,10 +118370,11 @@ /turf/simulated/floor/wood, /area/crew_quarters/lounge/secondary) "rac" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "Recovery1" +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, +/turf/simulated/open, /area/hallway/medical/upper) "rad" = ( /obj/machinery/door/airlock/maintenance{ @@ -121924,18 +121920,6 @@ /obj/structure/bed, /turf/simulated/floor/reinforced, /area/rnd/isolation_c) -"rBk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/computer/ship/navigation{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "rBp" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp, @@ -122564,11 +122548,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/alarm/west{ - req_one_access = list(24,11,55) - }, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "rGu" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ @@ -125164,7 +125145,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/ward) "sck" = ( @@ -125761,7 +125744,12 @@ /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) "sgj" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/structure/railing/mapped{ dir = 4 }, @@ -127082,18 +127070,12 @@ /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) "sro" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/mirror{ - pixel_x = 27 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 13 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor, +/area/maintenance/bridge) "srq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -143031,7 +143013,12 @@ icon_state = "background"; name = "holographic Jupiter Atmosphere" }, -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_jupiter) "uGI" = ( @@ -143569,26 +143556,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"uKQ" = ( -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/machinery/requests_console/north{ - pixel_y = 32; - pixel_x = -1; - name = "Recovery Ward requests console"; - department = "Recovery Ward"; - departmentType = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "uKS" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves, @@ -146708,25 +146675,6 @@ /obj/machinery/alarm/south, /turf/simulated/floor/tiled/dark/full, /area/rnd/telesci) -"viE" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/item/modular_computer/laptop/preset/medical{ - pixel_y = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "RecoveryWard"; - name = "Recovery Door Control"; - pixel_x = -7; - pixel_y = -19; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "viI" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 @@ -147059,10 +147007,10 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/horizon/bar) "vlC" = ( @@ -147241,6 +147189,8 @@ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/structure/curtain/open/medical, +/obj/structure/bed/stool/padded/red, /turf/simulated/floor/tiled/white, /area/medical/ward) "vnb" = ( @@ -153247,7 +153197,7 @@ pixel_x = -32 }, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "whS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -153318,16 +153268,12 @@ /obj/machinery/door/firedoor/multi_tile{ dir = 2 }, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/shutters/open{ dir = 8; id = "shutters_hangardeskcpport"; name = "Security Checkpoint Shutter" }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) "wij" = ( @@ -155325,20 +155271,11 @@ /turf/simulated/open, /area/horizon/hallway/deck_three/primary/central) "wwd" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed/padded, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Examination Office 1" - }, -/obj/machinery/newscaster/east{ - dir = 8; - pixel_x = -8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/open, +/area/hallway/medical/upper) "wwg" = ( /obj/structure/flora/rock/pile, /obj/item/clothing/mask/skrell/skull, @@ -156538,7 +156475,7 @@ /obj/random/loot, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/maintenance/bridge) "wEv" = ( /obj/structure/railing/mapped{ dir = 1 @@ -157571,7 +157508,12 @@ pixel_x = 7; pixel_y = 14 }, -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/structure/railing/mapped{ dir = 8 }, @@ -158449,7 +158391,12 @@ icon_state = "freighter"; name = "passing vessel shadows" }, -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/effect/decal/fake_object{ desc = "The distant cityscape of Mendell City."; icon = 'icons/effects/props/holodeck/biesel/384x224.dmi'; @@ -159819,11 +159766,11 @@ /obj/effect/floor_decal/corner/grey{ dir = 10 }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Preparation Room"; +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Preparation Room"; dir = 1 }, /turf/simulated/floor/lino, @@ -160475,15 +160422,13 @@ /turf/simulated/wall/r_wall, /area/engineering/gravity_gen) "xfj" = ( -/obj/machinery/light{ - dir = 4 +/obj/machinery/light/small/emergency, +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/obj/machinery/vending/mredispenser, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor, +/area/maintenance/bridge) "xfo" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/sink{ @@ -161408,7 +161353,12 @@ /turf/simulated/floor/tiled/dark/full, /area/tcommsat/entrance) "xlq" = ( -/obj/effect/decal/rolling_fog, +/obj/effect/decal{ + anchored = 1; + icon = 'icons/effects/props/holodeck/biesel/32x32.dmi'; + icon_state = "fog_roll"; + name = "rolling fog" + }, /obj/structure/railing/mapped{ name = "adjusted railing" }, @@ -162165,13 +162115,11 @@ /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor, +/area/maintenance/bridge) "xrk" = ( /obj/machinery/light{ dir = 8 @@ -165564,10 +165512,6 @@ pixel_x = 6; pixel_y = -2 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 13; - pixel_x = -7 - }, /turf/simulated/floor/tiled/dark/full, /area/horizon/bar) "xPT" = ( @@ -166914,21 +166858,8 @@ /obj/effect/floor_decal/corner_wide/green{ dir = 9 }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/button/switch/windowtint{ - dir = 8; - id = "Recovery1"; - pixel_y = -2; - pixel_x = -22 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 10 - }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, /turf/simulated/floor/tiled/white, /area/medical/ward) "xZL" = ( @@ -167388,13 +167319,19 @@ /turf/simulated/floor/plating, /area/shuttle/escape_pod/pod4) "ydo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner_wide/green{ - dir = 10 + dir = 6 + }, +/obj/random/pottedplant, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/switch/windowtint{ + dir = 4; + id = "Recovery1"; + pixel_x = 26; + pixel_y = -8 }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -168665,9 +168602,6 @@ /obj/structure/engineer_maintenance/pipe{ dir = 4 }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, /turf/simulated/floor/lino, /area/horizon/bar) "ylb" = ( @@ -326753,8 +326687,8 @@ fMK wIq aMt nnv -qvR -hxi +aMt +oWN cPk hZU cPk @@ -327011,8 +326945,8 @@ wIq aMt nnv aMt -rac wwd +cPk hyv iVv xZK @@ -327271,7 +327205,7 @@ nnv rac bYL eqE -joV +qEB oUA vna fjz @@ -327525,11 +327459,11 @@ wIq aMt nnv aMt -rac -hpL +wwd +bYL jhV +qvR tzA -qEB tzA scj gJl @@ -327782,12 +327716,12 @@ vww itI dOG itI -rac -cEK +hpL +cPk nfj -joV -lvK -joV +hFt +fzi +ydo izA gJl vGk @@ -328040,12 +327974,12 @@ hxi nOy hxi hxi -uKQ +cPk +cPk +cPk joV -joV -oWN -joV -viE +cPk +cPk cPk jZA jZA @@ -328287,14 +328221,14 @@ dBO dBO pcl pcl -hFt +dBO pLA amf sBy cVC rGn -fzi -mrR +rGn +rGn whN fKC bTK @@ -328302,7 +328236,7 @@ xrg xrg xrg xrg -ydo +xrg bGX xlN jHm @@ -328551,16 +328485,16 @@ cyL jQM wEs ptP -naK +ptP cqe cMw -nHc -rBk -lTQ +hnU +naK +naK sro -bEp +ptP xfj -cPk +hnU fIV pmk iCP @@ -328806,18 +328740,18 @@ jQM jQM jQM jQM -jQM -xPE -jQM -jQM -jQM -cPk -cPk -cPk -cPk -cPk -cPk -cPk +hnU +nHc +hnU +hnU +hnU +hnU +hnU +hnU +hnU +hnU +hnU +hnU eoG xcc nTz diff --git a/sound/attributions.txt b/sound/attributions.txt index c1cbf0759ad..e862bb37e03 100644 --- a/sound/attributions.txt +++ b/sound/attributions.txt @@ -33,12 +33,6 @@ sound/weapons/reloads/shotgun_pump.ogg to 6 All sounds listed above in this section part of "Valhalla", licensed under CC0 1.0 Universal (CC0 1.0). Obtained from https://freesound.org/people/FilmmakersManual ATTRIBUTIONS SECTION END -ATTRIBUTIONS SECTION START -sound/items/drop/bone_drop.ogg - "MugClinks", licensed under CC0. Obtained from https://freesound.org/people/sidequesting/sounds/547489/ -sound/item/cards/bone_flip.ogg - "MugClinks", licensed under CC0. Obtained from https://freesound.org/people/sidequesting/sounds/547489/ -sound/item/cards/bone_shuffle.ogg - "Porcelain Shards", licensed under CC0. Obtained from https://freesound.org/people/IENBA/sounds/763616/ -ATTRIBUTIONS SECTION END - ATTRIBUTIONS SECTION START sound/weapons/gunshot/ship_weapons/120mm_mortar.ogg - "Mortar", licensed under CC0. Obtained from https://freesound.org/people/Mozfoo/sounds/529239/ sound/weapons/gunshot/ship_weapons/rotary_fire.ogg - "Minigun", licensed under CC0. Obtained and edited from https://freesound.org/people/Breviceps/sounds/557595/ diff --git a/sound/items/cards/bone_flip.ogg b/sound/items/cards/bone_flip.ogg deleted file mode 100644 index 6a47be25d71..00000000000 Binary files a/sound/items/cards/bone_flip.ogg and /dev/null differ diff --git a/sound/items/cards/bone_shuffle.ogg b/sound/items/cards/bone_shuffle.ogg deleted file mode 100644 index 7f734eab8f6..00000000000 Binary files a/sound/items/cards/bone_shuffle.ogg and /dev/null differ diff --git a/sound/items/drop/bone_drop.ogg b/sound/items/drop/bone_drop.ogg deleted file mode 100644 index 593f70a0f66..00000000000 Binary files a/sound/items/drop/bone_drop.ogg and /dev/null differ diff --git a/tools/Event Probabilities/Event Probabilities.xlsx b/tools/Event Probabilities/Event Probabilities.xlsx index 6c4ae1274dd..c157729de67 100644 Binary files a/tools/Event Probabilities/Event Probabilities.xlsx and b/tools/Event Probabilities/Event Probabilities.xlsx differ