diff --git a/code/ATMOSPHERICS/components/binary_devices/circulator.dm b/code/ATMOSPHERICS/components/binary_devices/circulator.dm index 3624742d047..87b1fe30d7e 100644 --- a/code/ATMOSPHERICS/components/binary_devices/circulator.dm +++ b/code/ATMOSPHERICS/components/binary_devices/circulator.dm @@ -25,13 +25,15 @@ return null //Calculate necessary moles to transfer using PV = nRT - if((air1.total_moles() > 0) && (air1.temperature>0)) + if(air1.temperature>0) var/pressure_delta = (input_starting_pressure - output_starting_pressure)/2 var/transfer_moles = pressure_delta*air2.volume/(air1.temperature * R_IDEAL_GAS_EQUATION) last_pressure_delta = pressure_delta + //world << "pressure_delta = [pressure_delta]; transfer_moles = [transfer_moles];" + //Actually transfer the gas var/datum/gas_mixture/removed = air1.remove(transfer_moles) diff --git a/code/modules/power/generator.dm b/code/modules/power/generator.dm index afe69a2800c..766fec40699 100644 --- a/code/modules/power/generator.dm +++ b/code/modules/power/generator.dm @@ -13,6 +13,14 @@ spawn(5) circ1 = locate(/obj/machinery/atmospherics/binary/circulator) in get_step(src,WEST) circ2 = locate(/obj/machinery/atmospherics/binary/circulator) in get_step(src,EAST) + + if(circ1) + circ1.side = 1 + circ1.update_icon() + if(circ2) + circ2.side = 2 + circ2.update_icon() + if(!circ1 || !circ2) stat |= BROKEN @@ -32,42 +40,55 @@ /obj/machinery/power/generator/process() + //world << "Generator process ran" + if(!circ1 || !circ2) return - var/datum/gas_mixture/hot_air = circ1.return_transfer_air() - var/datum/gas_mixture/cold_air = circ2.return_transfer_air() + //world << "circ1 and circ2 pass" + + var/datum/gas_mixture/cold_air = circ1.return_transfer_air() + var/datum/gas_mixture/hot_air = circ2.return_transfer_air() lastgen = 0 + //world << "hot_air = [hot_air]; cold_air = [cold_air];" + if(cold_air && hot_air) + + //world << "hot_air = [hot_air] temperature = [hot_air.temperature]; cold_air = [cold_air] temperature = [hot_air.temperature];" + + //world << "coldair and hotair pass" var/cold_air_heat_capacity = cold_air.heat_capacity() var/hot_air_heat_capacity = hot_air.heat_capacity() var/delta_temperature = hot_air.temperature - cold_air.temperature + //world << "delta_temperature = [delta_temperature]; cold_air_heat_capacity = [cold_air_heat_capacity]; hot_air_heat_capacity = [hot_air_heat_capacity]" + if(delta_temperature > 0 && cold_air_heat_capacity > 0 && hot_air_heat_capacity > 0) - var/efficiency = (1 - cold_air.temperature/hot_air.temperature)*0.65 //65% of Carnot efficiency + var/efficiency = 0.65 var/energy_transfer = delta_temperature*hot_air_heat_capacity*cold_air_heat_capacity/(hot_air_heat_capacity+cold_air_heat_capacity) var/heat = energy_transfer*(1-efficiency) lastgen = energy_transfer*efficiency + //world << "lastgen = [lastgen]; heat = [heat]; delta_temperature = [delta_temperature]; hot_air_heat_capacity = [hot_air_heat_capacity]; cold_air_heat_capacity = [cold_air_heat_capacity];" + hot_air.temperature = hot_air.temperature - energy_transfer/hot_air_heat_capacity cold_air.temperature = cold_air.temperature + heat/cold_air_heat_capacity - world << "POWER: [lastgen] W generated at [efficiency*100]% efficiency and sinks sizes [cold_air_heat_capacity], [hot_air_heat_capacity]" add_avail(lastgen) // update icon overlays only if displayed level has changed if(hot_air) - circ1.air2.merge(hot_air) + circ2.air2.merge(hot_air) if(cold_air) - circ2.air2.merge(cold_air) + circ1.air2.merge(cold_air) var/genlev = max(0, min( round(11*lastgen / 100000), 11)) if(genlev != lastgenlev) diff --git a/maps/oldstation.dmm b/maps/oldstation.dmm index 7d2588823ac..8e93666ef9d 100644 --- a/maps/oldstation.dmm +++ b/maps/oldstation.dmm @@ -74,765 +74,790 @@ "bv" = (/turf/simulated/floor/plating/airless,/area/assembly/chargebay) "bw" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering) "bx" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/engine/engineering) -"by" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering) -"bz" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/engine/engineering) -"bA" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/engine/engineering) -"bB" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/engine/engineering) -"bC" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/engine/engineering) -"bD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bE" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) -"bF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"bG" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) -"bH" = (/turf/simulated/floor/airless,/area/assembly/chargebay) -"bI" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"bJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering) -"bK" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/engine/engineering) -"bL" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering) -"bM" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/engine/engineering) -"bN" = (/obj/item/weapon/storage/backpack,/turf/simulated/floor,/area/engine/engineering) -"bO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering) -"bP" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering) -"bQ" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/hallway/primary/central) -"bR" = (/obj/machinery/power/solar_control,/turf/simulated/floor,/area/hallway/primary/central) -"bS" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"bT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bU" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"bV" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating/airless,/area) -"bW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"bX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"bY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/engine/engineering) -"bZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/engine/engineering) -"ca" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor,/area/engine/engineering) -"cb" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering) -"cc" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering) -"cd" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/engine/engineering) -"ce" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"cf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) -"cg" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/turf/simulated/floor/airless,/area/assembly/chargebay) -"ch" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"ci" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"ck" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cl" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cm" = (/obj/machinery/door/airlock{req_access_txt = "10;13;32"},/turf/simulated/floor,/area/engine/engineering) -"cn" = (/obj/machinery/power/generator,/turf/simulated/floor,/area/engine/engineering) -"co" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engine/engineering) -"cp" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/engine/engineering) -"cq" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engine/engineering) -"cr" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/hallway/primary/central) -"cs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) -"ct" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor,/area/hallway/primary/central) -"cu" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) -"cv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) -"cw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) -"cx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central) -"cy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor/plating/airless,/area) -"cz" = (/obj/item/weapon/cable_coil/cut{amount = 2; icon_state = "coil_red2"},/turf/simulated/floor/plating/airless,/area) -"cA" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/engine,/area/assembly/chargebay) -"cD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/engine,/area/assembly/chargebay) -"cE" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/oxygen,/turf/simulated/floor,/area/engine/engineering) -"cF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering) -"cG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor,/area/engine/engineering) -"cH" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/engine/engineering) -"cI" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/engine/engineering) -"cJ" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/engine/engineering) -"cK" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/engine/engineering) -"cL" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/hallway/primary/central) -"cM" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/hallway/primary/central) -"cN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"cO" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) -"cP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating/airless,/area) -"cQ" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"cR" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cS" = (/obj/machinery/power/generator,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"cT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/assembly/chargebay) -"cU" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) -"cV" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/assembly/chargebay) -"cW" = (/obj/structure/table,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering) -"cX" = (/obj/structure/table,/obj/item/device/flashlight,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering) -"cY" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/engine/engineering) -"cZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering) -"da" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/central) -"db" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"dc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) -"dd" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber{icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) -"de" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/engine/engineering) -"df" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engine/engineering) -"dg" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering) -"dh" = (/turf/simulated/wall,/area/derelict/bridge) -"di" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"dj" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"dk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/plating,/area/engine/engineering) -"dl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) -"dm" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/derelict/bridge) -"dn" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/jetpack/oxygen,/turf/simulated/floor,/area/derelict/bridge) -"do" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/hallway/primary/central) -"dp" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) -"dq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"dr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"ds" = (/turf/simulated/floor/airless,/area/engine/engineering) -"dt" = (/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering) -"du" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) -"dv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/engine/engineering) -"dw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/engine,/area/engine/engineering) -"dx" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"dy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/engine,/area/engine/engineering) -"dz" = (/obj/machinery/door/poddoor{id = "engine"; name = "Engine Hatch"},/turf/simulated/floor/engine,/area/engine/engineering) -"dA" = (/obj/machinery/door_control{id = "engine"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/engine/engineering) -"dB" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering) -"dC" = (/turf/simulated/floor,/area/derelict/bridge) -"dD" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"dE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"dF" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) -"dG" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/engine/engineering) -"dH" = (/turf/simulated/floor/plating,/area/engine/engineering) -"dI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) -"dJ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering) -"dK" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering) -"dL" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/derelict/bridge) -"dM" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/hallway/primary/central) -"dN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/hallway/primary/central) -"dO" = (/obj/item/device/multitool,/turf/simulated/floor/plating,/area/engine/engineering) -"dP" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/engine/engineering) -"dQ" = (/turf/simulated/floor/engine,/area/engine/engineering) -"dR" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/engine/engineering) -"dS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"dT" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/engine/engineering) -"dU" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering) -"dV" = (/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor,/area/engine/engineering) -"dW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge) -"dX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/bridge) -"dY" = (/obj/machinery/door/airlock{req_access_txt = "18"},/turf/simulated/floor,/area/derelict/bridge) -"dZ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/central) -"ea" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) -"eb" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering) -"ec" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) -"ed" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering) -"ee" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engine/engineering) -"ef" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/engine/engineering) -"eg" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/engine/engineering) -"eh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"ei" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/hallway/primary/central) -"ej" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area) -"ek" = (/obj/item/weapon/tank/oxygen,/turf/simulated/floor/engine,/area/engine/engineering) -"el" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor/engine,/area/engine/engineering) -"em" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area/engine/engineering) -"en" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) -"eo" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/engine/engineering) -"ep" = (/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/device/flashlight,/obj/item/weapon/wrench,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering) -"eq" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engine/engineering) -"er" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/derelict/bridge) -"es" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/bridge) -"et" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge) -"eu" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) -"ev" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/bridge) -"ew" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/derelict/bridge) -"ex" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/derelict/bridge) -"ey" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge) -"ez" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/derelict/bridge) -"eA" = (/obj/structure/table,/obj/item/device/infra_sensor,/turf/simulated/floor,/area/derelict/bridge) -"eB" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/bridge) -"eC" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/derelict/bridge) -"eD" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge) -"eE" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/engine/engineering) -"eF" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"eG" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering) -"eH" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/bridge) -"eI" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/bridge) -"eJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor,/area/derelict/bridge) -"eK" = (/obj/machinery/igniter,/turf/simulated/floor/engine,/area/engine/engineering) -"eL" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/bridge) -"eM" = (/obj/structure/window/reinforced{dir = 5},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/bridge) -"eN" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Research Director"},/turf/simulated/floor,/area/derelict/bridge) -"eO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) -"eP" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/engine,/area/engine/engineering) -"eQ" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/engine/engineering) -"eR" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/turf/simulated/floor,/area/engine/engineering) -"eS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering) -"eT" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge) -"eU" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/bridge) -"eV" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Captain"},/turf/simulated/floor,/area/derelict/bridge) -"eW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) -"eX" = (/turf/simulated/wall,/area/derelict/storage/equipment) -"eY" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/bridge) -"eZ" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor,/area/derelict/bridge) -"fa" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/bridge) -"fb" = (/obj/structure/table,/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/engine/engineering) -"fc" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering) -"fd" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/equipment) -"fe" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor,/area/derelict/storage/equipment) -"ff" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) -"fg" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) -"fh" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment) -"fi" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/equipment) -"fj" = (/obj/structure/table,/obj/item/device/assembly/infra,/turf/simulated/floor,/area/derelict/bridge) -"fk" = (/obj/structure/table,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) -"fl" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/bridge) -"fm" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/derelict/bridge) -"fn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/turf/simulated/floor,/area/derelict/bridge) -"fo" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment) -"fp" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment) -"fq" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/equipment) -"fr" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/storage/equipment) -"fs" = (/obj/structure/table,/obj/item/device/assembly/timer,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/bridge) -"ft" = (/obj/structure/table,/obj/item/weapon/card/id,/turf/simulated/floor,/area/derelict/bridge) -"fu" = (/obj/structure/computerframe,/turf/simulated/floor,/area/derelict/bridge) -"fv" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/bridge) -"fw" = (/turf/simulated/floor/airless,/area) -"fx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"fy" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/equipment) -"fz" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/storage/equipment) -"fA" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"fB" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/turf/simulated/floor,/area/crew_quarters/captain) -"fC" = (/turf/simulated/wall,/area/derelict/arrival) -"fD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"fE" = (/turf/simulated/floor,/area/derelict/storage/equipment) -"fF" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/obj/structure/table,/obj/item/weapon/card/id/captains_spare,/obj/item/weapon/disk/nuclear,/turf/simulated/floor,/area/crew_quarters/captain) -"fG" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/arrival) -"fH" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/storage/equipment) -"fI" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/crew_quarters/captain) -"fJ" = (/turf/simulated/floor,/area/crew_quarters/captain) -"fK" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters/captain) -"fL" = (/obj/item/ammo_magazine,/turf/simulated/floor,/area/derelict/arrival) -"fM" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/crew_quarters/captain) -"fN" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor,/area/crew_quarters/captain) -"fO" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/equipment) -"fP" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/crew_quarters/captain) -"fQ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/crew_quarters/captain) -"fR" = (/turf/simulated/floor,/area/derelict/arrival) -"fS" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area) -"fT" = (/turf/simulated/floor,/area) -"fU" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/derelict/storage/equipment) -"fV" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/packageWrap,/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) -"fW" = (/obj/structure/table,/obj/item/weapon/storage/gl_kit,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/equipment) -"fX" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/equipment) -"fY" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/cable_coil,/turf/simulated/floor,/area/derelict/storage/equipment) -"fZ" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/derelict/storage/equipment) -"ga" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/equipment) -"gb" = (/obj/machinery/autolathe,/turf/simulated/floor,/area/derelict/storage/equipment) -"gc" = (/obj/item/weapon/storage/handcuff_kit,/turf/simulated/floor,/area/crew_quarters/captain) -"gd" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/arrival) -"ge" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/equipment) -"gf" = (/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area) -"gg" = (/obj/item/weapon/crowbar,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment) -"gh" = (/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) -"gi" = (/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/equipment) -"gj" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/derelict/storage/equipment) -"gk" = (/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) -"gl" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/storage/equipment) -"gm" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/crew_quarters/captain) -"gn" = (/turf/simulated/wall,/area/medical/medbay) -"go" = (/obj/machinery/door/airlock{req_access_txt = "5;13"},/turf/simulated/floor,/area/medical/medbay) -"gp" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/derelict/storage/equipment) -"gq" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment) -"gr" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment) -"gs" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) -"gt" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) -"gu" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/equipment) -"gv" = (/turf/simulated/wall/r_wall,/area/derelict/storage/equipment) -"gw" = (/turf/simulated/wall/r_wall,/area/derelict/arrival) -"gx" = (/turf/simulated/wall,/area/chapel/main) -"gy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay) -"gz" = (/turf/simulated/floor,/area/medical/medbay) -"gA" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival) -"gB" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/arrival) -"gC" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor,/area/derelict/arrival) -"gD" = (/obj/structure/closet/coffin,/turf/simulated/floor,/area/chapel/main) -"gE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"gF" = (/turf/simulated/wall,/area/medical/genetics) -"gG" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/genetics) -"gH" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/arrival) -"gI" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/arrival) -"gJ" = (/turf/simulated/floor,/area/chapel/main) -"gK" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gL" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gM" = (/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/wardrobe/white,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gO" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gP" = (/obj/machinery/computer/med_data,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gQ" = (/obj/machinery/door/window/eastleft{req_access_txt = "5"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gR" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gT" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"gU" = (/obj/structure/closet/wardrobe/genetics_white,/turf/simulated/floor,/area/medical/genetics) -"gV" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/medical/genetics) -"gW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/genetics) -"gX" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics) -"gY" = (/obj/machinery/computer/med_data,/turf/simulated/floor,/area/medical/genetics) -"gZ" = (/turf/simulated/floor,/area/medical/genetics) -"ha" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor,/area/medical/genetics) -"hb" = (/obj/structure/table,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/medical/genetics) -"hc" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/medical/genetics) -"hd" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/turf/simulated/floor,/area/medical/genetics) -"he" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor,/area/medical/genetics) -"hf" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/medical/genetics) -"hg" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment) -"hh" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area) -"hi" = (/turf/simulated/shuttle/wall,/area) -"hj" = (/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) -"hk" = (/obj/structure/shuttle/engine/propulsion/burst/right{dir = 8},/turf/space,/area) -"hl" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/medical/medbay) -"hm" = (/obj/item/weapon/wrench,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hn" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"ho" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hp" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hq" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hs" = (/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"ht" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/genetics) -"hu" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/medical/genetics) -"hv" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/medical/genetics) -"hw" = (/turf/simulated/wall/r_wall,/area/toxins/lab) -"hx" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area) -"hy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"hz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) -"hA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) -"hB" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/space,/area) -"hC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hD" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hF" = (/obj/structure/stool/bed/chair,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hG" = (/obj/structure/table,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hH" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hI" = (/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor,/area/medical/genetics) -"hJ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab) -"hK" = (/turf/simulated/floor,/area/toxins/lab) -"hL" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/toxins/lab) -"hM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/toxins/lab) -"hN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival) -"hO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"hP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"hQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) -"hR" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/chapel/main) -"hS" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/chapel/main) -"hT" = (/obj/structure/morgue,/turf/simulated/floor,/area/medical/medbay) -"hU" = (/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hV" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hW" = (/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hX" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hY" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"hZ" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"ia" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"ib" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/medical/genetics) -"ic" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/medical/genetics) -"id" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/medical/genetics) -"ie" = (/obj/structure/window/reinforced,/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor,/area/medical/genetics) -"if" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/medical/genetics) -"ig" = (/obj/structure/window/reinforced,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/medical/genetics) -"ih" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/toxins/lab) -"ii" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival) -"ij" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival) -"ik" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/space,/area) -"il" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"im" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"in" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"io" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area) -"ip" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"iq" = (/obj/structure/shuttle/engine/propulsion/burst/left{dir = 8},/turf/space,/area) -"ir" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/chapel/main) -"is" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"it" = (/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"iu" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"iv" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"iw" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"ix" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/medical/medbay) -"iy" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"iz" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/medical/genetics) -"iA" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/medical/genetics) -"iB" = (/obj/machinery/dna_scannernew,/turf/simulated/floor,/area/medical/genetics) -"iC" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics) -"iD" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dna_scannernew,/turf/simulated/floor,/area/medical/genetics) -"iE" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics) -"iF" = (/obj/structure/table,/obj/item/weapon/storage/diskbox,/turf/simulated/floor,/area/medical/genetics) -"iG" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/arrival) -"iH" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"iI" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"iJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"iK" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area) -"iL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) -"iM" = (/obj/structure/table,/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) -"iN" = (/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) -"iO" = (/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) -"iP" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) -"iQ" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) -"iR" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"iS" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"iT" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "9"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/genetics) -"iU" = (/obj/machinery/door/window/eastleft{req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) -"iV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/medical/genetics) -"iW" = (/obj/machinery/door/window/southleft{req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) -"iX" = (/obj/structure/window/reinforced,/obj/effect/landmark/start,/turf/simulated/floor,/area/medical/genetics) -"iY" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/medical/genetics) -"iZ" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/toxins/lab) -"ja" = (/turf/simulated/wall,/area/toxins/lab) -"jb" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/arrival) -"jc" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/arrival) -"jd" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area) -"je" = (/obj/structure/window/reinforced,/turf/space,/area) -"jf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/chapel/main) -"jg" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"jh" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"ji" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"jj" = (/obj/machinery/door/window/southleft{req_access_txt = "22"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"jk" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"jl" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jm" = (/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"jn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics) -"jo" = (/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor,/area/medical/genetics) -"jp" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/storage/equipment) -"jq" = (/obj/machinery/door/airlock{req_access_txt = "8"},/turf/simulated/floor,/area/toxins/lab) -"jr" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/arrival) -"js" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/arrival) -"jt" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"ju" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"jv" = (/turf/simulated/floor/plating,/area/chapel/main) -"jw" = (/obj/machinery/door/window/eastleft{req_access_txt = "22"},/turf/simulated/floor/plating,/area/chapel/main) -"jx" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/crew_quarters) -"jy" = (/turf/simulated/floor,/area/crew_quarters) -"jz" = (/obj/structure/stool/bed,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jA" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jB" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jC" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/genetics) -"jD" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/toxins/lab) -"jE" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/toxins/lab) -"jF" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/toxins/lab) -"jG" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/toxins/lab) -"jH" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/toxins/lab) -"jI" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"jJ" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area) -"jK" = (/obj/structure/window/reinforced{dir = 1},/turf/space,/area) -"jL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/chapel/main) -"jM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"jN" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) -"jO" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) -"jP" = (/turf/simulated/wall,/area/crew_quarters) -"jQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/crew_quarters) -"jR" = (/obj/machinery/door/window/southleft,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jS" = (/obj/machinery/door/window/southright,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) -"jT" = (/obj/machinery/computer/cloning,/turf/simulated/floor,/area/medical/genetics) -"jU" = (/obj/machinery/clonepod,/turf/simulated/floor,/area/medical/genetics) -"jV" = (/obj/machinery/door/airlock{req_access_txt = "7"},/turf/simulated/floor,/area/toxins/lab) -"jW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/toxins/lab) -"jX" = (/obj/item/weapon/clipboard,/turf/simulated/floor,/area/toxins/lab) -"jY" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/arrival) -"jZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelict/arrival) -"ka" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/chapel/main) -"kb" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor,/area/crew_quarters) -"kc" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/derelict/storage/equipment) -"kd" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/equipment) -"ke" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/equipment) -"kf" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor,/area/toxins/lab) -"kg" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival) -"kh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival) -"ki" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"kj" = (/obj/item/device/flashlight,/turf/simulated/floor,/area/chapel/main) -"kk" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/equipment) -"kl" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment) -"km" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/arrival) -"kn" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters) -"ko" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/derelict/storage/equipment) -"kp" = (/obj/item/weapon/extinguisher,/obj/machinery/door_control{id = "bd1"; pixel_x = 24},/turf/simulated/floor,/area/toxins/lab) -"kq" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/arrival) -"kr" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area) -"ks" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{dir = 3; icon_state = "swall_f10"; layer = 2; tag = "icon-swall_f10"},/area) -"kt" = (/obj/structure/closet/wardrobe,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"ku" = (/obj/machinery/door/window/southleft{req_access_txt = "19"},/turf/simulated/floor,/area/crew_quarters) -"kv" = (/turf/simulated/wall/r_wall,/area/security/brig) -"kw" = (/obj/machinery/door/airlock{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig) -"kx" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/toxins/lab) -"ky" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab) -"kz" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor,/area/toxins/lab) -"kA" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/arrival) -"kB" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters) -"kC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) -"kD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) -"kE" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/crew_quarters) -"kF" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) -"kG" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/security/brig) -"kH" = (/obj/machinery/door/window/southleft{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig) -"kI" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/security/brig) -"kJ" = (/turf/simulated/wall,/area/security/brig) -"kK" = (/turf/simulated/wall,/area/derelict/hallway/secondary) -"kL" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/hallway/secondary) -"kM" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/toxins/lab) -"kN" = (/obj/item/weapon/wrench,/turf/simulated/floor,/area/toxins/lab) -"kO" = (/obj/structure/table,/turf/simulated/floor,/area/crew_quarters) -"kP" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/device/radio/headset,/turf/simulated/floor,/area/crew_quarters) -"kQ" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/crew_quarters) -"kR" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/derelict/storage/equipment) -"kS" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/security/brig) -"kT" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"kU" = (/obj/structure/table,/obj/machinery/recharger,/obj/item/clothing/glasses/thermal,/turf/simulated/floor,/area/security/brig) -"kV" = (/obj/structure/closet/secure_closet/detective,/turf/simulated/floor,/area/security/brig) -"kW" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig) -"kX" = (/turf/simulated/floor,/area/security/brig) -"kY" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/security/brig) -"kZ" = (/turf/simulated/floor,/area/derelict/hallway/secondary) -"la" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/toxins/lab) -"lb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/toxins/lab) -"lc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor,/area/toxins/lab) -"ld" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"le" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"lf" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"lg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters) -"lh" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/crew_quarters) -"li" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor,/area/crew_quarters) -"lj" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor,/area/crew_quarters) -"lk" = (/turf/simulated/wall,/area/atmos) -"ll" = (/obj/machinery/door/airlock{req_access_txt = "24"},/turf/simulated/floor,/area/atmos) -"lm" = (/obj/effect/landmark/start{name = "Detective"},/turf/simulated/floor,/area/security/brig) -"ln" = (/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor,/area/security/brig) -"lo" = (/obj/structure/table,/turf/simulated/floor,/area/security/brig) -"lp" = (/obj/structure/closet/wardrobe/orange,/turf/simulated/floor,/area/security/brig) -"lq" = (/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) -"lr" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) -"ls" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/derelict/arrival) -"lt" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/crew_quarters) -"lu" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/crew_quarters) -"lv" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/crew_quarters) -"lw" = (/obj/structure/closet,/turf/simulated/floor,/area/crew_quarters) -"lx" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor,/area/crew_quarters) -"ly" = (/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/wirecutters,/turf/simulated/floor,/area/crew_quarters) -"lz" = (/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor,/area/crew_quarters) -"lA" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/crew_quarters) -"lB" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/atmos) -"lC" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4; icon_state = "on"; on = 1},/obj/machinery/door/poddoor{id = "ventintake"; name = "Intake Hatch"},/turf/simulated/floor,/area/atmos) -"lD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos) -"lE" = (/turf/simulated/floor,/area/atmos) -"lF" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/security/brig) -"lG" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/security/brig) -"lH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/security/brig) -"lI" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/security/brig) -"lJ" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/security/brig) -"lK" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/toxins/lab) -"lL" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/derelict/arrival) -"lM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) -"lN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters) -"lO" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/crew_quarters) -"lP" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/crew_quarters) -"lQ" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/crew_quarters) -"lR" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/crew_quarters) -"lS" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor,/area/crew_quarters) -"lT" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos) -"lU" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/atmos) -"lV" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) -"lW" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/security/brig) -"lX" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig) -"lY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/brig) -"lZ" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) -"ma" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor,/area/crew_quarters) -"mb" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor,/area/crew_quarters) -"mc" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor,/area/crew_quarters) -"md" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor,/area/crew_quarters) -"me" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) -"mf" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) -"mg" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) -"mh" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/security/brig) -"mi" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/security/brig) -"mj" = (/obj/item/weapon/storage/trackimp_kit,/turf/simulated/floor,/area/security/brig) -"mk" = (/obj/item/weapon/paper_bin,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"ml" = (/obj/item/device/flashlight,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"mm" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"mn" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/landmark/start{name = "Warden"},/turf/simulated/floor,/area/security/brig) -"mo" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/toxins/lab) -"mp" = (/obj/structure/grille,/turf/simulated/floor,/area/toxins/lab) -"mq" = (/obj/machinery/door/window/eastright,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters) -"mr" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor,/area/crew_quarters) -"ms" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor,/area/crew_quarters) -"mt" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/crew_quarters) -"mu" = (/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/oxygen,/obj/item/weapon/weldingtool,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/crew_quarters) -"mv" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Chef"},/turf/simulated/floor,/area/crew_quarters) -"mw" = (/obj/item/weapon/storage/backpack,/turf/simulated/floor,/area/crew_quarters) -"mx" = (/obj/structure/grille,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/atmos) -"my" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor,/area/atmos) -"mz" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/clipboard,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/security/brig) -"mA" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/security/brig) -"mB" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/security/brig) -"mC" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/security/brig) -"mD" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/security/brig) -"mE" = (/obj/structure/closet/wardrobe/red,/turf/simulated/floor,/area/security/brig) -"mF" = (/obj/machinery/door/poddoor{id = "bd1"; name = "Vent"},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) -"mG" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/derelict/arrival) -"mH" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/arrival) -"mI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/arrival) -"mJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) -"mK" = (/obj/structure/grille,/turf/simulated/floor,/area/atmos) -"mL" = (/obj/machinery/door/poddoor{id = "vent1"; name = "Vent Hatch"},/turf/simulated/floor,/area/atmos) -"mM" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/atmos) -"mN" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/atmos) -"mO" = (/turf/simulated/wall/r_wall,/area/derelict/hallway/secondary) -"mP" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/derelict/arrival) -"mQ" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/airless,/area/derelict/arrival) -"mR" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) -"mS" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) -"mT" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/atmos) -"mU" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos) -"mV" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) -"mW" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos) -"mX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos) -"mY" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/atmos) -"mZ" = (/turf/simulated/wall/r_wall,/area/atmos) -"na" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/atmos) -"nb" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/hallway/secondary) -"nc" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) -"nd" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/derelict/storage/storage_access) -"ne" = (/turf/simulated/floor,/area/derelict/storage/storage_access) -"nf" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/derelict/storage/storage_access) -"ng" = (/turf/simulated/wall,/area/derelict/storage/storage_access) -"nh" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/storage_access) -"ni" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nj" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nk" = (/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/atmos_alert,/turf/simulated/floor,/area/atmos) -"nm" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/atmos) -"nn" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/atmos) -"no" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"np" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"nq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"nr" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor,/area/derelict/storage/storage_access) -"ns" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nt" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/door_control{id = "vent1"; pixel_x = -24},/turf/simulated/floor,/area/atmos) -"nu" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/atmos) -"nv" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor,/area/atmos) -"nw" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor,/area/atmos) -"nx" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/atmos) -"ny" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/atmos) -"nz" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"nA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"nB" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/derelict/hallway/secondary) -"nC" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/derelict/hallway/secondary) -"nD" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nE" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nF" = (/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nG" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nH" = (/obj/machinery/door_control{id = "ventintake"; pixel_x = -24},/turf/simulated/floor,/area/atmos) -"nI" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/atmos) -"nJ" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos) -"nK" = (/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/atmos) -"nL" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/atmos) -"nM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/atmos) -"nN" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/atmos) -"nO" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) -"nP" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nQ" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nS" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nT" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nU" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/storage_access) -"nV" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) -"nW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) -"nX" = (/obj/item/clothing/shoes/brown,/obj/item/clothing/under/rank/atmospheric_technician,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/atmos) -"nY" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"nZ" = (/obj/machinery/door/airlock{req_access_txt = "12"},/turf/simulated/floor,/area/derelict/storage/storage_access) -"oa" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/storage/storage_access) -"ob" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/atmos) -"oc" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/atmos) -"od" = (/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/atmos) -"oe" = (/obj/item/weapon/clipboard,/turf/simulated/floor,/area/atmos) -"of" = (/obj/structure/table,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor,/area/atmos) -"og" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) -"oh" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"oi" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/derelict/hallway/secondary) -"oj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/derelict/hallway/secondary) -"ok" = (/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/derelict/hallway/secondary) -"ol" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/derelict/storage/storage_access) -"om" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/derelict/storage/storage_access) -"on" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/atmos) -"oo" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/atmos) -"op" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos) -"oq" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/device/radio,/obj/item/weapon/screwdriver,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/atmos) -"or" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/atmos) -"os" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) -"ot" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/device/t_scanner,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/atmos) -"ou" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/atmos) -"ov" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"ow" = (/obj/machinery/power/solar_control,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/derelict/hallway/secondary) -"ox" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/storage_access) -"oy" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/atmos) -"oB" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/atmos) -"oC" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor,/area/atmos) -"oD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/derelict/hallway/secondary) -"oE" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor,/area/derelict/hallway/secondary) -"oF" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oG" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/derelict/storage/storage_access) -"oH" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oI" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oJ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oK" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oL" = (/obj/structure/table,/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/derelict/storage/storage_access) -"oM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/atmos) -"oN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor,/area/atmos) -"oO" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/device/flashlight,/turf/simulated/floor,/area/atmos) -"oP" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos) -"oQ" = (/obj/structure/window/reinforced{dir = 5},/turf/space,/area) -"oR" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/hallway/secondary) -"oS" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/derelict/hallway/secondary) -"oT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"oU" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area) -"oV" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area) -"oW" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"oX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) -"oY" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/hallway/secondary) -"oZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"pa" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) -"pb" = (/obj/machinery/door/airlock{req_access_txt = "17"},/turf/simulated/floor,/area/derelict/teleporter) -"pc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"pd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"pe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"pf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) -"pg" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area) -"ph" = (/turf/simulated/wall/r_wall,/area/derelict/teleporter) -"pi" = (/turf/simulated/floor,/area/derelict/teleporter) -"pj" = (/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) -"pk" = (/obj/machinery/door/airlock{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pl" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/hallway/secondary) -"pm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"pn" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area) -"po" = (/obj/machinery/computer/teleporter,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) -"pp" = (/obj/machinery/teleport/station,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) -"pq" = (/obj/machinery/teleport/hub,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) -"pr" = (/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"ps" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge/ai_upload) -"pt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge/ai_upload) -"pu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"pv" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/teleporter) -"pw" = (/obj/effect/landmark{name = "tripai"},/turf/simulated/floor/grid,/area/derelict/bridge/ai_upload) -"px" = (/obj/machinery/turret,/turf/simulated/floor/grid,/area/derelict/bridge/ai_upload) -"py" = (/turf/simulated/floor/grid,/area/derelict/bridge/ai_upload) -"pz" = (/obj/structure/rack,/obj/item/weapon/aiModule/freeform,/obj/item/weapon/aiModule/prototypeEngineOffline,/obj/item/weapon/aiModule/safeguard,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pA" = (/obj/structure/rack,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/teleporterOffline,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pB" = (/obj/structure/rack,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/quarantine,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pC" = (/obj/structure/rack,/obj/item/weapon/aiModule/protectStation,/obj/item/weapon/aiModule/reset,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pD" = (/obj/machinery/turret,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pE" = (/obj/machinery/power/smes{charge = 5e+006},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pF" = (/obj/machinery/turret{dir = 8},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pG" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/teleporter) -"pH" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pI" = (/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pJ" = (/obj/effect/landmark/start{name = "AI"},/turf/simulated/floor/grid,/area/derelict/bridge/ai_upload) -"pK" = (/obj/machinery/computer/aiupload,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pL" = (/obj/machinery/door/window/eastleft{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pM" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pN" = (/obj/machinery/power/solar_control,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pO" = (/obj/machinery/door/window/eastleft{req_access_txt = "16"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pP" = (/obj/machinery/turret{dir = 1},/turf/simulated/floor/grid,/area/derelict/bridge/ai_upload) -"pQ" = (/obj/structure/rack,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pR" = (/obj/machinery/door/airlock{req_access_txt = "16"},/obj/machinery/door/window/eastleft{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pS" = (/obj/machinery/turret{dir = 1},/turf/simulated/floor,/area/derelict/bridge/ai_upload) -"pT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) -"pU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) -"pV" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) -"pW" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) -"pX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) -"pY" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) -"pZ" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) -"qa" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) -"qb" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) -"qc" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"by" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/engine/engineering) +"bz" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering) +"bA" = (/obj/machinery/power/monitor,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engine/engineering) +"bB" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engine/engineering) +"bC" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engine/engineering) +"bD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/engine/engineering) +"bE" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/engine/engineering) +"bF" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/engine/engineering) +"bG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/hallway/primary/central) +"bH" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) +"bI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"bJ" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) +"bK" = (/turf/simulated/floor/airless,/area/assembly/chargebay) +"bL" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"bM" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"bN" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor,/area/engine/engineering) +"bO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engine/engineering) +"bP" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering) +"bQ" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor,/area/engine/engineering) +"bR" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/engine/engineering) +"bS" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering) +"bT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/engine/engineering) +"bU" = (/obj/item/weapon/storage/backpack,/turf/simulated/floor,/area/engine/engineering) +"bV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering) +"bW" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering) +"bX" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/hallway/primary/central) +"bY" = (/obj/machinery/power/solar_control,/turf/simulated/floor,/area/hallway/primary/central) +"bZ" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) +"ca" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central) +"cb" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"cc" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating/airless,/area) +"cd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"ce" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cf" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering) +"cg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/engine/engineering) +"ch" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/engine/engineering) +"ci" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engine/engineering) +"cj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engine/engineering) +"ck" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering) +"cl" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering) +"cm" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering) +"cn" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/engine/engineering) +"co" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) +"cp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) +"cq" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/turf/simulated/floor/airless,/area/assembly/chargebay) +"cr" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"ct" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cu" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cv" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cw" = (/obj/machinery/door/airlock{req_access_txt = "10;13;32"},/turf/simulated/floor,/area/engine/engineering) +"cx" = (/obj/machinery/atmospherics/binary/circulator,/turf/simulated/floor,/area/engine/engineering) +"cy" = (/obj/machinery/power/generator,/obj/structure/cable/yellow,/turf/simulated/floor,/area/engine/engineering) +"cz" = (/obj/machinery/atmospherics/binary/circulator{icon_state = "circ2-off"},/turf/simulated/floor,/area/engine/engineering) +"cA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering) +"cB" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/engine/engineering) +"cC" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/engine/engineering) +"cD" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engine/engineering) +"cE" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/hallway/primary/central) +"cF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) +"cG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor,/area/hallway/primary/central) +"cH" = (/obj/machinery/door/window/eastleft,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) +"cI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) +"cJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) +"cK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central) +"cL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor/plating/airless,/area) +"cM" = (/obj/item/weapon/cable_coil/cut{amount = 2; icon_state = "coil_red2"},/turf/simulated/floor/plating/airless,/area) +"cN" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cO" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"cP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/engine,/area/assembly/chargebay) +"cQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/engine,/area/assembly/chargebay) +"cR" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/oxygen,/turf/simulated/floor,/area/engine/engineering) +"cS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"cT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/engine/engineering) +"cU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor,/area/engine/engineering) +"cV" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering) +"cW" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/engine/engineering) +"cX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"cY" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"cZ" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/engine/engineering) +"da" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/hallway/primary/central) +"db" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/hallway/primary/central) +"dc" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) +"dd" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/hallway/primary/central) +"de" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating/airless,/area) +"df" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"dg" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dh" = (/obj/machinery/atmospherics/binary/circulator,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"di" = (/obj/machinery/power/generator,/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dj" = (/obj/machinery/atmospherics/binary/circulator{icon_state = "circ2-off"},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dk" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/assembly/chargebay) +"dl" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) +"dm" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/assembly/chargebay) +"dn" = (/obj/structure/table,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/engine/engineering) +"do" = (/obj/structure/table,/obj/item/device/flashlight,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/engine/engineering) +"dp" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/engine/engineering) +"dq" = (/obj/machinery/power/apc,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"dr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/engine/engineering) +"ds" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering) +"dt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/engine/engineering) +"du" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor,/area/engine/engineering) +"dv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/engine/engineering) +"dw" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/engine/engineering) +"dx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/central) +"dy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) +"dA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber{icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/assembly/chargebay) +"dB" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engine/engineering) +"dC" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/engine/engineering) +"dD" = (/obj/machinery/light,/turf/simulated/floor,/area/engine/engineering) +"dE" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engine/engineering) +"dF" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering) +"dG" = (/turf/simulated/wall,/area/derelict/bridge) +"dH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dI" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/assembly/chargebay) +"dJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/plating,/area/engine/engineering) +"dK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) +"dL" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/derelict/bridge) +"dM" = (/obj/structure/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/black,/obj/item/clothing/under/color/black,/obj/item/clothing/shoes/black,/obj/item/weapon/tank/jetpack/oxygen,/turf/simulated/floor,/area/derelict/bridge) +"dN" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/hallway/primary/central) +"dO" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating/airless,/area/assembly/chargebay) +"dP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/wall/r_wall,/area/assembly/chargebay) +"dQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/wall/r_wall,/area/assembly/chargebay) +"dR" = (/turf/simulated/floor/airless,/area/engine/engineering) +"dS" = (/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering) +"dT" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) +"dU" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/engine/engineering) +"dV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/engine,/area/engine/engineering) +"dW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"dX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/engine,/area/engine/engineering) +"dY" = (/obj/machinery/door/poddoor{id = "engine"; name = "Engine Hatch"},/turf/simulated/floor/engine,/area/engine/engineering) +"dZ" = (/obj/machinery/door_control{id = "engine"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/engine/engineering) +"ea" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/engine/engineering) +"eb" = (/turf/simulated/floor,/area/derelict/bridge) +"ec" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"ed" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/assembly/chargebay) +"ee" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) +"ef" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/engine/engineering) +"eg" = (/turf/simulated/floor/plating,/area/engine/engineering) +"eh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) +"ei" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering) +"ej" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/engine/engineering) +"ek" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/derelict/bridge) +"el" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/hallway/primary/central) +"em" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/hallway/primary/central) +"en" = (/obj/item/device/multitool,/turf/simulated/floor/plating,/area/engine/engineering) +"eo" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/engine/engineering) +"ep" = (/turf/simulated/floor/engine,/area/engine/engineering) +"eq" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor/engine,/area/engine/engineering) +"er" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"es" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"et" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/engine/engineering) +"eu" = (/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor,/area/engine/engineering) +"ev" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge) +"ew" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/bridge) +"ex" = (/obj/machinery/door/airlock{req_access_txt = "18"},/turf/simulated/floor,/area/derelict/bridge) +"ey" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/central) +"ez" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) +"eA" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/engine/engineering) +"eB" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) +"eC" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engine/engineering) +"eD" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engine/engineering) +"eE" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/engine/engineering) +"eF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/engine/engineering) +"eG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) +"eH" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/hallway/primary/central) +"eI" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area) +"eJ" = (/obj/item/weapon/tank/oxygen,/turf/simulated/floor/engine,/area/engine/engineering) +"eK" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor/engine,/area/engine/engineering) +"eL" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area/engine/engineering) +"eM" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) +"eN" = (/obj/structure/grille,/turf/simulated/floor/engine,/area/engine/engineering) +"eO" = (/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/device/flashlight,/obj/item/weapon/wrench,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engine/engineering) +"eP" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engine/engineering) +"eQ" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/derelict/bridge) +"eR" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/bridge) +"eS" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge) +"eT" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) +"eU" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/bridge) +"eV" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/derelict/bridge) +"eW" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/derelict/bridge) +"eX" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge) +"eY" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/derelict/bridge) +"eZ" = (/obj/structure/table,/obj/item/device/infra_sensor,/turf/simulated/floor,/area/derelict/bridge) +"fa" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/bridge) +"fb" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/derelict/bridge) +"fc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/bridge) +"fd" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/engine/engineering) +"fe" = (/obj/structure/window/reinforced{dir = 5},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"ff" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engine/engineering) +"fg" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/bridge) +"fh" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/bridge) +"fi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor,/area/derelict/bridge) +"fj" = (/obj/machinery/igniter,/turf/simulated/floor/engine,/area/engine/engineering) +"fk" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/bridge) +"fl" = (/obj/structure/window/reinforced{dir = 5},/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/bridge) +"fm" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Research Director"},/turf/simulated/floor,/area/derelict/bridge) +"fn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) +"fo" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/engine,/area/engine/engineering) +"fp" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/engine/engineering) +"fq" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/turf/simulated/floor,/area/engine/engineering) +"fr" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering) +"fs" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge) +"ft" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/bridge) +"fu" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Captain"},/turf/simulated/floor,/area/derelict/bridge) +"fv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) +"fw" = (/turf/simulated/wall,/area/derelict/storage/equipment) +"fx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/bridge) +"fy" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor,/area/derelict/bridge) +"fz" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/device/assembly/signaler,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/bridge) +"fA" = (/obj/structure/table,/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/engine/engineering) +"fB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/engine/engineering) +"fC" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/equipment) +"fD" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor,/area/derelict/storage/equipment) +"fE" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) +"fF" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/meson,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) +"fG" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/cell{pixel_x = 5; pixel_y = -5; charge = 100; maxcharge = 15000},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment) +"fH" = (/obj/structure/table,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/equipment) +"fI" = (/obj/structure/table,/obj/item/device/assembly/infra,/turf/simulated/floor,/area/derelict/bridge) +"fJ" = (/obj/structure/table,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/bridge) +"fK" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/bridge) +"fL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor,/area/derelict/bridge) +"fM" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/turf/simulated/floor,/area/derelict/bridge) +"fN" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment) +"fO" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/derelict/storage/equipment) +"fP" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/equipment) +"fQ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/storage/equipment) +"fR" = (/obj/structure/table,/obj/item/device/assembly/timer,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/bridge) +"fS" = (/obj/structure/table,/obj/item/weapon/card/id,/turf/simulated/floor,/area/derelict/bridge) +"fT" = (/obj/structure/computerframe,/turf/simulated/floor,/area/derelict/bridge) +"fU" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/bridge) +"fV" = (/turf/simulated/floor/airless,/area) +"fW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) +"fX" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/equipment) +"fY" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/storage/equipment) +"fZ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"ga" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/turf/simulated/floor,/area/crew_quarters/captain) +"gb" = (/turf/simulated/wall,/area/derelict/arrival) +"gc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/storage/equipment) +"gd" = (/turf/simulated/floor,/area/derelict/storage/equipment) +"ge" = (/obj/machinery/door/window/southleft{req_access_txt = "20"},/obj/structure/table,/obj/item/weapon/card/id/captains_spare,/obj/item/weapon/disk/nuclear,/turf/simulated/floor,/area/crew_quarters/captain) +"gf" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/arrival) +"gg" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/storage/equipment) +"gh" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/crew_quarters/captain) +"gi" = (/turf/simulated/floor,/area/crew_quarters/captain) +"gj" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters/captain) +"gk" = (/obj/item/ammo_magazine,/turf/simulated/floor,/area/derelict/arrival) +"gl" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/crew_quarters/captain) +"gm" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor,/area/crew_quarters/captain) +"gn" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/equipment) +"go" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/crew_quarters/captain) +"gp" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/crew_quarters/captain) +"gq" = (/turf/simulated/floor,/area/derelict/arrival) +"gr" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area) +"gs" = (/turf/simulated/floor,/area) +"gt" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/derelict/storage/equipment) +"gu" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/packageWrap,/obj/item/device/flashlight,/turf/simulated/floor,/area/derelict/storage/equipment) +"gv" = (/obj/structure/table,/obj/item/weapon/storage/gl_kit,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/equipment) +"gw" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/equipment) +"gx" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/cable_coil,/turf/simulated/floor,/area/derelict/storage/equipment) +"gy" = (/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/derelict/storage/equipment) +"gz" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/equipment) +"gA" = (/obj/machinery/autolathe,/turf/simulated/floor,/area/derelict/storage/equipment) +"gB" = (/obj/item/weapon/storage/handcuff_kit,/turf/simulated/floor,/area/crew_quarters/captain) +"gC" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/arrival) +"gD" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/equipment) +"gE" = (/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area) +"gF" = (/obj/item/weapon/crowbar,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment) +"gG" = (/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) +"gH" = (/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/equipment) +"gI" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/weapon/cell{charge = 100; maxcharge = 15000; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/derelict/storage/equipment) +"gJ" = (/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) +"gK" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/infra,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/derelict/storage/equipment) +"gL" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/crew_quarters/captain) +"gM" = (/turf/simulated/wall,/area/medical/medbay) +"gN" = (/obj/machinery/door/airlock{req_access_txt = "5;13"},/turf/simulated/floor,/area/medical/medbay) +"gO" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/derelict/storage/equipment) +"gP" = (/obj/item/stack/sheet/glass{amount = 50},/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/derelict/storage/equipment) +"gQ" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/derelict/storage/equipment) +"gR" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) +"gS" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/derelict/storage/equipment) +"gT" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/equipment) +"gU" = (/turf/simulated/wall/r_wall,/area/derelict/storage/equipment) +"gV" = (/turf/simulated/wall/r_wall,/area/derelict/arrival) +"gW" = (/turf/simulated/wall,/area/chapel/main) +"gX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay) +"gY" = (/turf/simulated/floor,/area/medical/medbay) +"gZ" = (/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival) +"ha" = (/obj/structure/stool/bed/chair,/turf/simulated/floor,/area/derelict/arrival) +"hb" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor,/area/derelict/arrival) +"hc" = (/obj/structure/closet/coffin,/turf/simulated/floor,/area/chapel/main) +"hd" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) +"he" = (/turf/simulated/wall,/area/medical/genetics) +"hf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/genetics) +"hg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/arrival) +"hh" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/arrival) +"hi" = (/turf/simulated/floor,/area/chapel/main) +"hj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hk" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hl" = (/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hm" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/wardrobe/white,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hn" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ho" = (/obj/machinery/computer/med_data,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hp" = (/obj/machinery/door/window/eastleft{req_access_txt = "5"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hq" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hr" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hs" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ht" = (/obj/structure/closet/wardrobe/genetics_white,/turf/simulated/floor,/area/medical/genetics) +"hu" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/medical/genetics) +"hv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/genetics) +"hw" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics) +"hx" = (/obj/machinery/computer/med_data,/turf/simulated/floor,/area/medical/genetics) +"hy" = (/turf/simulated/floor,/area/medical/genetics) +"hz" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor,/area/medical/genetics) +"hA" = (/obj/structure/table,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/medical/genetics) +"hB" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/medical/genetics) +"hC" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/turf/simulated/floor,/area/medical/genetics) +"hD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor,/area/medical/genetics) +"hE" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/medical/genetics) +"hF" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment) +"hG" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area) +"hH" = (/turf/simulated/shuttle/wall,/area) +"hI" = (/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) +"hJ" = (/obj/structure/shuttle/engine/propulsion/burst/right{dir = 8},/turf/space,/area) +"hK" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/medical/medbay) +"hL" = (/obj/item/weapon/wrench,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hM" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hN" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hO" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hP" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hR" = (/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"hS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/genetics) +"hT" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/medical/genetics) +"hU" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/medical/genetics) +"hV" = (/turf/simulated/wall/r_wall,/area/toxins/lab) +"hW" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area) +"hX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"hY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) +"hZ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) +"ia" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/space,/area) +"ib" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ic" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"id" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ie" = (/obj/structure/stool/bed/chair,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"if" = (/obj/structure/table,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ig" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ih" = (/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor,/area/medical/genetics) +"ii" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab) +"ij" = (/turf/simulated/floor,/area/toxins/lab) +"ik" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/toxins/lab) +"il" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/toxins/lab) +"im" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/simulated/floor,/area/derelict/arrival) +"in" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"io" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"ip" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/wall{tag = "icon-pwall (NORTH)"; icon_state = "pwall"; dir = 1},/area) +"iq" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/chapel/main) +"ir" = (/obj/machinery/door{icon = 'icons/obj/doors/doormorgue.dmi'; name = "Door"; req_access_txt = "22"},/turf/simulated/floor,/area/chapel/main) +"is" = (/obj/structure/morgue,/turf/simulated/floor,/area/medical/medbay) +"it" = (/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iu" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iv" = (/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iw" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ix" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iy" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iz" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iA" = (/obj/structure/window/reinforced,/turf/simulated/floor,/area/medical/genetics) +"iB" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/medical/genetics) +"iC" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/medical/genetics) +"iD" = (/obj/structure/window/reinforced,/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor,/area/medical/genetics) +"iE" = (/obj/structure/window/reinforced,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/medical/genetics) +"iF" = (/obj/structure/window/reinforced,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/medical/genetics) +"iG" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/toxins/lab) +"iH" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival) +"iI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/derelict/arrival) +"iJ" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/space,/area) +"iK" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"iL" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"iM" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"iN" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area) +"iO" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"iP" = (/obj/structure/shuttle/engine/propulsion/burst/left{dir = 8},/turf/space,/area) +"iQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/chapel/main) +"iR" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"iS" = (/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"iT" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"iU" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"iV" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"iW" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/medical/medbay) +"iX" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"iY" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/medical/genetics) +"iZ" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/medical/genetics) +"ja" = (/obj/machinery/dna_scannernew,/turf/simulated/floor,/area/medical/genetics) +"jb" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics) +"jc" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dna_scannernew,/turf/simulated/floor,/area/medical/genetics) +"jd" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor,/area/medical/genetics) +"je" = (/obj/structure/table,/obj/item/weapon/storage/diskbox,/turf/simulated/floor,/area/medical/genetics) +"jf" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/arrival) +"jg" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"jh" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"ji" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"jj" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area) +"jk" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) +"jl" = (/obj/structure/table,/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) +"jm" = (/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) +"jn" = (/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) +"jo" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/chapel/main) +"jp" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "chapel"},/area/chapel/main) +"jq" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"jr" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"js" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft{req_access_txt = "9"},/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/genetics) +"jt" = (/obj/machinery/door/window/eastleft{req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) +"ju" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/medical/genetics) +"jv" = (/obj/machinery/door/window/southleft{req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) +"jw" = (/obj/structure/window/reinforced,/obj/effect/landmark/start,/turf/simulated/floor,/area/medical/genetics) +"jx" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/medical/genetics) +"jy" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/toxins/lab) +"jz" = (/turf/simulated/wall,/area/toxins/lab) +"jA" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/derelict/arrival) +"jB" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/derelict/arrival) +"jC" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area) +"jD" = (/obj/structure/window/reinforced,/turf/space,/area) +"jE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/chapel/main) +"jF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"jG" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"jH" = (/obj/structure/window/reinforced,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"jI" = (/obj/machinery/door/window/southleft{req_access_txt = "22"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"jJ" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"jK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"jL" = (/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) +"jM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/medical/genetics) +"jN" = (/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor,/area/medical/genetics) +"jO" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/derelict/storage/equipment) +"jP" = (/obj/machinery/door/airlock{req_access_txt = "8"},/turf/simulated/floor,/area/toxins/lab) +"jQ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/arrival) +"jR" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/arrival) +"jS" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"jT" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"jU" = (/turf/simulated/floor/plating,/area/chapel/main) +"jV" = (/obj/machinery/door/window/eastleft{req_access_txt = "22"},/turf/simulated/floor/plating,/area/chapel/main) +"jW" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/crew_quarters) +"jX" = (/turf/simulated/floor,/area/crew_quarters) +"jY" = (/obj/structure/stool/bed,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"jZ" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ka" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"kb" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/genetics) +"kc" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/toxins/lab) +"kd" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor,/area/toxins/lab) +"ke" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/toxins/lab) +"kf" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/turf/simulated/floor,/area/toxins/lab) +"kg" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/toxins/lab) +"kh" = (/obj/structure/stool/bed/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"ki" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area) +"kj" = (/obj/structure/window/reinforced{dir = 1},/turf/space,/area) +"kk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/chapel/main) +"kl" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"km" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/chapel/main) +"kn" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/chapel/main) +"ko" = (/turf/simulated/wall,/area/crew_quarters) +"kp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/crew_quarters) +"kq" = (/obj/machinery/door/window/southleft,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"kr" = (/obj/machinery/door/window/southright,/turf/simulated/floor{icon_state = "whiteshiny"},/area/medical/medbay) +"ks" = (/obj/machinery/computer/cloning,/turf/simulated/floor,/area/medical/genetics) +"kt" = (/obj/machinery/clonepod,/turf/simulated/floor,/area/medical/genetics) +"ku" = (/obj/machinery/door/airlock{req_access_txt = "7"},/turf/simulated/floor,/area/toxins/lab) +"kv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/toxins/lab) +"kw" = (/obj/item/weapon/clipboard,/turf/simulated/floor,/area/toxins/lab) +"kx" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/arrival) +"ky" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelict/arrival) +"kz" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/chapel/main) +"kA" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor,/area/crew_quarters) +"kB" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/derelict/storage/equipment) +"kC" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/equipment) +"kD" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/equipment) +"kE" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor,/area/toxins/lab) +"kF" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival) +"kG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/derelict/arrival) +"kH" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"kI" = (/obj/item/device/flashlight,/turf/simulated/floor,/area/chapel/main) +"kJ" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/equipment) +"kK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/storage/equipment) +"kL" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/arrival) +"kM" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters) +"kN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/derelict/storage/equipment) +"kO" = (/obj/item/weapon/extinguisher,/obj/machinery/door_control{id = "bd1"; pixel_x = 24},/turf/simulated/floor,/area/toxins/lab) +"kP" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/arrival) +"kQ" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area) +"kR" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{dir = 3; icon_state = "swall_f10"; layer = 2; tag = "icon-swall_f10"},/area) +"kS" = (/obj/structure/closet/wardrobe,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"kT" = (/obj/machinery/door/window/southleft{req_access_txt = "19"},/turf/simulated/floor,/area/crew_quarters) +"kU" = (/turf/simulated/wall/r_wall,/area/security/brig) +"kV" = (/obj/machinery/door/airlock{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig) +"kW" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/toxins/lab) +"kX" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/toxins/lab) +"kY" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor,/area/toxins/lab) +"kZ" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/arrival) +"la" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/crew_quarters) +"lb" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) +"lc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) +"ld" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/crew_quarters) +"le" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters) +"lf" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/security/brig) +"lg" = (/obj/machinery/door/window/southleft{req_access_txt = "58"},/turf/simulated/floor,/area/security/brig) +"lh" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/security/brig) +"li" = (/turf/simulated/wall,/area/security/brig) +"lj" = (/turf/simulated/wall,/area/derelict/hallway/secondary) +"lk" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/derelict/hallway/secondary) +"ll" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/toxins/lab) +"lm" = (/obj/item/weapon/wrench,/turf/simulated/floor,/area/toxins/lab) +"ln" = (/obj/structure/table,/turf/simulated/floor,/area/crew_quarters) +"lo" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/device/radio/headset,/turf/simulated/floor,/area/crew_quarters) +"lp" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/crew_quarters) +"lq" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/derelict/storage/equipment) +"lr" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/security/brig) +"ls" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) +"lt" = (/obj/structure/table,/obj/machinery/recharger,/obj/item/clothing/glasses/thermal,/turf/simulated/floor,/area/security/brig) +"lu" = (/obj/structure/closet/secure_closet/detective,/turf/simulated/floor,/area/security/brig) +"lv" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig) +"lw" = (/turf/simulated/floor,/area/security/brig) +"lx" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/security/brig) +"ly" = (/turf/simulated/floor,/area/derelict/hallway/secondary) +"lz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/toxins/lab) +"lA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/toxins/lab) +"lB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor,/area/toxins/lab) +"lC" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"lD" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"lE" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"lF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters) +"lG" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/crew_quarters) +"lH" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor,/area/crew_quarters) +"lI" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor,/area/crew_quarters) +"lJ" = (/turf/simulated/wall,/area/atmos) +"lK" = (/obj/machinery/door/airlock{req_access_txt = "24"},/turf/simulated/floor,/area/atmos) +"lL" = (/obj/effect/landmark/start{name = "Detective"},/turf/simulated/floor,/area/security/brig) +"lM" = (/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor,/area/security/brig) +"lN" = (/obj/structure/table,/turf/simulated/floor,/area/security/brig) +"lO" = (/obj/structure/closet/wardrobe/orange,/turf/simulated/floor,/area/security/brig) +"lP" = (/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) +"lQ" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) +"lR" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/derelict/arrival) +"lS" = (/obj/structure/closet/wardrobe,/turf/simulated/floor,/area/crew_quarters) +"lT" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/crew_quarters) +"lU" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor,/area/crew_quarters) +"lV" = (/obj/structure/closet,/turf/simulated/floor,/area/crew_quarters) +"lW" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor,/area/crew_quarters) +"lX" = (/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/wirecutters,/turf/simulated/floor,/area/crew_quarters) +"lY" = (/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor,/area/crew_quarters) +"lZ" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/crew_quarters) +"ma" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/atmos) +"mb" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4; icon_state = "on"; on = 1},/obj/machinery/door/poddoor{id = "ventintake"; name = "Intake Hatch"},/turf/simulated/floor,/area/atmos) +"mc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos) +"md" = (/turf/simulated/floor,/area/atmos) +"me" = (/obj/machinery/computer/communications,/turf/simulated/floor,/area/security/brig) +"mf" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/security/brig) +"mg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/security/brig) +"mh" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/security/brig) +"mi" = (/obj/structure/stool/bed,/turf/simulated/floor,/area/security/brig) +"mj" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/toxins/lab) +"mk" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor,/area/derelict/arrival) +"ml" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area) +"mm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters) +"mn" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/crew_quarters) +"mo" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/crew_quarters) +"mp" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/crew_quarters) +"mq" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/crew_quarters) +"mr" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor,/area/crew_quarters) +"ms" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos) +"mt" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/atmos) +"mu" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) +"mv" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/security/brig) +"mw" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/security/brig) +"mx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/brig) +"my" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) +"mz" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor,/area/crew_quarters) +"mA" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor,/area/crew_quarters) +"mB" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor,/area/crew_quarters) +"mC" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor,/area/crew_quarters) +"mD" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) +"mE" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) +"mF" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/atmos) +"mG" = (/obj/machinery/computer/secure_data,/turf/simulated/floor,/area/security/brig) +"mH" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/security/brig) +"mI" = (/obj/item/weapon/storage/trackimp_kit,/turf/simulated/floor,/area/security/brig) +"mJ" = (/obj/item/weapon/paper_bin,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) +"mK" = (/obj/item/device/flashlight,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) +"mL" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) +"mM" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/landmark/start{name = "Warden"},/turf/simulated/floor,/area/security/brig) +"mN" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/toxins/lab) +"mO" = (/obj/structure/grille,/turf/simulated/floor,/area/toxins/lab) +"mP" = (/obj/machinery/door/window/eastright,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/crew_quarters) +"mQ" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor,/area/crew_quarters) +"mR" = (/obj/structure/stool/bed,/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor,/area/crew_quarters) +"mS" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/crew_quarters) +"mT" = (/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/oxygen,/obj/item/weapon/weldingtool,/obj/item/clothing/gloves/black,/turf/simulated/floor,/area/crew_quarters) +"mU" = (/obj/structure/stool,/obj/effect/landmark/start{name = "Chef"},/turf/simulated/floor,/area/crew_quarters) +"mV" = (/obj/item/weapon/storage/backpack,/turf/simulated/floor,/area/crew_quarters) +"mW" = (/obj/structure/grille,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/atmos) +"mX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor,/area/atmos) +"mY" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/clipboard,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/security/brig) +"mZ" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor,/area/security/brig) +"na" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/security/brig) +"nb" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/security/brig) +"nc" = (/obj/machinery/computer/card,/turf/simulated/floor,/area/security/brig) +"nd" = (/obj/structure/closet/wardrobe/red,/turf/simulated/floor,/area/security/brig) +"ne" = (/obj/machinery/door/poddoor{id = "bd1"; name = "Vent"},/turf/simulated/floor{icon_state = "shiny"},/area/toxins/lab) +"nf" = (/obj/structure/window/reinforced{dir = 5},/turf/simulated/floor/plating,/area/derelict/arrival) +"ng" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/arrival) +"nh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/arrival) +"ni" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) +"nj" = (/obj/structure/grille,/turf/simulated/floor,/area/atmos) +"nk" = (/obj/machinery/door/poddoor{id = "vent1"; name = "Vent Hatch"},/turf/simulated/floor,/area/atmos) +"nl" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/atmos) +"nm" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/atmos) +"nn" = (/turf/simulated/wall/r_wall,/area/derelict/hallway/secondary) +"no" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/derelict/arrival) +"np" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/airless,/area/derelict/arrival) +"nq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) +"nr" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) +"ns" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor,/area/atmos) +"nt" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor,/area/atmos) +"nu" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor,/area/atmos) +"nv" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1; pixel_y = 1},/turf/simulated/floor,/area/atmos) +"nw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos) +"nx" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/atmos) +"ny" = (/turf/simulated/wall/r_wall,/area/atmos) +"nz" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/atmos) +"nA" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/hallway/secondary) +"nB" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) +"nC" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nD" = (/turf/simulated/floor,/area/derelict/storage/storage_access) +"nE" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nF" = (/turf/simulated/wall,/area/derelict/storage/storage_access) +"nG" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nH" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nI" = (/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nJ" = (/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nK" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/atmos_alert,/turf/simulated/floor,/area/atmos) +"nL" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/atmos) +"nM" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/atmos) +"nN" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"nO" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"nP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"nQ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nR" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/turf/simulated/floor,/area/derelict/storage/storage_access) +"nS" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/door_control{id = "vent1"; pixel_x = -24},/turf/simulated/floor,/area/atmos) +"nT" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor,/area/atmos) +"nU" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor,/area/atmos) +"nV" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor,/area/atmos) +"nW" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/atmos) +"nX" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/atmos) +"nY" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"nZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"oa" = (/obj/machinery/power/monitor,/turf/simulated/floor,/area/derelict/hallway/secondary) +"ob" = (/obj/machinery/door/window/eastleft{req_access_txt = "1"},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oc" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor,/area/derelict/storage/storage_access) +"od" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oe" = (/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/derelict/storage/storage_access) +"of" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/derelict/storage/storage_access) +"og" = (/obj/machinery/door_control{id = "ventintake"; pixel_x = -24},/turf/simulated/floor,/area/atmos) +"oh" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/atmos) +"oi" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/atmos) +"oj" = (/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/atmos) +"ok" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/atmos) +"ol" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/atmos) +"om" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/atmos) +"on" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oo" = (/obj/structure/table,/obj/item/weapon/handcuffs,/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/storage_access) +"op" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/derelict/storage/storage_access) +"or" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/storage/storage_access) +"os" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor,/area/derelict/storage/storage_access) +"ot" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/storage/storage_access) +"ou" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) +"ov" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) +"ow" = (/obj/item/clothing/shoes/brown,/obj/item/clothing/under/rank/atmospheric_technician,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/atmos) +"ox" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"oy" = (/obj/machinery/door/airlock{req_access_txt = "12"},/turf/simulated/floor,/area/derelict/storage/storage_access) +"oz" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oA" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/atmos) +"oB" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor,/area/atmos) +"oC" = (/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/atmos) +"oD" = (/obj/item/weapon/clipboard,/turf/simulated/floor,/area/atmos) +"oE" = (/obj/structure/table,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor,/area/atmos) +"oF" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) +"oG" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"oH" = (/obj/machinery/door/airlock{req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oJ" = (/obj/machinery/door/window/eastleft{req_access_txt = "10"},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oL" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oM" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/atmos) +"oN" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/atmos) +"oO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos) +"oP" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/device/radio,/obj/item/weapon/screwdriver,/obj/item/weapon/crowbar,/turf/simulated/floor,/area/atmos) +"oQ" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/atmos) +"oR" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/atmos) +"oS" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/device/t_scanner,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/atmos) +"oT" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver,/obj/item/weapon/extinguisher,/turf/simulated/floor,/area/atmos) +"oU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"oV" = (/obj/machinery/power/solar_control,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/derelict/hallway/secondary) +"oW" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/storage/storage_access) +"oX" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/derelict/storage/storage_access) +"oZ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/atmos) +"pa" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/atmos) +"pb" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor,/area/atmos) +"pc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/derelict/hallway/secondary) +"pd" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor,/area/derelict/hallway/secondary) +"pe" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/under/color/black,/obj/item/clothing/mask/gas,/obj/item/device/radio/headset,/obj/item/clothing/gloves/black,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/derelict/storage/storage_access) +"pf" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor,/area/derelict/storage/storage_access) +"pg" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor,/area/derelict/storage/storage_access) +"ph" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/t_scanner,/turf/simulated/floor,/area/derelict/storage/storage_access) +"pi" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor,/area/derelict/storage/storage_access) +"pj" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/derelict/storage/storage_access) +"pk" = (/obj/structure/table,/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/derelict/storage/storage_access) +"pl" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/atmos) +"pm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor,/area/atmos) +"pn" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/device/flashlight,/turf/simulated/floor,/area/atmos) +"po" = (/obj/structure/table,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/cell,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor,/area/atmos) +"pp" = (/obj/structure/window/reinforced{dir = 5},/turf/space,/area) +"pq" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/derelict/hallway/secondary) +"pr" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/derelict/hallway/secondary) +"ps" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pt" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area) +"pu" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area) +"pv" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"pw" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/derelict/hallway/secondary) +"px" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/hallway/secondary) +"py" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pz" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) +"pA" = (/obj/machinery/door/airlock{req_access_txt = "17"},/turf/simulated/floor,/area/derelict/teleporter) +"pB" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelict/hallway/secondary) +"pF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area) +"pG" = (/turf/simulated/wall/r_wall,/area/derelict/teleporter) +"pH" = (/turf/simulated/floor,/area/derelict/teleporter) +"pI" = (/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) +"pJ" = (/obj/machinery/door/airlock{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"pK" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor,/area/derelict/hallway/secondary) +"pL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"pM" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area) +"pN" = (/obj/machinery/computer/teleporter,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) +"pO" = (/obj/machinery/teleport/station,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) +"pP" = (/obj/machinery/teleport/hub,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelict/teleporter) +"pQ" = (/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"pR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge/ai_upload) +"pS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelict/bridge/ai_upload) +"pT" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"pU" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor,/area/derelict/teleporter) +"pV" = (/obj/effect/landmark{name = "tripai"},/turf/simulated/floor/bluegrid,/area/derelict/bridge/ai_upload) +"pW" = (/obj/machinery/turret,/turf/simulated/floor/bluegrid,/area/derelict/bridge/ai_upload) +"pX" = (/turf/simulated/floor/bluegrid,/area/derelict/bridge/ai_upload) +"pY" = (/obj/structure/rack,/obj/item/weapon/aiModule/freeform,/obj/item/weapon/aiModule/prototypeEngineOffline,/obj/item/weapon/aiModule/safeguard,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"pZ" = (/obj/structure/rack,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/teleporterOffline,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qa" = (/obj/structure/rack,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/quarantine,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qb" = (/obj/structure/rack,/obj/item/weapon/aiModule/protectStation,/obj/item/weapon/aiModule/reset,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qc" = (/obj/machinery/turret,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qd" = (/obj/machinery/power/smes{charge = 5e+006},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qe" = (/obj/machinery/turret{dir = 8},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qf" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor,/area/derelict/teleporter) +"qg" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qh" = (/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qi" = (/obj/effect/landmark/start{name = "AI"},/turf/simulated/floor/bluegrid,/area/derelict/bridge/ai_upload) +"qj" = (/obj/machinery/computer/aiupload,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qk" = (/obj/machinery/door/window/eastleft{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"ql" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qm" = (/obj/machinery/power/solar_control,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qn" = (/obj/machinery/door/window/eastleft{req_access_txt = "16"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qo" = (/obj/machinery/turret{dir = 1},/turf/simulated/floor/bluegrid,/area/derelict/bridge/ai_upload) +"qp" = (/obj/structure/rack,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qq" = (/obj/machinery/door/airlock{req_access_txt = "16"},/obj/machinery/door/window/eastleft{req_access_txt = "16"},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qr" = (/obj/machinery/turret{dir = 1},/turf/simulated/floor,/area/derelict/bridge/ai_upload) +"qs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) +"qt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) +"qu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area) +"qv" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) +"qw" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area) +"qx" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) +"qy" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) +"qz" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area) +"qA" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"},/area) +"qB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating/airless,/area) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -865,92 +890,92 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPaTaaaaaaaaab aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaIaJaSaPaTaaaaaaaaabaIaJaSaPaUbaaUbabababababababababbbaaUaUaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcbfaYaYaYaYaYaYaXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPaTaaaabeaaabaOaJaKaPaUbaaZbababababababababaaUbaaUbgaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWaXaYaYaYaYaYaYbhaabibjbjbjbjbjbjbjbjbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaIaJaSaPaTaaaaaaaaabaUaZblblaUbmbmbmbmbmbmbmbmbnbnbnaUbmbmbmbmbmaLbobpbobpbobpaLaaaaaaaaaaaaaaaabqbobpbobpbobpaXbrbrbraYaYaYaXaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPbtbubvbvbvbuaUbabwbxbybabzbababAbabBbmbababaaUbmbCbabCbmbmbmbmaUaUaUaUaUaUaUaaaaaaaaaaaabqbqbqbqbqbqbqaXaXaXaXaXbDbfaXaaaabEbFbGaabEbFbGaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaIaJaSaPbtbHbvbIbIbvaUaZbwbJbabababababAbababmbababKaUbmbCbababLbMbNbOaUbPbPbPbPbPaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYbQbRbSaYaYbTaaaabEbUbGaabEbUbGaabVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPbtbvbvbWbXbvaUbabJbYbZbacabZbabAbababmbababKaUbmbCbabCbmcbcccdaUbObabObabPaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYcecfbSaYaYbTaaaabEbUbGaabEbUbGaabVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabucgbtchchbtcicjckclbvcmbabJbabacnbacobZbababzbmbababKaUbmbmcpbmbmbmbmbmaUbObabOcqbPaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXcrcsctcucvcwcxaaaaaacyaaaaaaczaaaabVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabubHcAcBcBbvcBbucCcDbuaUcEbYcFcGbabYbZbJbababmbmbacHbacIbabababacJbabacKaUbObabObabPaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXcLcLcMcNaYcscOcPczcPbUcPcPczczcPcPcQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabucgcRbXbvcSbvbucTcUcVaUcWcXbKbabababJbJbabacYbabababacIbababababLbababaaUcZbabObabPaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYaYaYaYaYaYdaaaaaaacyaaaaaacyaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabubvbvbWdbbvcBbudcddcVaUaUaUaUaUaUaUbJbxbybabmdebababacIbCbCdfdfdgbababaaUcZbabObabPaUaaaaaaaaaaaadhdhdhdhdhdhdhaXaXaXaXaXaXbfaXaaaabEbUbGaabEbUbGaabVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabububvbvbvbvbWdidbdjaabmbmbmbmbmbmaUdkdkdldlbmdldldldlbmbmbmbmbmbmbnbnbnaUbPbabPbabPaUaaaaaaaaaaaadhdmdmdndndndnaXaYaYaYaXdoaYaXaaaabEbUbGaabEbUbGaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabvbvbvbIbvbvdpdqdraadsbmbObMdtbmdudvdvdwdxdxdxdxdxdydzdAbabababmbababadBbababababaaUaaaaaaaaaaaadhdCdCdCdCdCdCaXaYaYaYaXaXbfaXaaaabEdDbGaabEdDbGaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabubububWcjcjdEdraaaadFdGdHdHbabmdudvdvdvdwdxdxdxdxdIdJdKbababacYbababaaUbababPbabPaUaaaaaaaaaaaadhdLdCdCdCdCdCaXaYdMaYaXdNaYaXaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadFdGdHdOdPbmdudvdvdvdvdQdRdSdSdSdTdUbadVbabmbababaaUbPbabPbabPaUaaaaaaaaaaaadhdWdWdWdXdYaXaXaYaYaYaXaXdZaXaabibjbjbjbjbjbjbjbjeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadsbmebbBbabmdudvecdIecdxdxdxdxdyedeebababPbmbababKaUbPbabPbabPaUaaaaaaaaaaaadhdCdCdCdCdCaXaXaYaYaYaYaYaYaXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaabmbmbmefbmbmduecdxdxdxdxdxdxdxdIedbababaegbmbababKaUbPbabPbabPaUaLaLaLaLaLaLdhdCdCdCdCdCehaYaYaYaYaYaYaYaXeiejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadQekelbababmaUemememenbmbmeoeobmbmepeqeqegbmbababKaUbPbPbPbPbPaUaLbqaLbqaLaLdheresetereraXaXaXaXaXaXaXaXaXaXejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababmbmbmbmbmdueodQdQdQeubacqeqeqbabmbababMaUaUaUaUaUaUaUaLaLaLaLaLaLdhdCdCdCdCdCevewexeyezeAeAeBeCeDejaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadQdQelbababmbObaeEbmdueodQdRdSeFeGbaeqeqbabmbabaebaUaaaaaaaaaaaaaaaaaaaaaaaadhdCdCdCdCdCevdCeHeHeHeHeHeHeIeJejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababLbabababmdueoeKeKeKeubabababababmbabaebaUaUaUaUaaaaaaaaaaaaaaaaaadhereLererereMdCdCdCdCdCdCdCeNeOejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadQdQelbababmbacqbabmdueoePePePeubababObOeQbmbabababmeReSaUaaaaaaaaaaaaaaaaaadhdCdCdCeTdCeUdCdCdCdCdCdCdCeVeWejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababmbabababmaUememememembmbmbmbmbmbmbabababLbabaaUaaeXeXeXeXeXeXeXeXeXeYdCdCdCdCevdCdCdCdCdCdCdCeZfaejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadQdQelbababmbabaebefbbbabababababababababacYbabababmfbfcaUaaeXfdfdfefffgfhfieXdCdCdCdCdCevfjfkdCflflflflfmfnejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaabmbmbmbmbmbmbmaZbmbmbmbmbmbmbmbmbmbmbmbmbmaUaUaUaUaUaUaUaUaaeXfofofofpfpfpfqeXeXeXfreXdCeveyfsdCeyftfufufveDejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafwaaaafwaaaafxbafxaaaafwaaaafwaaaafwaaaafwaLaLaLaaaaaaaaaaaaeXfofofofofofofyeXeXeXfzeXeXeXfAfAfBfAfAfAfCfCfCejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaZbmaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaaaaaaaaaaaaeXeXfzeXfDfDfDfDeXfEfEfEfEfEeXfAfAfBfAfFfAfCfGfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaLaLaLaaaaaaaaaaaaeXfEfEfEfEfEfEfEfHfEfEfEfEfEeXfAfIfJfJfKfAfCfLfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaaeXeXeXeXeXeXfEfEfEfEfEfEfEeXfEfEfEfEfEeXfAfMfJfJfNfAfCfLfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaLaLaaeXfOfEfEfEfHfqfEfEfEfEfEfEeXfEfEfEfEfEeXfAfJfJfJfPfAfCfLfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaaeXfEfEfEfEeXeXeXfzeXeXeXeXeXeXeXeXeXeXeXfAfJfQfJfPfAfCfRfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaLaLaLaaeXfEfEfEfEeXfyfSfTbqfUfVfWfXfYfYfZgaeXgbfAfJfJfJgcfAfCgdfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaaeXfEfEfEfEeXgefTfTgfggghgighgjgkgigleXfEfAgmgmgmgmfAfCfRfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagngognaaaaaaaaaaaaaaaaaaaaaaaaaLaLaLaaeXfrfrfrfreXgefEfEgpgqgrgsgtgtfYgufZeXfEgvgwgwgwgwgwfCfCfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxaaaaaafwaaaafwaaaagygzgyaaaafwaaaafwaaaafwaaaafwaLaLaLaaeXfEfEfEfEeXeXeXfzeXeXeXeXeXeXeXeXeXeXeXeXgAgBfRfRfRgCgCfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxgDgDgDgDgDgDgDgDgDgDgDgDgDgDgngngEgEgEgngEgEgEgEgngogngEgEgFgGgGgFgGgGgFgGgGgFgFgFgFgFgFfEfEfEfEeXfEfEfEfEeXfEfEfEfEfEfEfEfEfEeXgHgAgIgBfRgCgCfCejbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxgDgDgDgDgDgDgJgJgJgJgJgJgJgJgngKgLgLgMgNgOgPgMgQgMgMgRgSgTgFgUgVgWgXgYgZgZhahbhchdhehfgFfEfEfEfEfHfEfEfEfEfHfEfEfEfEfEfEfEfEfEhgfRfRfRfRfRgCgCfCejbqaaaaaaaaaaaaaaaaaaaahhhihjhkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaagxgDgDgDgDgDgDgJgngngngngnhlgngnhmhnhohphqgMgMgMhrgMgMgMgMhshtgZgZgZgZgZgZgZgZgZgZhuhvhvgFfEfEfEfEeXfEfEfEfEhwhwhwhwhwhwhwhwhwhwhwfRfRfRfRfRfRfRfCejbqaaaaaaaaaaaaaahhhihihxhyhzhAhBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxgDgDgDgDgDgDgJgngzgzgzgzgzgzhlgMhChDhEgQgMgMhFhGgMgMgMgMhHhtgZgZhIgZgZgZgZgZgZgZgZgZgZgFfEfEfEfEeXeXeXeXfzhwhJhKhLhLhLhKhKhKhMhwgAgAfRgAhNfRfRfCejbqaaaaaaaaaahhhihxhyhOhOhPhzhQhBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahRgxgxgxgxgxgxgxhSgnhTgzhTgzhTgzgnhUhVhWgMhqhXhYhZiagMgMgMgMhHhtgZgZgZgZibicidieifgZgZigibgFfEfEfqfEeXfEfEfEfEhwhJhKhKhKhKhKhMihhMhwiiiifRiiijfRfRfCejbqaaaabeaaikhzililiminioiphjiqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaairisitiuitiviwivitgnhTgzhTgzhTixhlgMgMgMgMiygMgMgMgMgMgMgMgMhHgFgFgFgFizizgZgZiAiBiCiDiEiFgFeXfrfreXeXfEfEfEfEhwhJihihihhKhKhMihhMhwfRfRfRfRiGgAgAfCejbqaaaaaaaahhhiiHiIiJioiKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaairiLiMiNiOiPiQiPiOgngzgzgzgzgzgzgnhUhVgMgMhqgMiRiRiRiRiRiRgMiSiTiUiVibiWibiXgZiYgZgZgZgZiFgFfEfEfEfEeXfEfEfEfEhwiZhMhMhMhKhKhMihhMhwjajbjcfCfCfCfCfCejbqaaaahhhihihihihihihihihihijdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaajejfjgjhjijjiujkivitgngngngngngngngngMgMgMgMhqgMgMgMgMgMgMgMjlgKgFgZgFgZjmgZjmjnizgZjojogZgZgFfEfEfEfEeXfEjpfEfEhwhwhwhwhwjqhwhwhwhwhwhwjrjrfCjsjsjsfCejbqaahhhxjthijujujujujujuhiinhijdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajvjvjvjvjvjwiNiOiNiOjxjyjyjyjyjyjygnhUhVgMgMhqjzjzjzjAgnjBjBgngngFgFgFjmgZjmgZjCgZgZgZgZgZgZgFfEfEfEfEeXfEfEfEfEfEfEhwjajDhKjEjFjGjHhKhwfRfRfRfRfRfRfCejaahhhxjtjthijIjIjIjIjIjIhiinjJhiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajKjLjMjNjOjNiuiwivitgxgxgxjPjPjPjQgngngngngngngngngngngnjRjSgngngFgFgFgFgFgFgFgFiFiFiBjTjUiFgFfEfEfEfEfHfEfEfEfEfEfEjVjWhKhKhKjXhKhKhKhwfRjYfRfRfRfRfCjZjZhiininininjIjIjIjIjIiohiininhiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaairiLiMiNiOiPiQiPiOgxkagxaajPkbjykbkbkbkbkbkbkbkbjPkcfEfEfEfdfdeXkdkefEfEfEeXeXeXeXeXeXeXeXeXfEfEfEfEeXfEfEfEfEfqfEhwjahKkfkfkfkfhKjahwfCfRfRfRfRfRkgkhfRipininininininkiininhiinininipaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaairisitiuitiviwivitgxkjgxaajPjyjyjyjyjyjyjyjyjyjyjPfEfEfEfEfqkkeXfEfEfEfEfEeXeXeXeXfEfEfEklfEfEfEfEfEeXfEfEfEfEfEfEhwjahKhKkfkfhKhKjWjVkmfRfRfRfRfRfCjZjZhiininininjIjIjIjIjIjJhiininhiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaahRgxiOgxgxgxgxgxgxgxgxgxaajPjyjyjyjyjyjyjyjyjyjyknfEfEfEfEfEkoeXfEfEfEfEfEklkdkefEfEfEfEklfEfEfEfEfEeXfEfEfEfEfEfEhwjahKhKhKhKhKkpjahwfCfRfRfRkqkqfCejaakrksktkthijIjIjIjIjIjIhiiniohiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxgxgxaaaaaaaaaaaaaaaaaajPjyjyjPjPjPkujPjPjPkujPfEfEfEfEfEfEfHfEfEfEfEfEklfEfEfEfEfEfEklfEfEfEfzkvkvkwkvfEfEfEfEhwjakxjakykzhKhKiZhwfCjrfCfRkAkAfCgwejaakrkskthijujujujujujuhiinhiiKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajPjyjyjPkBjyjyjPkBjyjyjPkCkCkCkDkEkFjPfEfEfEfEfEklfEfEfEfEkvkvkvkvkvkvkGkvkHkIkvkJkJkKkLhwjahKjakMkMkNhKhwhwfCjbfCfCfCfCfCgwejejejkrhihihihihihihihihihiiKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajPjyjyjPkOkbkPjPkOkbkPjPjyjyjyjyjykQjPfEfEfEkRfEklfEfEfEkdkvkSkTkUkVkWkXkXkWkYkvkJkJkKkZhwjahKjalalblclchwfRfRfRfRkAkAfRfRgwgwgwgwejaakrhildlelfjJjdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajPlglglgjPkElhjPjPjPjPjPjPjPjPjPjyjyliljjyjyjPlklklklklklklklklllkkvkSkTkXlmkWkXlnkWkYlokXlpkKkZhwjajVjalqlrlqlqhwfRfRfRfRkqkqfRfRkgfRlsgwejaaikhzhPhPiminjJiphjhkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaajPkBkBkBjPjyjyltlulululvlwlwjyjPjylxlylzlAjyjPlBlBlBlBlClDlElklElBkvkSkTlFkXlGkXkXlGlHlIkXlJkKkZhwlKhKjVlqlqlqlqhwfRfRfRfRfRfRfRfRfCfRlLgwejaaaakrhikslMhOhOilhzhAhBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalNjyjyjyjPjyjyjyjyjyjyjyjylOjyjPjylPlQlRlSjyjPlTlElElElUlVlElklllkkvkSkTkXkXkXlWlWlXlYkXkXlJkKkZhwjajajalqlqlqlZhwfRfRfRjYfRfRfRfRfCfRlLgwejaaaaaaaakrhihikslMhzhQhBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajPkBkBjyknjyjymambjykBmcjyjyjyjPjylPkOkOmdjyjPmemfmfmfmglVlElklEmfkvmhmimjmkmlmmkXmnlYkXkXlJkKkZhwjamomplqlqlqlqhwfRfRfRfRfRfRfRfRfCfRlLgwejaaaaaaaaaaaaaakrhihjiqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalNjyjyjymqjyjymrmajymsmrjymtjyjPmujylPmvmwjyjPlVlEmxlEmylVlElklllkkvmzmAmBmCmDmElplGlGkXkXkXkKkZhwhwhwhwmFmFmFmFhwmGmHmGmImImImImImImImIgwejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajPkBkBkBjPkBjymakBjymrkBjyjyjyjxjyjyjyjyjyjyjPmJmKmJmKmLmMlElkmNlkkvkvkvkvkvkvkvkvkvkvkvkvkvmOkZmOaafwfwfwfwfwfwfwmPfRmQfwfwfwfwaaaaaaaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamRbjbjbjbjbjbjbjmSaajPlglglgjPjPkEjPjPjPjPjPjPjPjPjPjPjPjPkEjPjPjPmTmUmVmWmXlElElElEmYlElElElEmZlEnanananananalEmOkZmOaabqaaaabqaaaabqmGmHmGbqaaaabqaaaaaaaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaakKnbkZkZncndnenfngnhneninjnjnenenenkngnlmMmMmMlElElEnmlElElEnnlElEmZlEnmlElElElElElEmOkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejfwaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEnpbGaabEnpbGaakKnqnqnqkKkZkZkZncnenenrngnhnenenenenenenensngntnulEnvlEnvlEnvlElElElElElElllEnwnxnxnxnxnylEmOkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEnzbGaabEnzbGaanAnBnckZkKkZkZkZnCnenenDngnEnFnenenenenenenGngnHlElElEnvlEnvlUnInJnKnKnLnLmZlEnwnMnMnMnMnNlEmOkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejfwaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEnzbGaabEnzbGaanAkZnckZnOkZkZkZncnenEnPngnEnQnRnSnTnenUnenGngnJnJnVnWlElElElUlElElEnXlElEmZmZmZmZmZmZmZmZmZmOkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaacyaaaaaacyaaaanYkZnckZkKngngnZngngngngngngngngngngoangngngnglElElEoblElTlEoblEocodoelElEoblEofmfmfmfmfmfmfkKkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejfwaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaogcPcPohcPcPcPohcPcPoiojokkZkKngnjneneneneneolomnrngnjnenenenenUngnMnMnMlUlEonoooplEoqorosotoulklElEmfmfmfmfmfmfkKkZnoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaacyaaaaaacyaaaaovownckZkKngnjneneneoxneneneoyngoznenenenenenglklklklklEoAoBoClklklklklklklklElElBlBlBlBlBlBkKkLmOkKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafwejfwaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEnzbGaabEnzbGaaoDoEnckZkKngoFoFnioFnioGoHoIoJngoKneoGoLnenengaaaalkoMoBoNoBoClkaaaaaaaaaalkoOoPlBlBlBlBlBlBkKkZkZkZkKaaaaaaaaaaaaoQoRoQaaaaaaaaaaejejaaaLejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEnzbGaabEnzbGaanAoSnckZkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKoRkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkKkZkZkZkZoTaaaaaaaaaaoUkZoVaaaaaaaaaaejaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabEoWbGaabEoWbGaanAkZnckZoXkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZoXkZkZkZoYkZkZoZaaaaaaaaaaoUoRoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaanAkZnckZoXkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZkZoXkZkZkZkZkZkZoZaaaabeaaaaoUkZoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapabjbjbjbjbjbjbjmSaakKnqnqkKnqnqmOmOmOpbmOmOmOpcpckKpcpcpcpcpckKpcpcpcpcpckKpcpcpcpcpckKpcpcpcpcpckKpcpcpcpdpekZkZkZkZkZkZpfjejejejejepgkZoVaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaejejejejejphphpipipipipiphphejejejejejejejejejejejejejkKejejejejejmOejejejejejmOejejejmOmOkLmOkZkZkZkZoRoXkZkZkZkZkZkZoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaphpipipipipipipiphaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapjaaaaaaaaaapjaaaabepjpjpkpjplplmOpmpnpmpnjKjKjKjKjKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaphpipipopppqpipiphaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaapjpjpjpjpjpjpjpjpjpjpjpjpjpjpjprpjpsptpjpuaLpuaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaphpvpipipipipipiphaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapjpjpwpxpypxpypjpzpApBpCpDpjpEpjprprprpFpjpuaLpuaLaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaphphpGpipipipiphphaaaaaaaaaabeaaaaaaaaaaaaaaaapjpjpjpyprpyprpypjprprprprprpjpHpjprpIprprpjpuaLpuaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaphphphphphphphaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapjpjpJpKprprprpLpLprprpMprprpjpNpjprpIprpFpjpuaLpuaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaapjpjpjpyprpyprpypjpjpjprprpLpLpOpLprpIprprpjpuaLpuaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapjpjpwpPpypPpypjpQpRprprpSpjpTpjprprprpFpjpuaLpuaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapjpjpjpjpjpjpjpjpjpjpjpjpjpTpjpjpjpjpjpjpUaLpUaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapVaaaaaaaaaacyaaaaaaaaaapVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacyaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaapWpWpWaacyaapWpWpWaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaapXpYpYcPpZcPpYpYqaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqbqbqbaacyaaqbqbqbaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacyaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaapWpWpWaacyaapWpWpWaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaapXpYpYcPpZcPpYpYqaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqbqbqbaacyaaqbqbqbaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacyaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapabjbjbjbjbjqcbjbjbjbjbjeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPbtbubvbvbvbuaUbabwbxbybzbAbabBbCbDbEbmbababaaUbmbFbabFbmbmbmbmaUaUaUaUaUaUaUaaaaaaaaaaaabqbqbqbqbqbqbqaXaXaXaXaXbGbfaXaaaabHbIbJaabHbIbJaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaIaJaSaPbtbKbvbLbLbvaUaZbwbxbMbNbObabPbCbQbabmbababRaUbmbFbababSbTbUbVaUbWbWbWbWbWaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYbXbYbZaYaYcaaaaabHcbbJaabHcbbJaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaOaJaKaPbtbvbvcdcebvaUbacfcgbMchcicjckbCbQbabmbababRaUbmbFbabFbmclcmcnaUbVbabVbabWaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYcocpbZaYaYcaaaaabHcbbJaabHcbbJaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabucqbtcrcrbtcsctcucvbvcwbacfbabacxcyczcfbacAcBbmbababRaUbmbmcCbmbmbmbmbmaUbVbabVcDbWaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXcEcFcGcHcIcJcKaaaaaacLaaaaaacMaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabubKcNcOcObvcObucPcQbuaUcRcgcScScTcScUbxbMcVbmbmbacWbacXbabababacYbabacZaUbVbabVbabWaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXdadadbdcaYcFdddecMdecbdedecMcMdededfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabucqdgcedhdidjbudkdldmaUdndobRbadpdqdrdsdtdudvbabababacXbababababSbababaaUdwbabVbabWaUaaaaaaaaaaaaaaaaaaaaaaaaaaaXaYaYaYaYaYaYdxaaaaaacLaaaaaacLaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabubvbvcddybvcObudzdAdmaUaUaUaUaUaUaUdBbxbybzbmdCbabadDcXbFbFdEdEdFbababaaUdwbabVbabWaUaaaaaaaaaaaadGdGdGdGdGdGdGaXaXaXaXaXaXbfaXaaaabHcbbJaabHcbbJaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabububvbvbvbvcddHdydIaabmbmbmbmbmbmaUdJdJdKdKbmdKdKdKdKbmbmbmbmbmbmbnbnbnaUbWbabWbabWaUaaaaaaaaaaaadGdLdLdMdMdMdMaXaYaYaYaXdNaYaXaaaabHcbbJaabHcbbJaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabvbvbvbLbvbvdOdPdQaadRbmbVbTdSbmdTdUdUdVdWdWdWdWdWdXdYdZbabababmbababaeabababababaaUaaaaaaaaaaaadGebebebebebebaXaYaYaYaXaXbfaXaaaabHecbJaabHecbJaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabububucdctcteddQaaaaeeefegegbabmdTdUdUdUdVdWdWdWdWeheiejbababadvbababaaUbababWbabWaUaaaaaaaaaaaadGekebebebebebaXaYelaYaXemaYaXaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeeefegeneobmdTdUdUdUdUepeqerereresetbaeubabmbababaaUbWbabWbabWaUaaaaaaaaaaaadGevevevewexaXaXaYaYaYaXaXeyaXaabibjbjbjbjbjbjbjbjezaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRbmeAbEbabmdTdUeBeheBdWdWdWdWdXeCeDbababWbmbababRaUbWbabWbabWaUaaaaaaaaaaaadGebebebebebaXaXaYaYaYaYaYaYaXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaabmbmbmeEbmbmdTeBdWdWdWdWdWdWdWeheCdDbabaeFbmbababRaUbWbabWbabWaUaLaLaLaLaLaLdGebebebebebeGaYaYaYaYaYaYaYaXeHeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaepeJeKbababmaUeLeLeLeMbmbmeNeNbmbmeOePePeFbmbababRaUbWbWbWbWbWaUaLbqaLbqaLaLdGeQeReSeQeQaXaXaXaXaXaXaXaXaXaXeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababmbmbmbmbmdTeNepepepeTbacDePePbabmbababTaUaUaUaUaUaUaUaLaLaLaLaLaLdGebebebebebeUeVeWeXeYeZeZfafbfceIaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaepepeKbababmbVbafdbmdTeNepeqerfeffbaePePbabmbabaeAaUaaaaaaaaaaaaaaaaaaaaaaaadGebebebebebeUebfgfgfgfgfgfgfhfieIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababSbabababmdTeNfjfjfjeTbabababababmbabaeAaUaUaUaUaaaaaaaaaaaaaaaaaadGeQfkeQeQeQflebebebebebebebfmfneIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaepepeKbababmbacDbabmdTeNfofofoeTbababVbVfpbmbabababmfqfraUaaaaaaaaaaaaaaaaaadGebebebfsebftebebebebebebebfufveIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbmbmbababmbabababmaUeLeLeLeLeLbmbmbmbmbmbmbabababSbabaaUaafwfwfwfwfwfwfwfwfwfxebebebebeUebebebebebebebfyfzeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaepepeKbababmbabaeAeEbbbabababababababababadvbabababmfAfBaUaafwfCfCfDfEfFfGfHfwebebebebebeUfIfJebfKfKfKfKfLfMeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaabmbmbmbmbmbmbmaZbmbmbmbmbmbmbmbmbmbmbmbmbmaUaUaUaUaUaUaUaUaafwfNfNfNfOfOfOfPfwfwfwfQfwebeUeXfRebeXfSfTfTfUfceIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVaaaafVaaaafWbafWaaaafVaaaafVaaaafVaaaafVaLaLaLaaaaaaaaaaaafwfNfNfNfNfNfNfXfwfwfwfYfwfwfwfZfZgafZfZfZgbgbgbeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaZbmaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaaaaaaaaaaaafwfwfYfwgcgcgcgcfwgdgdgdgdgdfwfZfZgafZgefZgbgfgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaLaLaLaaaaaaaaaaaafwgdgdgdgdgdgdgdgggdgdgdgdgdfwfZghgigigjfZgbgkgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaafwfwfwfwfwfwgdgdgdgdgdgdgdfwgdgdgdgdgdfwfZglgigigmfZgbgkgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaLaLaafwgngdgdgdggfPgdgdgdgdgdgdfwgdgdgdgdgdfwfZgigigigofZgbgkgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaafwgdgdgdgdfwfwfwfYfwfwfwfwfwfwfwfwfwfwfwfZgigpgigofZgbgqgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaLaLaLaafwgdgdgdgdfwfXgrgsbqgtgugvgwgxgxgygzfwgAfZgigigigBfZgbgCgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLbqaLaafwgdgdgdgdfwgDgsgsgEgFgGgHgGgIgJgHgKfwgdfZgLgLgLgLfZgbgqgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagMgNgMaaaaaaaaaaaaaaaaaaaaaaaaaLaLaLaafwfQfQfQfQfwgDgdgdgOgPgQgRgSgSgxgTgyfwgdgUgVgVgVgVgVgbgbgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagWgWgWgWgWgWgWgWgWgWgWgWgWgWgWgWaaaaaafVaaaafVaaaagXgYgXaaaafVaaaafVaaaafVaaaafVaLaLaLaafwgdgdgdgdfwfwfwfYfwfwfwfwfwfwfwfwfwfwfwfwgZhagqgqgqhbhbgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagWhchchchchchchchchchchchchchcgMgMhdhdhdgMhdhdhdhdgMgNgMhdhdhehfhfhehfhfhehfhfhehehehehehegdgdgdgdfwgdgdgdgdfwgdgdgdgdgdgdgdgdgdfwhggZhhhagqhbhbgbeIbqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagWhchchchchchchihihihihihihihigMhjhkhkhlhmhnhohlhphlhlhqhrhshehthuhvhwhxhyhyhzhAhBhChDhEhegdgdgdgdgggdgdgdgdgggdgdgdgdgdgdgdgdgdhFgqgqgqgqgqhbhbgbeIbqaaaaaaaaaaaaaaaaaaaahGhHhIhJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaagWhchchchchchchigMgMgMgMgMhKgMgMhLhMhNhOhPhlhlhlhQhlhlhlhlhRhShyhyhyhyhyhyhyhyhyhyhThUhUhegdgdgdgdfwgdgdgdgdhVhVhVhVhVhVhVhVhVhVhVgqgqgqgqgqgqgqgbeIbqaaaaaaaaaaaaaahGhHhHhWhXhYhZiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagWhchchchchchchigMgYgYgYgYgYgYhKhlibicidhphlhlieifhlhlhlhlighShyhyihhyhyhyhyhyhyhyhyhyhyhegdgdgdgdfwfwfwfwfYhViiijikikikijijijilhVgZgZgqgZimgqgqgbeIbqaaaaaaaaaahGhHhWhXininiohYipiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiqgWgWgWgWgWgWgWirgMisgYisgYisgYgMitiuivhlhPiwixiyizhlhlhlhlighShyhyhyhyiAiBiCiDiEhyhyiFiAhegdgdfPgdfwgdgdgdgdhViiijijijijijiliGilhViHiHgqiHiIgqgqgbeIbqaaaabeaaiJhYiKiKiLiMiNiOhIiPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiQiRiSiTiSiUiViUiSgMisgYisgYisiWhKhlhlhlhliXhlhlhlhlhlhlhlhligheheheheiYiYhyhyiZjajbjcjdjehefwfQfQfwfwgdgdgdgdhViiiGiGiGijijiliGilhVgqgqgqgqjfgZgZgbeIbqaaaaaaaahGhHjgjhjiiNjjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiQjkjljmjnjojpjojngMgYgYgYgYgYgYgMitiuhlhlhPhljqjqjqjqjqjqhljrjsjtjuiAjviAjwhyjxhyhyhyhyjehegdgdgdgdfwgdgdgdgdhVjyilililijijiliGilhVjzjAjBgbgbgbgbgbeIbqaaaahGhHhHhHhHhHhHhHhHhHhHjCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaajDjEjFjGjHjIiTjJiUiSgMgMgMgMgMgMgMgMhlhlhlhlhPhlhlhlhlhlhlhljKhjhehyhehyjLhyjLjMiYhyjNjNhyhyhegdgdgdgdfwgdjOgdgdhVhVhVhVhVjPhVhVhVhVhVhVjQjQgbjRjRjRgbeIbqaahGhWjShHjTjTjTjTjTjThHiMhHjCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajUjUjUjUjUjVjmjnjmjnjWjXjXjXjXjXjXgMitiuhlhlhPjYjYjYjZgMkakagMgMhehehejLhyjLhykbhyhyhyhyhyhyhegdgdgdgdfwgdgdgdgdgdgdhVjzkcijkdkekfkgijhVgqgqgqgqgqgqgbeIaahGhWjSjShHkhkhkhkhkhkhhHiMkihHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakjkkklkmknkmiTiViUiSgWgWgWkokokokpgMgMgMgMgMgMgMgMgMgMgMkqkrgMgMhehehehehehehehejejejaksktjehegdgdgdgdgggdgdgdgdgdgdkukvijijijkwijijijhVgqkxgqgqgqgqgbkykyhHiMiMiMiMkhkhkhkhkhiNhHiMiMhHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiQjkjljmjnjojpjojngWkzgWaakokAjXkAkAkAkAkAkAkAkAkokBgdgdgdfCfCfwkCkDgdgdgdfwfwfwfwfwfwfwfwfwgdgdgdgdfwgdgdgdgdfPgdhVjzijkEkEkEkEijjzhVgbgqgqgqgqgqkFkGgqiOiMiMiMiMiMiMkHiMiMhHiMiMiMiOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiQiRiSiTiSiUiViUiSgWkIgWaakojXjXjXjXjXjXjXjXjXjXkogdgdgdgdfPkJfwgdgdgdgdgdfwfwfwfwgdgdgdkKgdgdgdgdgdfwgdgdgdgdgdgdhVjzijijkEkEijijkvkukLgqgqgqgqgqgbkykyhHiMiMiMiMkhkhkhkhkhkihHiMiMhHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaiqgWjngWgWgWgWgWgWgWgWgWaakojXjXjXjXjXjXjXjXjXjXkMgdgdgdgdgdkNfwgdgdgdgdgdkKkCkDgdgdgdgdkKgdgdgdgdgdfwgdgdgdgdgdgdhVjzijijijijijkOjzhVgbgqgqgqkPkPgbeIaakQkRkSkShHkhkhkhkhkhkhhHiMiNhHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagWgWgWaaaaaaaaaaaaaaaaaakojXjXkokokokTkokokokTkogdgdgdgdgdgdgggdgdgdgdgdkKgdgdgdgdgdgdkKgdgdgdfYkUkUkVkUgdgdgdgdhVjzkWjzkXkYijijjyhVgbjQgbgqkZkZgbgVeIaakQkRkShHjTjTjTjTjTjThHiMhHjjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakojXjXkolajXjXkolajXjXkolblblblcldlekogdgdgdgdgdkKgdgdgdgdkUkUkUkUkUkUlfkUlglhkUlililjlkhVjzijjzlllllmijhVhVgbjAgbgbgbgbgbgVeIeIeIkQhHhHhHhHhHhHhHhHhHhHjjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakojXjXkolnkAlokolnkAlokojXjXjXjXjXlpkogdgdgdlqgdkKgdgdgdkCkUlrlsltlulvlwlwlvlxkUlililjlyhVjzijjzlzlAlBlBhVgqgqgqgqkZkZgqgqgVgVgVgVeIaakQhHlClDlEkijCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakolFlFlFkoldlGkokokokokokokokokojXjXlHlIjXjXkolJlJlJlJlJlJlJlJlKlJkUlrlslwlLlvlwlMlvlxlNlwlOljlyhVjzkujzlPlQlPlPhVgqgqgqgqkPkPgqgqkFgqlRgVeIaaiJhYioioiLiMkiiOhIhJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaakolalalakojXjXlSlTlTlTlUlVlVjXkojXlWlXlYlZjXkomamamamambmcmdlJmdmakUlrlsmelwmflwlwmfmgmhlwmiljlyhVmjijkulPlPlPlPhVgqgqgqgqgqgqgqgqgbgqmkgVeIaaaakQhHkRmlininiKhYhZiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaammjXjXjXkojXjXjXjXjXjXjXjXmnjXkojXmompmqmrjXkomsmdmdmdmtmumdlJlKlJkUlrlslwlwlwmvmvmwmxlwlwmiljlyhVjzjzjzlPlPlPmyhVgqgqgqkxgqgqgqgqgbgqmkgVeIaaaaaaaakQhHhHkRmlhYipiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakolalajXkMjXjXmzmAjXlamBjXjXjXkojXmolnlnmCjXkomDmEmEmEmFmumdlJmdmEkUmGmHmImJmKmLlwmMmxlwlwmiljlyhVjzmNmOlPlPlPlPhVgqgqgqgqgqgqgqgqgbgqmkgVeIaaaaaaaaaaaaaakQhHhIiPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaammjXjXjXmPjXjXmQmzjXmRmQjXmSjXkomTjXmomUmVjXkomumdmWmdmXmumdlJlKlJkUmYmZnanbncndlOmfmflwlwlwljlyhVhVhVhVnenenenehVnfngnfnhnhnhnhnhnhnhnhgVeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakolalalakolajXmzlajXmQlajXjXjXjWjXjXjXjXjXjXkoninjninjnknlmdlJnmlJkUkUkUkUkUkUkUkUkUkUkUkUkUnnlynnaafVfVfVfVfVfVfVnogqnpfVfVfVfVaaaaaaaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanqbjbjbjbjbjbjbjnraakolFlFlFkokoldkokokokokokokokokokokokoldkokokonsntnunvnwmdmdmdmdnxmdmdmdmdnymdnznznznznznzmdnnlynnaabqaaaabqaaaabqnfngnfbqaaaabqaaaaaaaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaljnAlylynBnCnDnEnFnGnDnHnInInDnDnDnJnFnKnlnlnlmdmdmdnLmdmdmdnMmdmdnymdnLmdmdmdmdmdmdnnlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIfVaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHnObJaabHnObJaaljnPnPnPljlylylynBnDnDnQnFnGnDnDnDnDnDnDnDnRnFnSnTmdnUmdnUmdnUmdmdmdmdmdmdlKmdnVnWnWnWnWnXmdnnlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHnYbJaabHnYbJaanZoanBlyljlylylyobnDnDocnFodoenDnDnDnDnDnDofnFogmdmdmdnUmdnUmtohoiojojokoknymdnVololololommdnnlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIfVaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHnYbJaabHnYbJaanZlynBlyonlylylynBnDodoonFodopoqorosnDotnDofnFoioiouovmdmdmdmtmdmdmdowmdmdnynynynynynynynynynnlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaacLaaaaaacLaaaaoxlynBlyljnFnFoynFnFnFnFnFnFnFnFnFnFoznFnFnFnFmdmdmdoAmdmsmdoAmdoBoCoDmdmdoAmdoEmEmEmEmEmEmEljlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIfVaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFdedeoGdededeoGdedeoHoIoJlyljnFnInDnDnDnDnDoKoLnQnFnInDnDnDnDotnFolololmtmdoMoNoOmdoPoQoRoSoTlJmdmdmEmEmEmEmEmEljlynNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaacLaaaaaacLaaaaoUoVnBlyljnFnInDnDnDoWnDnDnDoXnFoYnDnDnDnDnDnFlJlJlJlJmdoZpapblJlJlJlJlJlJlJmdmdmamamamamamaljlknnljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVeIfVaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHnYbJaabHnYbJaapcpdnBlyljnFpepenHpenHpfpgphpinFpjnDpfpknDnDnFaaaalJplpapmpapblJaaaaaaaaaalJpnpomamamamamamaljlylylyljaaaaaaaaaaaapppqppaaaaaaaaaaeIeIaaaLeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHnYbJaabHnYbJaanZprnBlyljljljljljljljljljljljljljljljljljpqljljljljljljljljljljljljljljljljljljljljljljljljljlylylylypsaaaaaaaaaaptlypuaaaaaaaaaaeIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabHpvbJaabHpvbJaanZlynBlypwlylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylypwlylylypxlylypyaaaaaaaaaaptpqpuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaaaaaaaaaanZlynBlypwlylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylylypwlylylylylylypyaaaabeaaaaptlypuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapzbjbjbjbjbjbjbjnraaljnPnPljnPnPnnnnnnpAnnnnnnpBpBljpBpBpBpBpBljpBpBpBpBpBljpBpBpBpBpBljpBpBpBpBpBljpBpBpBpCpDlylylylylylypEjDjDjDjDjDpFlypuaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIeIeIeIeIpGpGpHpHpHpHpHpGpGeIeIeIeIeIeIeIeIeIeIeIeIeIljeIeIeIeIeInneIeIeIeIeInneIeIeInnnnlknnlylylylypqpwlylylylylylypuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapGpHpHpHpHpHpHpHpGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIaaaaaaaaaapIaaaabepIpIpJpIpKpKnnpLpMpLpMkjkjkjkjkjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapGpHpHpNpOpPpHpHpGaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaapIpIpIpIpIpIpIpIpIpIpIpIpIpIpIpQpIpRpSpIpTaLpTaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapGpUpHpHpHpHpHpHpGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIpIpVpWpXpWpXpIpYpZqaqbqcpIqdpIpQpQpQqepIpTaLpTaLaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaapGpGqfpHpHpHpHpGpGaaaaaaaaaabeaaaaaaaaaaaaaaaapIpIpIpXpQpXpQpXpIpQpQpQpQpQpIqgpIpQqhpQpQpIpTaLpTaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapGpGpGpGpGpGpGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIpIqiqjpQpQpQqkqkpQpQqlpQpQpIqmpIpQqhpQqepIpTaLpTaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabeaaaaaaaapIpIpIpXpQpXpQpXpIpIpIpQpQqkqkqnqkpQqhpQpQpIpTaLpTaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIpIpVqopXqopXpIqpqqpQpQqrpIqspIpQpQpQqepIpTaLpTaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIpIpIpIpIpIpIpIpIpIpIpIpIqspIpIpIpIpIpIqtaLqtaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaquaaaaaaaaaacLaaaaaaaaaaquaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacLaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqvqvqvaacLaaqvqvqvaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqwqxqxdeqydeqxqxqzaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqAqAqAaacLaaqAqAqAaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacLaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqvqvqvaacLaaqvqvqvaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqwqxqxdeqydeqxqxqzaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaqAqAqAaacLaaqAqAqAaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaaaaaaaaaacLaaaaaaaaaabsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapzbjbjbjbjbjqBbjbjbjbjbjezaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa