diff --git a/code/_helpers/global_lists_ch.dm b/code/_helpers/global_lists_ch.dm
index 89048a1169..b8ca9300db 100644
--- a/code/_helpers/global_lists_ch.dm
+++ b/code/_helpers/global_lists_ch.dm
@@ -58,7 +58,7 @@ var/global/list/vr_mob_tf_options = list(
"Construct Artificer" = /mob/living/simple_mob/construct/artificer,
"Tech golem" = /mob/living/simple_mob/mechanical/technomancer_golem,
"Metroid" = /mob/living/simple_mob/metroid/juvenile/baby,
- "Otie" = /mob/living/simple_mob/otie/cotie/chubby,
+ "Otie" = /mob/living/simple_mob/vore/otie/cotie/chubby,
"Shadekin" = /mob/living/simple_mob/shadekin,
"Slime" = /mob/living/simple_mob/slime/xenobio/metal,
"Corrupt hound" = /mob/living/simple_mob/vore/aggressive/corrupthound,
@@ -73,7 +73,7 @@ var/global/list/vr_mob_tf_options = list(
//"Dragon" = /mob/living/simple_mob/vore/bigdragon/friendly, //Currently adds 12 bellies to the user when transformed into. Do not uncomment without fixing this.
"Riftwalker" = /mob/living/simple_mob/vore/demon/wendigo,
"Horse" = /mob/living/simple_mob/vore/horse/big,
- "Morph" = /mob/living/simple_mob/vore/hostile/morph,
+ "Morph" = /mob/living/simple_mob/vore/morph,
"Leopardmander" = /mob/living/simple_mob/vore/leopardmander,
"Rabbit" = /mob/living/simple_mob/vore/rabbit,
"Red panda" = /mob/living/simple_mob/vore/redpanda,
diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index 17fb795809..27e000d0ba 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -728,15 +728,15 @@ var/global/list/xenobio_gold_mobs_hostile = list(
/mob/living/simple_mob/vore/aggressive/dino,
/mob/living/simple_mob/vore/aggressive/dragon,
/mob/living/simple_mob/vore/aggressive/frog,
- /mob/living/simple_mob/otie,
- /mob/living/simple_mob/otie/red,
+ /mob/living/simple_mob/vore/otie,
+ /mob/living/simple_mob/vore/otie/red,
/mob/living/simple_mob/vore/aggressive/panther,
/mob/living/simple_mob/vore/aggressive/rat,
/mob/living/simple_mob/vore/aggressive/giant_snake,
/mob/living/simple_mob/vore/sect_drone,
/mob/living/simple_mob/vore/sect_queen,
/mob/living/simple_mob/vore/weretiger,
- /mob/living/simple_mob/animal/wolf,
+ /mob/living/simple_mob/vore/wolf,
/mob/living/simple_mob/vore/xeno_defanged)
var/global/list/xenobio_gold_mobs_bosses = list(
@@ -783,7 +783,7 @@ var/global/list/xenobio_gold_mobs_safe = list(
/mob/living/simple_mob/vore/fennix,
/mob/living/simple_mob/vore/hippo,
/mob/living/simple_mob/vore/horse,
- /mob/living/simple_mob/animal/space/jelly,
+ /mob/living/simple_mob/vore/jelly,
/mob/living/simple_mob/vore/oregrub,
/mob/living/simple_mob/vore/oregrub/lava,
/mob/living/simple_mob/vore/rabbit,
@@ -935,14 +935,14 @@ var/global/list/event_wildlife_roaming = list(
list(
list(/mob/living/simple_mob/vore/aggressive/frog = 1),
list(/mob/living/simple_mob/tomato = 1),
- list(/mob/living/simple_mob/animal/wolf = 1),
+ list(/mob/living/simple_mob/vore/wolf = 1),
list(/mob/living/simple_mob/vore/aggressive/dino = 1),
list(/mob/living/simple_mob/animal/space/bats = 1)
),
list(
list(/mob/living/simple_mob/animal/space/bear = 1),
list(/mob/living/simple_mob/vore/aggressive/deathclaw = 1),
- list(/mob/living/simple_mob/otie = 1),
+ list(/mob/living/simple_mob/vore/otie = 1),
list(/mob/living/simple_mob/vore/aggressive/panther = 1),
list(/mob/living/simple_mob/vore/aggressive/rat = 1),
list(/mob/living/simple_mob/vore/aggressive/giant_snake = 1),
diff --git a/code/controllers/subsystems/mapping.dm b/code/controllers/subsystems/mapping.dm
index 7681523722..cf9593d35a 100644
--- a/code/controllers/subsystems/mapping.dm
+++ b/code/controllers/subsystems/mapping.dm
@@ -78,7 +78,7 @@ SUBSYSTEM_DEF(mapping)
var/list/deffo_load = using_map.lateload_z_levels
var/list/maybe_load = using_map.lateload_gateway
var/list/also_load = using_map.lateload_overmap
-
+ var/list/redgate_load = using_map.lateload_redgate
for(var/list/maplist in deffo_load)
if(!islist(maplist))
@@ -134,6 +134,27 @@ SUBSYSTEM_DEF(mapping)
else
MT.load_new_z(centered = FALSE)
+ if(LAZYLEN(redgate_load))
+ var/picklist = pick(redgate_load)
+
+ if(!picklist) //No lateload maps at all
+ return
+
+ if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission
+ error("Randompick Z level [picklist] is not a list! Must be in a list!")
+ return
+
+ for(var/map in picklist)
+ if(islist(map))
+ // TRIPLE NEST. In this situation we pick one at random from the choices in the list.
+ //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c'
+ map = pick(map)
+ var/datum/map_template/MT = map_templates[map]
+ if(!istype(MT))
+ error("Randompick Z level \"[map]\" is not a valid map!")
+ else
+ MT.load_new_z(centered = FALSE)
+
/datum/controller/subsystem/mapping/proc/preloadShelterTemplates()
for(var/datum/map_template/shelter/shelter_type as anything in subtypesof(/datum/map_template/shelter))
diff --git a/code/game/area/Away Mission areas.dm b/code/game/area/Away Mission areas.dm
index 731468c529..5079e8b311 100644
--- a/code/game/area/Away Mission areas.dm
+++ b/code/game/area/Away Mission areas.dm
@@ -1,4 +1,4 @@
-/area/awaymission
+/area
name = "\improper Unknown Location"
icon_state = "away"
var/list/valid_spawn_turfs = list()
@@ -6,51 +6,84 @@
var/list/valid_flora = list()
var/mobcountmax = 0
var/floracountmax = 0
+ var/semirandom = FALSE
+ var/semirandom_groups = 0
+ var/semirandom_group_min = 0
+ var/semirandom_group_max = 10
+ var/mob_intent = "default" //"default" uses default settings, use "hostile", "retaliate", or "passive" respectively
-/area/awaymission/proc/EvalValidSpawnTurfs()
+/area/proc/EvalValidSpawnTurfs()
//Adds turfs to the valid)turfs list, used for spawning.
- if(mobcountmax || floracountmax)
+ if(mobcountmax || floracountmax || semirandom)
for(var/turf/simulated/floor/F in src)
valid_spawn_turfs += F
for(var/turf/unsimulated/floor/F in src)
valid_spawn_turfs += F
-/area/awaymission/LateInitialize()
+/area/LateInitialize()
..()
EvalValidSpawnTurfs()
-
+
if(!valid_spawn_turfs.len && (mobcountmax || floracountmax))
- to_world_log("Error! [src] does not have any turfs!")
+ log_and_message_admins("Error! [src] does not have any turfs!")
return TRUE
//Handles random mob placement for mobcountmax, as defined/randomized in initialize of each individual area.
- if(mobcountmax)
+ if(mobcountmax || semirandom)
spawn_mob_on_turf()
//Handles random flora placement for floracountmax, as defined/randomized in initialize of each individual area.
if(floracountmax)
spawn_flora_on_turf()
-
- to_world("Away mission spawning done.")
-/area/awaymission/proc/spawn_mob_on_turf()
+/area/proc/spawn_mob_on_turf()
if(!valid_mobs.len)
to_world_log("[src] does not have a set valid mobs list!")
return TRUE
-
+
var/mob/M
var/turf/Turf
- for(var/mobscount = 0 to mobcountmax)
- M = pick(valid_mobs)
- Turf = pick(valid_spawn_turfs)
- valid_spawn_turfs -= Turf
- new M(Turf)
+ if(semirandom)
+ for(var/groupscount = 0 to (semirandom_groups - 1))
+ var/ourgroup = pickweight(valid_mobs)
+ var/goodnum = rand(semirandom_group_min, semirandom_group_max)
+ for(var/mobscount = 0 to (goodnum - 1))
+ M = pickweight(ourgroup)
+ Turf = pick(valid_spawn_turfs)
+ valid_spawn_turfs -= Turf
+ var/mob/ourmob = new M(Turf)
+ adjust_mob(ourmob)
+ else
+ for(var/mobscount = 0 to mobcountmax)
+ M = pickweight(valid_mobs)
+ Turf = pick(valid_spawn_turfs)
+ valid_spawn_turfs -= Turf
+ var/mob/ourmob = new M(Turf)
+ adjust_mob(ourmob)
-/area/awaymission/proc/spawn_flora_on_turf()
+/area/proc/adjust_mob(var/mob/living/M)
+ if(!isliving(M))
+ log_admin("[src] spawned [M.type], which is not mob/living, FIXIT")
+ return
+ var/datum/ai_holder/AI = M.ai_holder
+ switch(mob_intent)
+ if("default")
+ return
+ if("hostile")
+ AI.hostile = TRUE
+ AI.retaliate = TRUE
+ if("retaliate")
+ AI.hostile = FALSE
+ AI.retaliate = TRUE
+ if("passive")
+ AI.hostile = FALSE
+ AI.retaliate = FALSE
+
+/area/proc/spawn_flora_on_turf()
if(!valid_flora.len)
to_world_log("[src] does not have a set valid flora list!")
return TRUE
-
+
var/obj/F
var/turf/Turf
for(var/floracount = 0 to floracountmax)
diff --git a/code/game/area/Space Station 13 areas_ch.dm b/code/game/area/Space Station 13 areas_ch.dm
index 5c0e7c50fa..464605f382 100644
--- a/code/game/area/Space Station 13 areas_ch.dm
+++ b/code/game/area/Space Station 13 areas_ch.dm
@@ -124,8 +124,9 @@
icon_state = "blue"
requires_power = 0
limit_dark_respite = TRUE
+ limit_mob_size = FALSE
ambience = AMBIENCE_OTHERWORLDLY
flags = RAD_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT | BLUE_SHIELDED
/area/security/nuke_storage
- flags = PHASE_SHIELDED
\ No newline at end of file
+ flags = PHASE_SHIELDED
diff --git a/code/game/machinery/doors/blast_door.dm b/code/game/machinery/doors/blast_door.dm
index 7c148201af..b897158431 100644
--- a/code/game/machinery/doors/blast_door.dm
+++ b/code/game/machinery/doors/blast_door.dm
@@ -203,7 +203,7 @@
else if(src.density && (user.a_intent == I_HURT)) //If we can't pry it open and it's not a weapon.... Eh, let's attack it anyway.
var/obj/item/weapon/W = C
user.setClickCooldown(user.get_attack_speed(W))
- if(W.damtype == BRUTE || W.damtype == BURN)
+ if(istype(W) && (W.damtype == BRUTE || W.damtype == BURN))
user.do_attack_animation(src)
if(W.force < min_force) //No actual non-weapon item shouls have a force greater than the min_force, but let's include this just in case.
user.visible_message("\The [user] hits \the [src] with \the [W] with no visible effect.")
diff --git a/code/game/machinery/nuclear_bomb.dm b/code/game/machinery/nuclear_bomb.dm
index b9646235c0..2c8ee75ca9 100644
--- a/code/game/machinery/nuclear_bomb.dm
+++ b/code/game/machinery/nuclear_bomb.dm
@@ -3,7 +3,7 @@ var/bomb_set
/obj/machinery/nuclearbomb
name = "\improper Nuclear Fission Explosive"
desc = "Uh oh. RUN!!!!"
- icon = 'icons/obj/stationobjs.dmi'
+ icon = 'modular_chomp/icons/obj/stationobjs.dmi' //chompedit, use the better one
icon_state = "nuclearbomb0"
density = TRUE
var/deployable = 0.0
@@ -47,6 +47,7 @@ var/bomb_set
if(timing)
bomb_set = 1 //So long as there is one nuke timing, it means one nuke is armed.
timeleft--
+ playsound(src, 'sound/items/timer.ogg',50) //chompedit... beep :)
if(timeleft <= 0)
explode()
for(var/mob/M in viewers(1, src))
@@ -275,6 +276,7 @@ var/bomb_set
icon_state = "nuclearbomb1"
timing = 0
bomb_set = 0
+ set_security_level("red") //chompedit
if(light_wire == temp_wire)
lighthack = !lighthack
@@ -322,10 +324,13 @@ var/bomb_set
icon_state = "nuclearbomb2"
if(!safety)
bomb_set = 1//There can still be issues with this reseting when there are multiple bombs. Not a big deal tho for Nuke/N
+ set_security_level("delta")//chompedit
else
bomb_set = 0
+ set_security_level("red")
else
bomb_set = 0
+ set_security_level("red") //chompedit
if(!lighthack)
icon_state = "nuclearbomb1"
if(href_list["safety"])
@@ -333,6 +338,7 @@ var/bomb_set
if(safety)
timing = 0
bomb_set = 0
+ set_security_level("red") //chompedit
if(href_list["anchor"])
if(removal_stage == 5)
@@ -370,7 +376,7 @@ var/bomb_set
safety = 1
if(!lighthack)
icon_state = "nuclearbomb3"
- playsound(src,'sound/machines/Alarm.ogg',100,0,5)
+ world << sound('sound/machines/Alarm.ogg')//chompedit, nuke is big event, make it global
if(ticker && ticker.mode)
ticker.mode.explosion_in_progress = 1
sleep(100)
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index 1e0fe3a78a..cd497b2d21 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -84,11 +84,11 @@
R.adjustBruteLoss(-weld_rate)
if(wire_rate && R.getFireLoss() && cell.checked_use(wire_power_use * wire_rate * CELLRATE))
R.adjustFireLoss(-wire_rate)
-
+
//VOREStation Add Start
else if(ispAI(occupant))
var/mob/living/silicon/pai/P = occupant
-
+
if(P.nutrition < 400)
P.nutrition = min(P.nutrition+10, 400)
cell.use(7000/450*10)
@@ -110,7 +110,7 @@
// Also recharge their internal battery.
if(H.isSynthetic() && H.nutrition < 500) //VOREStation Edit
- H.nutrition = min(H.nutrition+(10*(1-max(H.species.synthetic_food_coeff, 0.9))), 500) //VOREStation Edit
+ H.nutrition = min(H.nutrition+(10*(1-min(H.species.synthetic_food_coeff, 0.9))), 500) //VOREStation Edit
cell.use(7000/450*10)
// And clear up radiation
@@ -268,7 +268,7 @@
occupant = R
update_icon()
return 1
-
+
//VOREStation Add Start
else if(istype(L, /mob/living/silicon/pai))
var/mob/living/silicon/pai/P = L
diff --git a/code/game/mecha/micro/mechfab_designs_vr.dm b/code/game/mecha/micro/mechfab_designs_vr.dm
index 9542f758f4..516674e285 100644
--- a/code/game/mecha/micro/mechfab_designs_vr.dm
+++ b/code/game/mecha/micro/mechfab_designs_vr.dm
@@ -185,12 +185,5 @@
name = "Weasel Head"
id = "weasel_head"
build_path = /obj/item/mecha_parts/micro/part/weasel_head
- materials = list(MAT_STEEL = 7000, MAT_GLASS = 2500) */
-
-/datum/design/item/mecha/medigun //Who the fuck thought it was a good idea to put this here?
- name = "BL-3/P directed restoration system"
- desc = "A portable medical system used to treat external injuries from afar."
- id = "mech_medigun"
- req_tech = list(TECH_MATERIAL = 5, TECH_COMBAT = 5, TECH_BIO = 6)
- materials = list(MAT_STEEL = 8000, MAT_GOLD = 2000, MAT_SILVER = 1750, MAT_DIAMOND = 1500, MAT_PHORON = 4000)
- build_path = /obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun
+ materials = list(MAT_STEEL = 7000, MAT_GLASS = 2500)
+*/
diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm
index 343bf77e7f..1143078536 100644
--- a/code/game/objects/effects/semirandom_mobs_vr.dm
+++ b/code/game/objects/effects/semirandom_mobs_vr.dm
@@ -56,8 +56,8 @@ var/global/list/semirandom_mob_spawner_decisions = list()
list(/mob/living/simple_mob/animal/passive/tindalos),
list(/mob/living/simple_mob/animal/passive/yithian),
list(
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 5,
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5,
/mob/living/simple_mob/vore/greatwolf = 1,
/mob/living/simple_mob/vore/greatwolf/black = 1,
/mob/living/simple_mob/vore/greatwolf/grey = 1
@@ -75,10 +75,10 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/animal/space/bear/brown
),
list(
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
- /mob/living/simple_mob/otie/red/chubby
+ /mob/living/simple_mob/vore/otie/feral,
+ /mob/living/simple_mob/vore/otie/feral/chubby,
+ /mob/living/simple_mob/vore/otie/red,
+ /mob/living/simple_mob/vore/otie/red/chubby
),
list(/mob/living/simple_mob/animal/sif/diyaab),
list(/mob/living/simple_mob/animal/sif/duck),
@@ -144,7 +144,7 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/animal/space/carp/large/huge = 5
),
list(/mob/living/simple_mob/animal/space/goose),
- list(/mob/living/simple_mob/animal/space/jelly),
+ list(/mob/living/simple_mob/vore/jelly),
list(/mob/living/simple_mob/animal/space/tree),
list(
/mob/living/simple_mob/vore/aggressive/corrupthound = 10,
@@ -245,12 +245,12 @@ var/global/list/semirandom_mob_spawner_decisions = list()
list(/mob/living/simple_mob/mechanical/wahlem),
list(/mob/living/simple_mob/animal/passive/fox/syndicate),
list(/mob/living/simple_mob/animal/passive/fox),
- list(/mob/living/simple_mob/animal/space/jelly),
+ list(/mob/living/simple_mob/vore/jelly),
list(
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
- /mob/living/simple_mob/otie/red/chubby
+ /mob/living/simple_mob/vore/otie/feral,
+ /mob/living/simple_mob/vore/otie/feral/chubby,
+ /mob/living/simple_mob/vore/otie/red,
+ /mob/living/simple_mob/vore/otie/red/chubby
),
list(
/mob/living/simple_mob/shadekin/blue = 100,
@@ -377,8 +377,8 @@ var/global/list/semirandom_mob_spawner_decisions = list()
list(/mob/living/simple_mob/animal/passive/tindalos) = 10,
list(/mob/living/simple_mob/animal/passive/yithian) = 10,
list(
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 5,
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5,
/mob/living/simple_mob/vore/greatwolf = 1,
/mob/living/simple_mob/vore/greatwolf/black = 1,
/mob/living/simple_mob/vore/greatwolf/grey = 1
@@ -396,10 +396,10 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/animal/space/bear/brown
) = 1,
list(
- /mob/living/simple_mob/otie/feral = 50,
- /mob/living/simple_mob/otie/feral/chubby = 10,
- /mob/living/simple_mob/otie/red = 5,
- /mob/living/simple_mob/otie/red/chubby = 1
+ /mob/living/simple_mob/vore/otie/feral = 50,
+ /mob/living/simple_mob/vore/otie/feral/chubby = 10,
+ /mob/living/simple_mob/vore/otie/red = 5,
+ /mob/living/simple_mob/vore/otie/red/chubby = 1
) = 5,
list(/mob/living/simple_mob/vore/aggressive/rat) = 15,
list(/mob/living/simple_mob/animal/sif/diyaab) = 5,
@@ -467,8 +467,8 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/shadekin/purple = 10
) = 1,
list(
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 5,
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5,
/mob/living/simple_mob/vore/greatwolf = 1,
/mob/living/simple_mob/vore/greatwolf/black = 1,
/mob/living/simple_mob/vore/greatwolf/grey = 1
@@ -502,13 +502,13 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/animal/space/carp/large/huge = 5
) = 50,
list(/mob/living/simple_mob/animal/space/goose) = 50,
- list(/mob/living/simple_mob/animal/space/jelly) = 40,
+ list(/mob/living/simple_mob/vore/jelly) = 40,
list(/mob/living/simple_mob/animal/space/tree) = 15,
list(
- /mob/living/simple_mob/otie/feral = 50,
- /mob/living/simple_mob/otie/feral/chubby = 10,
- /mob/living/simple_mob/otie/red = 5,
- /mob/living/simple_mob/otie/red/chubby = 1
+ /mob/living/simple_mob/vore/otie/feral = 50,
+ /mob/living/simple_mob/vore/otie/feral/chubby = 10,
+ /mob/living/simple_mob/vore/otie/red = 5,
+ /mob/living/simple_mob/vore/otie/red/chubby = 1
) = 40,
list(
/mob/living/simple_mob/vore/aggressive/corrupthound = 10,
@@ -719,17 +719,17 @@ var/global/list/semirandom_mob_spawner_decisions = list()
possible_mob_types = list(
list(
- /mob/living/simple_mob/animal/wolf/direwolf = 5,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5,
/mob/living/simple_mob/vore/greatwolf = 1,
/mob/living/simple_mob/vore/greatwolf/black = 1,
/mob/living/simple_mob/vore/greatwolf/grey = 1
) = 100,
- list(/mob/living/simple_mob/animal/space/jelly) = 70,
+ list(/mob/living/simple_mob/vore/jelly) = 70,
list(
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
- /mob/living/simple_mob/otie/red/chubby
+ /mob/living/simple_mob/vore/otie/feral,
+ /mob/living/simple_mob/vore/otie/feral/chubby,
+ /mob/living/simple_mob/vore/otie/red,
+ /mob/living/simple_mob/vore/otie/red/chubby
) = 50,
list(
/mob/living/simple_mob/shadekin/blue = 100,
diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm
index 53099410dc..9f8ab64d80 100644
--- a/code/game/objects/effects/spiders.dm
+++ b/code/game/objects/effects/spiders.dm
@@ -5,7 +5,7 @@
icon = 'icons/effects/effects.dmi'
anchored = TRUE
density = FALSE
- var/health = 15
+ var/health = 10
//similar to weeds, but only barfed out by nurses manually
/obj/effect/spider/ex_act(severity)
@@ -312,7 +312,7 @@
name = "cocoon"
desc = "Something wrapped in silky spider web"
icon_state = "cocoon1"
- health = 60
+ health = 15
/obj/effect/spider/cocoon/New()
icon_state = pick("cocoon1","cocoon2","cocoon3")
diff --git a/code/game/objects/items/devices/denecrotizer_vr.dm b/code/game/objects/items/devices/denecrotizer_vr.dm
index 3b8fb1c761..2416dbe6ed 100644
--- a/code/game/objects/items/devices/denecrotizer_vr.dm
+++ b/code/game/objects/items/devices/denecrotizer_vr.dm
@@ -29,7 +29,7 @@
//The stuff we want to be revivable normally
/mob/living/simple_mob/animal
ic_revivable = TRUE
-/mob/living/simple_mob/otie
+/mob/living/simple_mob/vore/otie
ic_revivable = TRUE
/mob/living/simple_mob/vore
ic_revivable = TRUE
diff --git a/code/game/objects/items/devices/scanners/guide.dm b/code/game/objects/items/devices/scanners/guide.dm
new file mode 100644
index 0000000000..352d9b2026
--- /dev/null
+++ b/code/game/objects/items/devices/scanners/guide.dm
@@ -0,0 +1,99 @@
+/obj/item/device/healthanalyzer/verb/toggle_guide()
+ name = "Toggle Guidance"
+ desc = "Toggles whether or not \the [src] will provide guidance and instruction in addition to scanning."
+ guide = !guide
+ to_chat(usr, "You toggle \the [src]'s guidance system.")
+
+
+/obj/item/device/healthanalyzer/guide
+ name = "Instructional health analyzer"
+ desc = "A hand-held body scanner able to distinguish vital signs of the subject. It shows extra information to medical personnel!"
+ guide = TRUE
+ icon_state = "health-g"
+
+/obj/item/device/healthanalyzer/proc/guide(var/mob/living/carbon/human/M, mob/living/user)
+
+ var/obj/item/weapon/card/id/ourid = user?.GetIdCard()
+ if(!ourid)
+ return
+ if(access_change_ids in ourid.access)
+ playsound(src, 'sound/machines/defib_failed.ogg', 50, 0)
+ return
+ if(access_medical in ourid.access)
+ playsound(src, 'sound/effects/pop.ogg', 50, FALSE)
+ else
+ playsound(src, 'sound/machines/defib_failed.ogg', 50, 0)
+ return
+ if(!ishuman(M))
+ return
+
+ var/dat = ""
+
+ var/bleeding_external = FALSE
+ var/bleeding_internal = FALSE
+ var/infection = FALSE
+ var/organ = FALSE
+ var/bone = FALSE
+ var/bloodloss = FALSE
+ var/robotparts = FALSE
+
+ for(var/obj/item/organ/org in M.organs)
+ if(org.robotic >= ORGAN_ROBOT)
+ robotparts = TRUE
+ continue
+ if(istype(org,/obj/item/organ/external))
+ var/obj/item/organ/external/e = org
+ if(e.status & ORGAN_BLEEDING)
+ bleeding_external = TRUE
+ if(e.status & ORGAN_BROKEN && (!e.splinted))
+ bone = TRUE
+ if(istype(org,/obj/item/organ/internal))
+ if(org.status & ORGAN_BLEEDING)
+ bleeding_internal = TRUE
+ if(org.damage)
+ organ = TRUE
+ if(org.germ_level > INFECTION_LEVEL_ONE)
+ infection = TRUE
+
+ var/blood_volume = M.vessel.get_reagent_amount("blood")
+ if(blood_volume <= M.species.blood_volume*M.species.blood_level_safe)
+ bloodloss = TRUE
+
+ if(bleeding_external)
+ dat += "Surface bleeding - Bandage immediately or apply brute-damage fixing chemicals (i.e. Bicaridine) if no bandages available.
"
+ if(bleeding_internal && (advscan >= 1 && showadvscan == 1))
+ dat += "Internal bleeding - Commence internal vein repair surgery or apply clotting chemicals (i.e. Myelamine).
"
+ if(M.getOxyLoss())
+ dat += "Suffociation - Give Dexalin or Dexaline Plus. Check for heart or lung damage.
"
+ if(infection)
+ dat += "Infection - Give Spaceacilin. If severe, use Corophizine or overdose on Spaceacilin and monitor until well.
"
+ if((M.getBrainLoss() >= 1 && advscan >= 2 && showadvscan == 1) || M.getBrainLoss() >= 10)
+ dat += "Brain damage - Commence brain repair surgery, apply Alkysine, or universal organ-repair chemicals. (i.e. Peridaxon)
"
+ if(M.radiation || M.accumulated_rads)
+ dat += "Radiation - Give Hyroanlin or Arithazine. Monitor for genetic damage.
"
+ if(organ && (advscan >= 1 && showadvscan == 1))
+ dat += "Organ damage - Give Peridaxon. Perform full body scan for targetted organ repair surgery.
"
+ if(bloodloss)
+ dat += "Low blood volume - Commence blood transfusion via IV drip or provide blood-restorative chemicals (i.e. Iron)."
+ if(M.getToxLoss())
+ dat += "Toxins - Give Dylovene or Cartholine. Vomitting is normal and helpful. Tends to be a symptom of larger issues, such as infection.
"
+ if(M.getBruteLoss())
+ dat += "Brute Trauma - Bandage wounded body part. Give Bicaridine or Vermicetol.
"
+ if(M.getFireLoss())
+ dat += "Surface burn - Salve wounded body part in ointment. Give Kelotane or Dermaline. Check for infections.
"
+ if(M.getCloneLoss())
+ dat += "Genetic damage - Utilize cryogenic pod with appropriate chemicals (i.e. Cryoxadone) and below 70 K, or give Rezadone.
"
+ if(bone)
+ dat += "Bone fracture - Splint damaged area. Treat with bone repair surgery or Osteodaxon after treating brute damage.
"
+ if(M.virus2.len)
+ dat += "Viral infection - Proceed with virology pathogen curing procedures or apply antiviral chemicals (i.e. Corophizine)
"
+ if(robotparts)
+ dat += "Robotic body parts - Should not be repaired by medical personnel, refer to robotics if damaged."
+
+ var/peeb
+ if(dat)
+ peeb +="GUIDANCE SYSTEM BEGIN
"
+ peeb += dat
+ peeb += "For more detailed information about patient condition, use the stationary scanner in medbay."
+
+ user.show_message(peeb, 1)
diff --git a/code/game/objects/items/devices/scanners/health.dm b/code/game/objects/items/devices/scanners/health.dm
index a747dc5f09..c5108b550a 100644
--- a/code/game/objects/items/devices/scanners/health.dm
+++ b/code/game/objects/items/devices/scanners/health.dm
@@ -15,12 +15,20 @@
var/mode = 1;
var/advscan = 0
var/showadvscan = 1
+ var/guide = FALSE
/obj/item/device/healthanalyzer/New()
if(advscan >= 1)
verbs += /obj/item/device/healthanalyzer/proc/toggle_adv
..()
+/obj/item/device/healthanalyzer/examine(mob/user)
+ . = ..()
+ if(guide)
+ . += "Guidance is currently enabled."
+ else
+ . += "Guidance is currently disabled."
+
/obj/item/device/healthanalyzer/do_surgery(mob/living/M, mob/living/user)
if(user.a_intent != I_HELP) //in case it is ever used as a surgery tool
return ..()
@@ -109,19 +117,14 @@
severity = "Lethal"
else if(M.radiation >= 600)
severity = "Critical"
- else if(M.radiation >= 50)
else if(M.radiation >= 400)
severity = "Severe"
- else if(M.radiation >= 25)
else if(M.radiation >= 300)
severity = "Moderate"
- else if(M.radiation >= 1)
else if(M.radiation >= 100)
severity = "Low"
- dat += "[severity] levels of radiation detected. [(severity == "Critical") ? " Immediate treatment advised." : ""]
"
dat += "[severity] levels of acute radiation sickness detected. [round(M.radiation/50)]Gy. [(severity == "Critical" || severity == "Lethal") ? " Immediate treatment advised." : ""]
"
else
- dat += "Radiation detected.
"
dat += "Acute radiation sickness detected.
"
if(M.accumulated_rads)
if(advscan >= 2 && showadvscan == 1)
@@ -303,6 +306,8 @@
dat += "Subject is a Xenochimera. Treat accordingly."
// VOREStation Edit End
user.show_message(dat, 1)
+ if(guide)
+ guide(M, user)
/obj/item/device/healthanalyzer/verb/toggle_mode()
set name = "Switch Verbosity"
diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm
index 0966dd735b..839675cb62 100644
--- a/code/game/objects/items/stacks/stack.dm
+++ b/code/game/objects/items/stacks/stack.dm
@@ -208,7 +208,7 @@
var/mattermult = istype(Ob, /obj/item) ? min(2000, 400 * Ob.w_class) : 2000
- Ob.matter[recipe.use_material] = mattermult / produced * required
+ Ob.matter[recipe.matter_material] = mattermult / produced * required
O.set_dir(user.dir)
O.add_fingerprint(user)
diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm
index 69742e0fcd..28dd4425bd 100644
--- a/code/game/objects/items/stacks/tiles/tile_types.dm
+++ b/code/game/objects/items/stacks/tiles/tile_types.dm
@@ -14,6 +14,7 @@
name = "tile"
singular_name = "tile"
desc = "A non-descript floor tile"
+ icon = 'icons/obj/stacks.dmi' //CHOMPedit - parent obj/item/stack got edited, this puts icon back for carpets.
randpixel = 7
w_class = ITEMSIZE_NORMAL
max_amount = 60
diff --git a/code/game/objects/items/weapons/capture_crystal.dm b/code/game/objects/items/weapons/capture_crystal.dm
index da096cd0f0..3b982d39ae 100644
--- a/code/game/objects/items/weapons/capture_crystal.dm
+++ b/code/game/objects/items/weapons/capture_crystal.dm
@@ -592,8 +592,8 @@
list(/mob/living/simple_mob/animal/passive/tindalos),
list(/mob/living/simple_mob/animal/passive/yithian),
list(
- /mob/living/simple_mob/animal/wolf,
- /mob/living/simple_mob/animal/wolf/direwolf
+ /mob/living/simple_mob/vore/wolf,
+ /mob/living/simple_mob/vore/wolf/direwolf
),
list(/mob/living/simple_mob/vore/rabbit),
list(/mob/living/simple_mob/vore/redpanda),
@@ -608,10 +608,10 @@
/mob/living/simple_mob/animal/space/bear/brown
),
list(
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
- /mob/living/simple_mob/otie/red/chubby
+ /mob/living/simple_mob/vore/otie/feral,
+ /mob/living/simple_mob/vore/otie/feral/chubby,
+ /mob/living/simple_mob/vore/otie/red,
+ /mob/living/simple_mob/vore/otie/red/chubby
),
list(/mob/living/simple_mob/animal/sif/diyaab),
list(/mob/living/simple_mob/animal/sif/duck),
@@ -650,8 +650,8 @@
/mob/living/simple_mob/animal/giant_spider/webslinger = 5,
/mob/living/simple_mob/animal/giant_spider/broodmother = 1),
list(
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 5,
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5,
/mob/living/simple_mob/vore/greatwolf = 1,
/mob/living/simple_mob/vore/greatwolf/black = 1,
/mob/living/simple_mob/vore/greatwolf/grey = 1
@@ -684,7 +684,7 @@
/mob/living/simple_mob/animal/space/carp/large/huge = 5
),
list(/mob/living/simple_mob/animal/space/goose),
- list(/mob/living/simple_mob/animal/space/jelly),
+ list(/mob/living/simple_mob/vore/jelly),
list(/mob/living/simple_mob/animal/space/tree),
list(
/mob/living/simple_mob/vore/aggressive/corrupthound = 10,
@@ -785,13 +785,13 @@
list(/mob/living/simple_mob/mechanical/wahlem),
list(/mob/living/simple_mob/animal/passive/fox/syndicate),
list(/mob/living/simple_mob/animal/passive/fox),
- list(/mob/living/simple_mob/animal/wolf/direwolf),
- list(/mob/living/simple_mob/animal/space/jelly),
+ list(/mob/living/simple_mob/vore/wolf/direwolf),
+ list(/mob/living/simple_mob/vore/jelly),
list(
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
- /mob/living/simple_mob/otie/red/chubby
+ /mob/living/simple_mob/vore/otie/feral,
+ /mob/living/simple_mob/vore/otie/feral/chubby,
+ /mob/living/simple_mob/vore/otie/red,
+ /mob/living/simple_mob/vore/otie/red/chubby
),
list(
/mob/living/simple_mob/shadekin/blue = 100,
diff --git a/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm b/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm
index 30f8369353..4e64813ece 100644
--- a/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm
+++ b/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm
@@ -102,17 +102,17 @@
/obj/item/weapon/grenade/spawnergrenade/casino/otie
desc = "It is set to detonate in 5 seconds. It will release a otie that has been won from the golden goose casino!"
name = "Casino Creature Container (Otie)"
- spawner_type = /mob/living/simple_mob/otie/friendly
+ spawner_type = /mob/living/simple_mob/vore/otie/friendly
/obj/item/weapon/grenade/spawnergrenade/casino/otie/chubby
desc = "It is set to detonate in 5 seconds. It will release a chonker otie that has been won from the golden goose casino!"
name = "Casino Creature Container (Well feed Otie)"
- spawner_type = /mob/living/simple_mob/otie/friendly/chubby
+ spawner_type = /mob/living/simple_mob/vore/otie/friendly/chubby
/obj/item/weapon/grenade/spawnergrenade/casino/zorgoia
desc = "It is set to detonate in 5 seconds. It will release a zorgoia that has been won from the golden goose casino!"
name = "Casino Creature Container (Zorgoia)"
- spawner_type = /mob/living/simple_mob/otie/zorgoia/friendly
+ spawner_type = /mob/living/simple_mob/vore/otie/zorgoia/friendly
/obj/item/weapon/grenade/spawnergrenade/casino/gygax
desc = "You feel great power inside this small round sphere, with great powers comes great responsibilities!"
diff --git a/code/game/objects/micro_structures.dm b/code/game/objects/micro_structures.dm
index f47ced1475..55c0cbe81a 100644
--- a/code/game/objects/micro_structures.dm
+++ b/code/game/objects/micro_structures.dm
@@ -13,7 +13,7 @@
var/static/non_micro_types = list(
/mob/living/simple_mob/vore/squirrel,
/mob/living/simple_mob/vore/alienanimals/catslug,
- /mob/living/simple_mob/vore/hostile/morph,
+ /mob/living/simple_mob/vore/morph,
/mob/living/simple_mob/protean_blob,
/mob/living/simple_mob/slime
)
diff --git a/code/game/objects/mob_spawner_ch.dm b/code/game/objects/mob_spawner_ch.dm
index 38e5b27e7d..4752b77410 100644
--- a/code/game/objects/mob_spawner_ch.dm
+++ b/code/game/objects/mob_spawner_ch.dm
@@ -13,7 +13,7 @@
/mob/living/simple_mob/animal/space/carp = 10,
/obj/structure/closet/crate/mimic = 2,
/mob/living/simple_mob/animal/space/bats = 70,
- /mob/living/simple_mob/animal/space/jelly = 25,
+ /mob/living/simple_mob/vore/jelly = 25,
/mob/living/simple_mob/animal/space/bear = 1,
/mob/living/simple_mob/vore/aggressive/deathclaw = 1,
/mob/living/simple_mob/animal/space/goose = 60,
diff --git a/code/game/objects/mob_spawner_vr.dm b/code/game/objects/mob_spawner_vr.dm
index 3693bf85e2..6feebec885 100644
--- a/code/game/objects/mob_spawner_vr.dm
+++ b/code/game/objects/mob_spawner_vr.dm
@@ -157,7 +157,7 @@ It also makes it so a ghost wont know where all the goodies/mobs are.
invisibility = 101
spawn_types = list(
/mob/living/simple_mob/animal/passive/gaslamp = 20,
-// /mob/living/simple_mob/otie/feral = 10,
+// /mob/living/simple_mob/vore/otie/feral = 10,
/mob/living/simple_mob/vore/aggressive/dino/virgo3b = 5,
/mob/living/simple_mob/vore/aggressive/dragon/virgo3b = 1
)
diff --git a/code/game/objects/random/mob_vr.dm b/code/game/objects/random/mob_vr.dm
index 5eb18d7de0..66c058a68a 100644
--- a/code/game/objects/random/mob_vr.dm
+++ b/code/game/objects/random/mob_vr.dm
@@ -184,7 +184,7 @@
/obj/random/outside_mob/item_to_spawn() // Special version for mobs to have the same faction.
return pick(
prob(50);/mob/living/simple_mob/animal/passive/gaslamp,
-// prob(50);/mob/living/simple_mob/otie/feral, // Removed until Otie code is unfucked.
+// prob(50);/mob/living/simple_mob/vore/otie/feral, // Removed until Otie code is unfucked.
prob(20);/mob/living/simple_mob/vore/aggressive/dino/virgo3b,
prob(1);/mob/living/simple_mob/vore/aggressive/dragon/virgo3b)
diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm
index 47ec0eedf0..87755f5960 100644
--- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm
+++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm
@@ -47,16 +47,16 @@
/mob/living/simple_mob/vore/horse,
/mob/living/simple_mob/vore/aggressive/panther,
/mob/living/simple_mob/vore/aggressive/giant_snake,
- /mob/living/simple_mob/animal/wolf,
+ /mob/living/simple_mob/vore/wolf,
/mob/living/simple_mob/animal/space/bear;0.5,
/mob/living/simple_mob/animal/space/carp,
/mob/living/simple_mob/vore/aggressive/mimic,
/mob/living/simple_mob/vore/aggressive/rat,
/mob/living/simple_mob/vore/aggressive/rat/tame,
- /mob/living/simple_mob/otie/zorgoia, //CHOMPstation edit
+ /mob/living/simple_mob/vore/otie/zorgoia, //CHOMPstation edit
/mob/living/simple_mob/vore/rabbit,
/mob/living/simple_mob/vore/weretiger;0.5,
- /mob/living/simple_mob/otie;0.5
+// /mob/living/simple_mob/vore/otie;0.5
))
return ..()
@@ -72,9 +72,9 @@
/mob/living/simple_mob/animal/space/alien/drone,
/mob/living/simple_mob/animal/space/alien/sentinel,
/mob/living/simple_mob/animal/space/alien/queen,
- /mob/living/simple_mob/otie/feral,
- /mob/living/simple_mob/otie/feral/chubby,
- /mob/living/simple_mob/otie/red,
+ /mob/living/simple_mob/vore/otie/feral, //ChompEDIT uncomment
+ /mob/living/simple_mob/vore/otie/feral/chubby, //ChompEDIT add
+ /mob/living/simple_mob/vore/otie/red, //ChompEDIT uncomment
/mob/living/simple_mob/vore/aggressive/corrupthound))
return ..()
@@ -83,11 +83,11 @@
desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs."
icon = 'icons/obj/storage_vr.dmi'
icon_state = "sotiecrate"
- starts_with = list(/mob/living/simple_mob/otie/security)
+ starts_with = list(/mob/living/simple_mob/vore/otie/security)
/obj/structure/largecrate/animal/otie/guardbeast/Initialize()
- starts_with = list(pick(/mob/living/simple_mob/otie/security,
- /mob/living/simple_mob/otie/security/chubby))
+ starts_with = list(pick(/mob/living/simple_mob/vore/otie/security,
+ /mob/living/simple_mob/vore/otie/security/chubby))
return ..()
/obj/structure/largecrate/animal/guardmutant
@@ -95,12 +95,12 @@
desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs. This one can survive hostile atmosphere."
icon = 'icons/obj/storage_vr.dmi'
icon_state = "sotiecrate"
- starts_with = list(/mob/living/simple_mob/otie/security/phoron)
+ starts_with = list(/mob/living/simple_mob/vore/otie/security/phoron)
/obj/structure/largecrate/animal/otie/guardmutant/Initialize()
- starts_with = list(pick(/mob/living/simple_mob/otie/security/phoron;2,
- /mob/living/simple_mob/otie/security/phoron/red;0.5,
- /mob/living/simple_mob/otie/security/phoron/red/chubby;0.5))
+ starts_with = list(pick(/mob/living/simple_mob/vore/otie/security/phoron;2,
+ /mob/living/simple_mob/vore/otie/security/phoron/red;0.5,
+ /mob/living/simple_mob/vore/otie/security/phoron/red/chubby;0.5))
return ..()
/obj/structure/largecrate/animal/otie
@@ -108,23 +108,23 @@
desc = "A warning on the side says the creature inside was returned to the supplier after injuring or devouring several unlucky members of the previous adoption family. It was given a second chance with the next customer. Godspeed and good luck with your new pet!"
icon = 'icons/obj/storage_vr.dmi'
icon_state = "otiecrate2"
- starts_with = list(/mob/living/simple_mob/otie/cotie)
+ starts_with = list(/mob/living/simple_mob/vore/otie/cotie)
var/taped = 1
/obj/structure/largecrate/animal/otie/Initialize()
- starts_with = list(pick(/mob/living/simple_mob/otie/cotie,
- /mob/living/simple_mob/otie/cotie/chubby))
+ starts_with = list(pick(/mob/living/simple_mob/vore/otie/cotie,
+ /mob/living/simple_mob/vore/otie/cotie/chubby))
return ..()
/obj/structure/largecrate/animal/otie/phoron
name = "VARMAcorp adaptive beta subject (Experimental)"
desc = "VARMAcorp experimental hostile environment adaptive breeding development kit. WARNING, DO NOT RELEASE IN WILD!"
- starts_with = list(/mob/living/simple_mob/otie/cotie/phoron)
+ starts_with = list(/mob/living/simple_mob/vore/otie/cotie/phoron)
/obj/structure/largecrate/animal/otie/phoron/Initialize()
- starts_with = list(pick(/mob/living/simple_mob/otie/cotie/phoron;2,
- /mob/living/simple_mob/otie/red/friendly;0.5,
- /mob/living/simple_mob/otie/red/chubby;0.5))
+ starts_with = list(pick(/mob/living/simple_mob/vore/otie/cotie/phoron;2,
+ /mob/living/simple_mob/vore/otie/red/friendly;0.5,
+ /mob/living/simple_mob/vore/otie/red/chubby;0.5)) //ChompEDIT add
return ..()
/obj/structure/largecrate/animal/otie/attack_hand(mob/living/carbon/human/M as mob)//I just couldn't decide between the icons lmao
diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm
index 98d54513d5..df50537103 100644
--- a/code/game/objects/structures/ghost_pods/event_vr.dm
+++ b/code/game/objects/structures/ghost_pods/event_vr.dm
@@ -29,10 +29,10 @@
"Lizardman" = /mob/living/simple_mob/vore/aggressive/lizardman,//CHOMPedit: more mobs
"Giant Frog" = /mob/living/simple_mob/vore/aggressive/frog,
"Giant Rat" = /mob/living/simple_mob/vore/aggressive/rat,
- "Jelly Blob" = /mob/living/simple_mob/animal/space/jelly,
- "Wolf" = /mob/living/simple_mob/animal/wolf,
- "Dire Wolf" = /mob/living/simple_mob/animal/wolf/direwolf,//CHOMPedit: more mobs
- "Large Dog" = /mob/living/simple_mob/animal/wolf/direwolf/dog,//CHOMPedit: more mobs
+ "Jelly Blob" = /mob/living/simple_mob/vore/jelly,
+ "Wolf" = /mob/living/simple_mob/vore/wolf,
+ "Dire Wolf" = /mob/living/simple_mob/vore/wolf/direwolf,//CHOMPedit: more mobs
+ "Large Dog" = /mob/living/simple_mob/vore/wolf/direwolf/dog,//CHOMPedit: more mobs
"Hyena" = /mob/living/simple_mob/animal/hyena,//CHOMPedit: more mobs
"Juvenile Solargrub" = /mob/living/simple_mob/vore/solargrub,
"Sect Queen" = /mob/living/simple_mob/vore/sect_queen,
@@ -41,13 +41,13 @@
"Panther" = /mob/living/simple_mob/vore/aggressive/panther,
"Giant Snake" = /mob/living/simple_mob/vore/aggressive/giant_snake,
"Deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw,
- "Otie" = /mob/living/simple_mob/otie,
- "Chubby Otie" = /mob/living/simple_mob/otie/friendly/chubby,//CHOMPedit: more mobs
- "Mutated Otie" = /mob/living/simple_mob/otie/feral,
- "Chubby Mutated Otie" = /mob/living/simple_mob/otie/feral/chubby,//CHOMPedit: more mobs
- "Red Otie" = /mob/living/simple_mob/otie/red,
- "Chubby Red Otie" = /mob/living/simple_mob/otie/red/chubby,//CHOMPedit: more mobs
- "Zorgoia" = /mob/living/simple_mob/otie/zorgoia,//CHOMPedit: more mobs
+ "Otie" = /mob/living/simple_mob/vore/otie,
+ "Chubby Otie" = /mob/living/simple_mob/vore/otie/friendly/chubby,//CHOMPedit: more mobs
+ "Mutated Otie" =/mob/living/simple_mob/vore/otie/feral,
+ "Chubby Mutated Otie" = /mob/living/simple_mob/vore/otie/feral/chubby,//CHOMPedit: more mobs
+ "Red Otie" = /mob/living/simple_mob/vore/otie/red,
+ "Chubby Red Otie" = /mob/living/simple_mob/vore/otie/red/chubby,//CHOMPedit: more mobs
+ "Zorgoia" = /mob/living/simple_mob/vore/otie/zorgoia,//CHOMPedit: more mobs
"Corrupt Hound" = /mob/living/simple_mob/vore/aggressive/corrupthound,
"Corrupt Corrupt Hound" = /mob/living/simple_mob/vore/aggressive/corrupthound/prettyboi,
"Hunter Giant Spider" = /mob/living/simple_mob/animal/giant_spider/hunter,
@@ -104,6 +104,7 @@
to_chat(M, "You may be a spooky space monster, but your role is to facilitate spooky space monster roleplay, not to fight the station and kill people. You can of course eat and/or digest people as you like if OOC prefs align, but this should be done as part of roleplay. If you intend to fight the station and kill people and such, you need permission from the staff team. GENERALLY, this role should avoid well populated areas. You’re a weird spooky space monster, so the bar is probably not where you’d want to go if you intend to survive. Of course, you’re welcome to try to make friends and roleplay how you will in this regard, but something to keep in mind.")
newPred.ckey = M.ckey
newPred.visible_message("[newPred] emerges from somewhere!")
+ log_and_message_admins("successfully entered \a [src] and became a [newPred].")
qdel(src)
/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce
@@ -124,7 +125,7 @@
/obj/structure/ghost_pod/ghost_activated/morphspawn/create_occupant(var/mob/M)
..()
- var/mob/living/simple_mob/vore/hostile/morph/newMorph = new /mob/living/simple_mob/vore/hostile/morph(get_turf(src))
+ var/mob/living/simple_mob/vore/morph/newMorph = new /mob/living/simple_mob/vore/morph(get_turf(src))
newMorph.voremob_loaded = TRUE //CHOMPedit: On-demand belly loading.
newMorph.init_vore() //CHOMPedit: On-demand belly loading.
if(M.mind)
@@ -140,6 +141,7 @@
newMorph.ckey = M.ckey
newMorph.visible_message("A morph appears to crawl out of somewhere.")
+ log_and_message_admins("successfully entered \a [src] and became a Morph.")
qdel(src)
/obj/structure/ghost_pod/ghost_activated/morphspawn/no_announce
diff --git a/code/game/objects/structures/ghost_pods/survivor.dm b/code/game/objects/structures/ghost_pods/survivor.dm
index 62dbc2441d..e3ebc5bbfe 100644
--- a/code/game/objects/structures/ghost_pods/survivor.dm
+++ b/code/game/objects/structures/ghost_pods/survivor.dm
@@ -41,6 +41,15 @@
handle_clothing_setup()
+/obj/structure/ghost_pod/manual/survivor/trigger()
+ . = ..()
+ desc += "\n The Pod's stasis is broken!"
+ visible_message(message = SPAN_WARNING("\The [src] hisses and blinks in a myriad of lights as its stasis ceases! \n \
+ What or whoever lays beneath may yet stir once more, but their wounds may be too grevious... "),
+ blind_message = SPAN_WARNING("You hear hissing from [src]!"),
+ runemessage = "HISS")
+
+
/obj/structure/ghost_pod/manual/survivor/proc/handle_clothing_setup()
clothing_possibilities = list()
diff --git a/code/game/objects/structures/props/altevian.dm b/code/game/objects/structures/props/altevian.dm
new file mode 100644
index 0000000000..1bee379e7d
--- /dev/null
+++ b/code/game/objects/structures/props/altevian.dm
@@ -0,0 +1,36 @@
+/obj/structure/prop/altevian_generator_wrecked
+ name = "Converted High Energy Exchange Supplier Extractor"
+ desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \
+ However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools. This one appears to be totally wrecked though."
+ icon = 'icons/obj/props/decor64x64.dmi'
+ icon_state = "alteviangenwrecked"
+ bound_width = 64
+ bound_height = 64
+
+/obj/structure/prop/altevian_jump_drive
+ name = "Prosper-M Stellar Drive"
+ desc = "A drive created by the Altevian Hegemony that focuses heavily on using Bluespace and other tactics to achieve a stable traversal between the stars. \
+ This drive is commonly seen on their medium sized craft to help with logistical operations."
+ icon = 'icons/obj/props/decor128x128.dmi'
+ icon_state = "altevian_jump_drive"
+ bound_width = 128
+ bound_height = 128
+ var/has_misc_overlay = TRUE
+
+/obj/structure/prop/altevian_jump_drive/Initialize()
+ .=..()
+ update_icon()
+
+/obj/structure/prop/altevian_jump_drive/update_icon()
+ cut_overlays()
+ if(has_misc_overlay)
+ add_overlay("jump_drive_misc_anim_overlay")
+
+/obj/structure/prop/altevian_jump_drive/active
+ icon_state = "altevian_jump_drive-active"
+
+/obj/structure/prop/altevian_jump_drive/wrecked
+ icon_state = "altevian_jump_drive_wrecked"
+ desc = "A drive created by the Altevian Hegemony that focuses heavily on using Bluespace and other tactics to achieve a stable traversal between the stars. \
+ This drive is commonly seen on their medium sized craft to help with logistical operations. This one appears to be totally wrecked."
+ has_misc_overlay = FALSE
\ No newline at end of file
diff --git a/code/game/turfs/flooring/seasonal.dm b/code/game/turfs/flooring/seasonal.dm
index 21ebbccbdc..1ff4695ca6 100644
--- a/code/game/turfs/flooring/seasonal.dm
+++ b/code/game/turfs/flooring/seasonal.dm
@@ -55,9 +55,9 @@ var/world_time_season
/mob/living/simple_mob/vore/alienanimals/dustjumper = 20,
/mob/living/simple_mob/vore/bee = 20,
/mob/living/simple_mob/vore/horse/big = 5,
- /mob/living/simple_mob/animal/wolf = 5,
- /mob/living/simple_mob/animal/wolf/direwolf = 1,
- /mob/living/simple_mob/animal/wolf/direwolf/dog = 1,
+ /mob/living/simple_mob/vore/wolf = 5,
+ /mob/living/simple_mob/vore/wolf/direwolf = 1,
+ /mob/living/simple_mob/vore/wolf/direwolf/dog = 1,
/mob/living/simple_mob/vore/squirrel = 20
)
grass_types = list(
@@ -97,7 +97,7 @@ var/world_time_season
/mob/living/simple_mob/vore/horse/big = 5,
/mob/living/simple_mob/vore/pakkun = 2,
/mob/living/simple_mob/vore/fennix = 1,
- /mob/living/simple_mob/animal/wolf/direwolf/dog = 1,
+ /mob/living/simple_mob/vore/wolf/direwolf/dog = 1,
/mob/living/simple_mob/animal/passive/bird/parrot = 1,
/mob/living/simple_mob/vore/squirrel = 20
)
@@ -123,9 +123,9 @@ var/world_time_season
/mob/living/simple_mob/vore/horse/big = 10,
/mob/living/simple_mob/vore/alienanimals/dustjumper = 20,
/mob/living/simple_mob/vore/horse/big = 1,
- /mob/living/simple_mob/animal/wolf = 1,
- /mob/living/simple_mob/animal/wolf/direwolf = 1,
- /mob/living/simple_mob/animal/wolf/direwolf/dog = 1,
+ /mob/living/simple_mob/vore/wolf = 1,
+ /mob/living/simple_mob/vore/wolf/direwolf = 1,
+ /mob/living/simple_mob/vore/wolf/direwolf/dog = 1,
/mob/living/simple_mob/vore/squirrel = 20
)
grass_types = list(
@@ -148,13 +148,13 @@ var/world_time_season
/mob/living/simple_mob/vore/alienanimals/teppi = 10,
/mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1,
/mob/living/simple_mob/vore/redpanda = 10,
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 1,
- /mob/living/simple_mob/animal/wolf/direwolf/dog = 1,
- /mob/living/simple_mob/otie/friendly = 2,
- /mob/living/simple_mob/otie/friendly/chubby = 1,
- /mob/living/simple_mob/otie/red/friendly = 1,
- /mob/living/simple_mob/otie/red/chubby = 1,
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 1,
+ /mob/living/simple_mob/vore/wolf/direwolf/dog = 1,
+ /mob/living/simple_mob/vore/otie/friendly = 2,
+ /mob/living/simple_mob/vore/otie/friendly/chubby = 1,
+ /mob/living/simple_mob/vore/otie/red/friendly = 1,
+ /mob/living/simple_mob/vore/otie/red/chubby = 1,
/mob/living/simple_mob/vore/squirrel = 20
)
if(prob(snow_chance))
diff --git a/code/modules/admin/verbs/entity_narrate.dm b/code/modules/admin/verbs/entity_narrate.dm
index a33d14fbf7..0b42058c84 100644
--- a/code/modules/admin/verbs/entity_narrate.dm
+++ b/code/modules/admin/verbs/entity_narrate.dm
@@ -307,10 +307,10 @@
/datum/entity_narrate/proc/narrate_tgui_atom(atom/A, message as text)
message = sanitize(message)
if(tgui_narrate_mode && tgui_narrate_privacy)
- A.visible_message("[A.name] [message]", range = 1)
+ A.visible_message("\The [A.name] [message]", range = 1)
else if(tgui_narrate_mode && !tgui_narrate_privacy)
- A.visible_message("[A.name] [message]",)
+ A.visible_message("\The [A.name] [message]",)
else if(!tgui_narrate_mode && tgui_narrate_privacy)
- A.audible_message("[A.name] [message]", hearing_distance = 1)
+ A.audible_message("\The [A.name] [message]", hearing_distance = 1)
else if(!tgui_narrate_mode && !tgui_narrate_privacy)
- A.audible_message("[A.name] [message]")
+ A.audible_message("\The [A.name] [message]")
diff --git a/code/modules/awaymissions/redgate.dm b/code/modules/awaymissions/redgate.dm
new file mode 100644
index 0000000000..b9757e9aac
--- /dev/null
+++ b/code/modules/awaymissions/redgate.dm
@@ -0,0 +1,141 @@
+/obj/structure/redgate
+ name = "redgate"
+ desc = "It leads to someplace else!"
+ icon = 'icons/obj/redgate.dmi'
+ icon_state = "off"
+ density = FALSE
+ unacidable = TRUE
+ anchored = TRUE
+ pixel_x = -16
+
+ var/obj/structure/redgate/target
+ var/list/exceptions = list(/obj/structure/ore_box) //made it a var so that GMs or map makers can selectively allow things to pass through
+
+/obj/structure/redgate/Destroy()
+ if(target)
+ target.target = null
+ target.toggle_portal()
+ target = null
+ set_light(0)
+
+ return ..()
+
+/obj/structure/redgate/proc/teleport(var/mob/M as mob)
+ var/keycheck = TRUE
+ if (!istype(M,/mob/living)) //We only want mob/living, no bullets or mechs or AI eyes or items
+ if(M.type in exceptions)
+ keycheck = FALSE //we'll allow it
+ else
+ return
+ if(keycheck) //exceptions probably won't have a ckey
+ if(!M.ckey) //We only want players, no bringing the weird stuff on the other side back
+ return
+
+ if(!target)
+ toggle_portal()
+
+ var/turf/place = get_turf(target)
+ var/possible_turfs = place.AdjacentTurfs()
+ if(isemptylist(possible_turfs))
+ to_chat(M, "Something blocks your way.")
+ return
+ var/turf/temptarg = pick(possible_turfs)
+ do_safe_teleport(M, temptarg, 0)
+
+/obj/structure/redgate/proc/toggle_portal()
+ if(target)
+ icon_state = "on"
+ density = TRUE
+ plane = ABOVE_MOB_PLANE
+ set_light(5, 0.75, "#da5656")
+ else
+ icon_state = "off"
+ density = FALSE
+ plane = OBJ_PLANE
+ set_light(0)
+
+/obj/structure/redgate/Bumped(mob/M as mob)
+ src.teleport(M)
+ return
+
+/obj/structure/redgate/Crossed(mob/M as mob)
+ src.teleport(M)
+ return
+
+/obj/structure/redgate/attack_hand(mob/M as mob)
+ if(density)
+ src.teleport(M)
+ else
+ if(!find_partner())
+ to_chat(M, "The [src] remains off... seems like it doesn't have a destination.")
+
+
+/obj/structure/redgate/attack_ghost(var/mob/observer/dead/user)
+ if(target && user?.client?.holder)
+ user.forceMove(get_turf(target))
+ else
+ return ..()
+
+/obj/structure/redgate/away/Initialize()
+ . = ..()
+ if(!find_partner())
+ log_and_message_admins("An away redgate spawned but wasn't able to find a gateway to link to. If this appeared at roundstart, something has gone wrong, otherwise if you spawn another gate they should connect.")
+
+/obj/structure/redgate/proc/find_partner()
+ for(var/obj/structure/redgate/g in world)
+ if(istype(g, /obj/structure/redgate))
+ if(g.target)
+ continue
+ else if(g == src)
+ continue
+ else if(g.z in using_map.station_levels)
+ target = g
+ g.target = src
+ toggle_portal()
+ target.toggle_portal()
+ break
+ else if(g != src)
+ target = g
+ g.target = src
+ toggle_portal()
+ target.toggle_portal()
+ break
+ if(!target)
+ return FALSE
+ else
+ return TRUE
+
+/area/redgate
+ name = "redgate"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "redblacir"
+ base_turf = /turf/simulated/mineral/floor/cave
+
+/area/redgate/wilds
+ name = "wilderness"
+
+/area/redgate/structure
+ name = "structure"
+ icon_state = "redwhisqu"
+
+/area/redgate/structure/powered
+ requires_power = 0
+
+/area/redgate/lit
+ dynamic_lighting = 0
+
+/area/redgate/structure/powered/teppi_ranch
+ name = "ranch"
+
+/area/redgate/structure/powered/teppi_ranch/barn
+ name = "barn"
+
+/obj/item/weapon/paper/teppiranch
+ name = "elegantly scrawled note"
+ info = {"Goeleigh,
+
+ This isn't how I wanted to give this message to you. They say that the light is coming this way, and we won't even know it's here until it's upon us. There's no way to know when it will arrive, so we can't really afford to wait around. My family has secured us a ride on a ship, and we'll be going to one of the rimward colonies. They say that they are making strides to build some new kind of gate there, something that will take us far from that light, somewhere safe. We can't really bring the animals, but perhaps you can make some arrangements for them.
+
+ As soon as you read this, get yourself out of here and come find us. We left you enough money to make the trip in the usual spot. We'll be in the registry once we arrive. We're waiting for you.
+
+ Yours, Medley"}
diff --git a/code/modules/casino/spawnergrenade_casino.dm b/code/modules/casino/spawnergrenade_casino.dm
index 4a3cf8e535..70bf00bf16 100644
--- a/code/modules/casino/spawnergrenade_casino.dm
+++ b/code/modules/casino/spawnergrenade_casino.dm
@@ -73,7 +73,7 @@
/obj/item/weapon/grenade/spawnergrenade/casino/otie
desc = "It is set to detonate in 5 seconds. It will release a otie won from the casino prize vendor!"
name = "Casino Creature Container (Otie)"
- spawner_type = /mob/living/simple_mob/otie/friendly
+ spawner_type = /mob/living/simple_mob/vore/otie/friendly
/obj/item/weapon/grenade/spawnergrenade/casino/goldcrest
desc = "It is set to detonate in 5 seconds. It will release a bird won from the casino prize vendor!"
@@ -102,4 +102,4 @@
/obj/item/weapon/grenade/spawnergrenade/casino/gygax/shuttlepod
name = "Casino Mech Container (Shuttlepod)"
- spawner_type = /obj/mecha/working/hoverpod/shuttlepod
\ No newline at end of file
+ spawner_type = /obj/mecha/working/hoverpod/shuttlepod
diff --git a/code/modules/client/preference_setup/antagonism/02_candidacy.dm b/code/modules/client/preference_setup/antagonism/02_candidacy.dm
index 3ff1aad3fd..bc5aff7ec0 100644
--- a/code/modules/client/preference_setup/antagonism/02_candidacy.dm
+++ b/code/modules/client/preference_setup/antagonism/02_candidacy.dm
@@ -24,6 +24,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set
"morph" = 1, // 18
"corgi" = 1, // 19
"cursed sword" = 1, // 20
+ "Ship Survivor" = 1, // 21
//VOREStation Add End
)
diff --git a/code/modules/client/preference_setup/general/02_language.dm b/code/modules/client/preference_setup/general/02_language.dm
index 395250c9f4..882f31e92f 100644
--- a/code/modules/client/preference_setup/general/02_language.dm
+++ b/code/modules/client/preference_setup/general/02_language.dm
@@ -41,7 +41,7 @@
pref.alternate_languages.len = (S.num_alternate_languages + pref.extra_languages) // Truncate to allowed length
// VOREStation Edit Start
- if(!(pref.preferred_language in pref.alternate_languages) || !pref.preferred_language) // Safety handling for if our preferred language is ever somehow removed from the character's list of langauges, or they don't have one set
+ if((!(pref.preferred_language in pref.alternate_languages) && !(pref.preferred_language == LANGUAGE_GALCOM) && !(pref.preferred_language == S.language)) || !pref.preferred_language) // Safety handling for if our preferred language is ever somehow removed from the character's list of langauges, or they don't have one set
pref.preferred_language = S.language // Reset to default, for safety
// VOREStation Edit end
diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm
index 0875ddf09e..2b4a55b53c 100644
--- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm
@@ -252,3 +252,15 @@
/datum/gear/shoes/circuitry
display_name = "boots, circuitry (empty)"
path = /obj/item/clothing/shoes/circuitry
+
+/datum/gear/shoes/ballet
+ display_name = "pointe shoes"
+ path = /obj/item/clothing/shoes/ballet
+
+/datum/gear/shoes/ballet/New()
+ ..()
+ gear_tweaks += gear_tweak_free_color_choice
+
+/datum/gear/shoes/halfmoon
+ display_name = "half moon boots"
+ path = /obj/item/clothing/shoes/boots/half_moon
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm
index 567fce1ec6..44db023eaf 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm
@@ -676,3 +676,55 @@
"Earth kimono" = /obj/item/clothing/suit/kimono/earth
)
gear_tweaks += new/datum/gear_tweak/path(kimonos)
+
+//cropped hoodies
+/datum/gear/suit/roles/croppedhoodies
+ display_name = "cropped hoodie selection"
+ path = /obj/item/clothing/suit/storage/croppedhoodie
+
+/datum/gear/suit/roles/croppedhoodies/New()
+ ..()
+ var/list/croppedhoodies = list(
+ "cropped hoodie"=/obj/item/clothing/suit/storage/croppedhoodie,
+ "high cropped hoodie"=/obj/item/clothing/suit/storage/croppedhoodie/croppier,
+ "very high cropped hoodie"=/obj/item/clothing/suit/storage/croppedhoodie/croppierer,
+ "super high cropped hoodie"=/obj/item/clothing/suit/storage/croppedhoodie/croppiest
+ )
+ gear_tweaks += gear_tweak_free_color_choice
+ gear_tweaks += new/datum/gear_tweak/path(croppedhoodies)
+
+/datum/gear/suit/drive
+ display_name = "relatable jacket"
+ path = /obj/item/clothing/suit/storage/drive
+
+/datum/gear/suit/motojacket
+ display_name = "motorcycle jacket"
+ path = /obj/item/clothing/suit/storage/toggle/moto_jacket
+
+/datum/gear/suit/punkvest
+ display_name = "punk vest"
+ path = /obj/item/clothing/suit/storage/punkvest
+
+/datum/gear/suit/raincoat
+ display_name = "raincoat"
+ path = /obj/item/clothing/suit/storage/hooded/raincoat
+
+//hooded cloaks
+/datum/gear/suit/roles/hoodedcloaks
+ display_name = "hooded cloak selection"
+ path = /obj/item/clothing/suit/storage/hooded/cloak
+
+/datum/gear/suit/roles/hoodedcloaks/New()
+ ..()
+ var/list/hoodedcloaks = list(
+ "hooded maroon cloak"=/obj/item/clothing/suit/storage/hooded/cloak,
+ "hooded winter cloak"=/obj/item/clothing/suit/storage/hooded/cloak/winter,
+ "hooded asymmetric cloak"=/obj/item/clothing/suit/storage/hooded/cloak/asymmetric,
+ "hooded fancy cloak"=/obj/item/clothing/suit/storage/hooded/cloak/fancy
+ )
+ gear_tweaks += new/datum/gear_tweak/path(hoodedcloaks)
+
+//nerdy shirt
+/datum/gear/suit/nerdshirt
+ display_name = "nerdy shirt"
+ path = /obj/item/clothing/suit/nerdshirt
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
index b55f67b301..0a3f4784d7 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
@@ -117,10 +117,10 @@ Talon winter coat
path = /obj/item/clothing/suit/armor/combat/crusader_explo/FM
allowed_roles = list ("Paramedic")
-//Atmos-coloured hazard vest
- display_name = "hazard vest, atmospherics"
- path = /obj/item/clothing/suit/storage/hazardvest/atmos
- allowed_roles = list("Chief Engineer","Atmospheric Technician", "Engineer")
+//Long fur coat
+/datum/gear/suit/russofurcoat
+ display_name = "long fur coat"
+ path = /obj/item/clothing/suit/storage/vest/hoscoat/russofurcoat
//Colorable Hoodie
/datum/gear/suit/hoodie_vr
diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm
index cb307392c9..e7ea6ce7e3 100644
--- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm
@@ -516,3 +516,73 @@
/datum/gear/uniform/tropical_outfit/blue
display_name = "tropical outfit, miami vice"
path = /obj/item/clothing/under/tropical/blue
+
+
+//leotards
+/datum/gear/uniform/leotard
+ display_name = "leotard, black"
+ path = /obj/item/clothing/under/leotard
+
+/datum/gear/uniform/leotardcolor
+ display_name = "leotard, colorable"
+ path = /obj/item/clothing/under/leotardcolor
+
+/datum/gear/uniform/leotardcolor/New()
+ ..()
+ gear_tweaks += gear_tweak_free_color_choice
+
+//skinsuits
+/datum/gear/uniform/skinsuits
+ display_name = "skinsuit selection"
+ path = /obj/item/clothing/under/skinsuit
+
+/datum/gear/uniform/skinsuits/New()
+ ..()
+ var/list/skinsuits = list(
+ "skinsuit"=/obj/item/clothing/under/skinsuit,
+ "feminine skinsuit"=/obj/item/clothing/under/skinsuit/fem,
+ "gray skinsuit"=/obj/item/clothing/under/skinsuit/gray,
+ "feminine gray skinsuit"=/obj/item/clothing/under/skinsuit/fem/gray,
+ "leotard skinsuit"=/obj/item/clothing/under/skinsuit/leotard,
+ "feminine leotard skinsuit"=/obj/item/clothing/under/skinsuit/fem/leotard,
+ "gray leotard skinsuit"=/obj/item/clothing/under/skinsuit/leotard/gray,
+ "feminine gray leotard skinsuit"=/obj/item/clothing/under/skinsuit/fem/leotard/gray
+ )
+ gear_tweaks += list(new/datum/gear_tweak/path(skinsuits))
+
+//baggy turtlenecks
+/datum/gear/uniform/turtlebaggys
+ display_name = "baggy turtleneck selection"
+ path = /obj/item/clothing/under/turtlebaggy
+
+/datum/gear/uniform/turtlebaggys/New()
+ ..()
+ var/list/turtlebaggys = list(
+ "cream baggy turtleneck"=/obj/item/clothing/under/turtlebaggy,
+ "feminine cream baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/cream_fem,
+ "purple baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/purple,
+ "feminine purple baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/purple_fem,
+ "red baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/red,
+ "feminine red baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/red_fem,
+ "blue baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/blue,
+ "feminine blue baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/blue_fem,
+ "green baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/green,
+ "feminine green baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/green_fem,
+ "black baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/black,
+ "feminine black baggy turtleneck"=/obj/item/clothing/under/turtlebaggy/black_fem
+ )
+ gear_tweaks += list(new/datum/gear_tweak/path(turtlebaggys))
+
+//half-moon outfit
+/datum/gear/uniform/halfmoon
+ display_name = "half moon outfit"
+ path = /obj/item/clothing/under/half_moon
+
+//fiend clothes
+/datum/gear/uniform/fiendsuit
+ display_name = "fiendish suit"
+ path = /obj/item/clothing/under/fiendsuit
+
+/datum/gear/uniform/fienddress
+ display_name = "fiendish dress"
+ path = /obj/item/clothing/under/fienddress
diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm
index 5e9dd7b5b6..22d1728900 100644
--- a/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm
@@ -97,7 +97,7 @@
display_name = "vr suit" //The name of the suit as shown in the loadout menu
path = /obj/item/clothing/under/vrsuit //Pathname of the suit which is found in custom_clothes_ch.dm
-// Cargo shorts. The full-of-pockets kind, not the department
+// Cargo shorts. The full-of-pockets kind, not the department
/datum/gear/uniform/cshorts
display_name = "cargo shorts"
path = /obj/item/clothing/under/shorts/cshorts/khaki
@@ -108,4 +108,8 @@
"Olive cargo shorts" = /obj/item/clothing/under/shorts/cshorts/olive,
"Khaki cargo shorts" = /obj/item/clothing/under/shorts/cshorts/khaki
)
- gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cargo_shorts))
\ No newline at end of file
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cargo_shorts))
+
+/datum/gear/uniform/tacticool
+ display_name = "Tacticool turtleneck"
+ path = /obj/item/clothing/under/syndicate/tacticool/loadout
\ No newline at end of file
diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index b150240da2..64dc709fa0 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -790,7 +790,7 @@
var/image/standing = ..()
if(taurized) //Special snowflake var on suits
standing.pixel_x = -16
- standing.layer = BODY_LAYER + 17 // 17 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1
+ standing.layer = BODY_LAYER + 18 // 18 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1 //CHOMPEDIT - CHECK human/update_icons.dm BEFORE YOU CHANGE THIS.
return standing
/obj/item/clothing/suit/apply_accessories(var/image/standing)
diff --git a/code/modules/clothing/head/collectable.dm b/code/modules/clothing/head/collectable.dm
index bb4e035196..5d33d56360 100644
--- a/code/modules/clothing/head/collectable.dm
+++ b/code/modules/clothing/head/collectable.dm
@@ -108,7 +108,7 @@
/obj/item/clothing/head/collectable/hardhat
name = "collectable hard hat"
desc = "WARNING! Offers no real protection, or luminosity, but it is damn fancy!"
- icon_state = "hardhat0_yellow"
+ icon_state = "hardhat0_old_yellow"
body_parts_covered = 0
/obj/item/clothing/head/collectable/HoS
diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm
index d8bfea2b1d..6d9fda604a 100644
--- a/code/modules/clothing/head/hardhat.dm
+++ b/code/modules/clothing/head/hardhat.dm
@@ -80,6 +80,52 @@
icon_state = "helmet_firefighter_ce"
max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + 10000
+/obj/item/clothing/head/hardhat/old
+ name = "classic hard hat"
+ icon_state = "hardhat0_old_yellow"
+ light_overlay = "hardhat_light_old"
+
+/obj/item/clothing/head/hardhat/orange/old
+ name = "classic orange hard hat"
+ icon_state = "hardhat0_old_orange"
+ light_overlay = "hardhat_light_old"
+
+/obj/item/clothing/head/hardhat/white/old
+ name = "classic sleek hard hat"
+ icon_state = "hardhat0_old_white"
+ light_overlay = "hardhat_light_old"
+
+/obj/item/clothing/head/hardhat/dblue/old
+ name = "classic blue hard hat"
+ icon_state = "hardhat0_old_dblue"
+ light_overlay = "hardhat_light_old"
+
+/obj/item/clothing/head/hardhat/red/old
+ name = "classic fire helmet"
+ icon_state = "hardhat0_old_red"
+ light_overlay = "hardhat_light_old"
+
+/obj/item/clothing/head/hardhat/firefighter/old
+ name = "classic firefighter helmet"
+ icon_state = "helmet_firefighter_old"
+ sprite_sheets = list(
+ SPECIES_TAJARAN = 'icons/inventory/head/mob_tajaran.dmi'
+ )
+
+/obj/item/clothing/head/hardhat/firefighter/atmos/old
+ name = "classic atmospheric firefighter helmet"
+ icon_state = "atmos_fire_old"
+ sprite_sheets = list(
+ SPECIES_TAJARAN = 'icons/inventory/head/mob_tajaran.dmi'
+ )
+
+/obj/item/clothing/head/hardhat/firefighter/chief/old
+ name = "classic chief firefighter helmet"
+ icon_state = "helmet_firefighter_ce_old"
+ sprite_sheets = list(
+ SPECIES_TAJARAN = 'icons/inventory/head/mob_tajaran.dmi'
+ )
+
/*
* Ranger Hats
*/
diff --git a/code/modules/clothing/head/hood.dm b/code/modules/clothing/head/hood.dm
index 4243b0fa27..041a29b55d 100644
--- a/code/modules/clothing/head/hood.dm
+++ b/code/modules/clothing/head/hood.dm
@@ -216,3 +216,30 @@
icon = 'icons/inventory/head/item_vr.dmi'
icon_override = 'icons/inventory/head/mob_vr.dmi'
icon_state = "hood_plain"
+
+/obj/item/clothing/head/hood/raincoat
+ name = "raincoat hood"
+ desc = "A hood attached to a raincoat."
+ icon_state = "raincoat"
+
+//hooded cloak hoods
+/obj/item/clothing/head/hood/cloak
+ name = "maroon cloak hood"
+ desc = "A hood attached to a maroon cloak."
+ icon_state = "maroon_cloakhood"
+ flags_inv = HIDEEARS|BLOCKHAIR
+
+/obj/item/clothing/head/hood/cloak/winter
+ name = "winter cloak hood"
+ desc = "A hood attached to a winter cloak."
+ icon_state = "winter_cloakhood"
+
+/obj/item/clothing/head/hood/cloak/asymmetric
+ name = "asymmetric cloak hood"
+ desc = "A hood attached to an asymmetric cloak."
+ icon_state = "royalist_cloakhood"
+
+/obj/item/clothing/head/hood/cloak/fancy
+ name = "fancy cloak hood"
+ desc = "A hood attached to a fancy cloak."
+ icon_state = "hb_cloakhood"
diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm
index 249184aef5..c9cddd3367 100644
--- a/code/modules/clothing/shoes/boots.dm
+++ b/code/modules/clothing/shoes/boots.dm
@@ -252,3 +252,8 @@
name = "yellow performer's boots"
desc = "These boots were made for dancing."
icon_state = "ysing"
+
+/obj/item/clothing/shoes/boots/half_moon
+ name = "half moon boots"
+ desc = "Flexible and tight, these boots ensure the wearer will be leaving a solid impression without sacrificing mobility."
+ icon_state = "half_moon"
diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm
index 107a69bf79..4b1a6be816 100644
--- a/code/modules/clothing/shoes/miscellaneous.dm
+++ b/code/modules/clothing/shoes/miscellaneous.dm
@@ -281,4 +281,10 @@
else
footstep++
-// CHOMPedit end.
\ No newline at end of file
+// CHOMPedit end.
+
+/obj/item/clothing/shoes/ballet
+ name = "pointe shoes"
+ desc = "These shoes feature long lace straps and flattened off toes. Great for the most elegant of dances!"
+ icon_state = "ballet"
+ item_state = "ballet"
diff --git a/code/modules/clothing/suits/hooded.dm b/code/modules/clothing/suits/hooded.dm
index eba5cb2b37..018a29af31 100644
--- a/code/modules/clothing/suits/hooded.dm
+++ b/code/modules/clothing/suits/hooded.dm
@@ -393,3 +393,41 @@
desc = "For those who REALLY love their toasters."
icon_state = "techpriest"
hoodtype = /obj/item/clothing/head/hood/techpriest
+
+/obj/item/clothing/suit/storage/hooded/raincoat
+ name = "raincoat"
+ desc = "A thin, opaque coat meant to protect you from all sorts of rain. Preferred by outdoorsmen and janitors alike across the rift. Of course, the only type of fluids you'd like to protect yourself from around this place don't rain down from the sky. Usually. Comes with a hood!"
+ icon_state = "raincoat"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS
+ flags_inv = HIDEHOLSTER
+ hoodtype = /obj/item/clothing/head/hood/raincoat
+ allowed = list(/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight, /obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes,
+ /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask, /obj/item/device/suit_cooling_unit)
+
+
+//hooded cloaks
+/obj/item/clothing/suit/storage/hooded/cloak
+ name = "hooded maroon cloak"
+ desc = "A simple maroon colored cloak."
+ icon_state = "maroon_cloak"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+ hoodtype = /obj/item/clothing/head/hood/cloak
+
+/obj/item/clothing/suit/storage/hooded/cloak/winter
+ name = "hooded winter cloak"
+ desc = "A simple wool cloak used during winter."
+ icon_state = "winter_cloak"
+ hoodtype = /obj/item/clothing/head/hood/cloak/winter
+
+/obj/item/clothing/suit/storage/hooded/cloak/asymmetric
+ name = "hooded asymmetric cloak"
+ desc = "A blue hooded cloak with an asymmetric design."
+ icon_state = "asymmetric_cloak"
+ hoodtype = /obj/item/clothing/head/hood/cloak/asymmetric
+
+
+/obj/item/clothing/suit/storage/hooded/cloak/fancy
+ name = "hooded fancy cloak"
+ desc = "A fancy black hooded cloak."
+ icon_state = "hb_cloak"
+ hoodtype = /obj/item/clothing/head/hood/cloak/fancy
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index 8cd3baaf52..52d2772d16 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -321,6 +321,12 @@
body_parts_covered = UPPER_TORSO|ARMS
flags_inv = HIDETIE|HIDEHOLSTER
+//nerdy shirt
+/obj/item/clothing/suit/nerdshirt
+ name = "nerdy shirt"
+ desc = "A comfy white t-shirt with a picture of a cartoon hedgehog on it. Although clean, it still seems like the wearer should be embarrassed for owning it."
+ icon_state = "nerdshirt"
+
/*
* Kimonos
*/
@@ -1050,3 +1056,45 @@
body_parts_covered = FEET|LOWER_TORSO|UPPER_TORSO|LEGS
flags_inv = HIDESHOES|HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER
item_state_slots = list(slot_r_hand_str = "green_labcoat", slot_l_hand_str = "green_labcoat")
+
+//Cropped hoodies
+/obj/item/clothing/suit/storage/croppedhoodie
+ name = "cropped hoodie"
+ desc = "This style of hoodie is sometimes worn by those who cannot fit, or choose not to hide their delectable bellies under the full, soft confines of a hoodie. The hood is cosmetic, and non-functional."
+ icon_state = "croppedhoodie"
+ body_parts_covered = UPPER_TORSO|ARMS
+
+/obj/item/clothing/suit/storage/croppedhoodie/croppier
+ name = "high cropped hoodie"
+ desc = "This style of hoodie is worn by those that wish to display ample amounts of midriff, or never threw out their childhood apparel. The hood is cosmetic, and non-functional."
+ icon_state = "croppierhoodie"
+
+/obj/item/clothing/suit/storage/croppedhoodie/croppierer
+ name = "very high cropped hoodie"
+ desc = "This style of hoodie is worn by those that wish to display ample amounts of underboob, and love the breeze. Comes with a free 'functionally_nude' sticker. The hood is cosmetic, and non-functional."
+ icon_state = "highcrophoodie"
+
+/obj/item/clothing/suit/storage/croppedhoodie/croppiest
+ name = "super cropped hoodie"
+ desc = "This style of hoodie is worn by those that have little respect for the concept of a hoodie. Often seen in nightclubs and your daughter's wardrdobe. The hood is cosmetic, and non-functional."
+ icon_state = "supercroppedhoodie"
+
+//Drive jacket
+/obj/item/clothing/suit/storage/drive
+ name = "relatable jacket"
+ desc = "An all white jacket with a shine. It seems easy to identify with the wearer."
+ icon_state = "drivejacket"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+
+/obj/item/clothing/suit/storage/toggle/moto_jacket
+ name = "motorcycle jacket"
+ desc = "A recreation of one of the famous Sol-based biwheeled driver assemblies. Patches on the back denote an AI-generated 'biker logo'. It looks unintelligible."
+ icon_state = "motojacket"
+ allowed = list (/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight, /obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask) //same as leather jackets
+ body_parts_covered = UPPER_TORSO|ARMS
+
+/obj/item/clothing/suit/storage/punkvest
+ name = "punk vest"
+ desc = "For the spiritual rebels that nevertheless wish to conform to standard goth trends. You're totally showing them your anti-authority spunk."
+ icon_state = "punkvest"
+ body_parts_covered = UPPER_TORSO|ARMS|LOWER_TORSO
diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm
index 9273271517..feb07a1458 100644
--- a/code/modules/clothing/under/miscellaneous.dm
+++ b/code/modules/clothing/under/miscellaneous.dm
@@ -1076,6 +1076,21 @@
desc = "A rather skimpy cow patterned swimsuit."
icon_state = "swim_cow"
+/obj/item/clothing/under/swimsuit/highclass
+ name = "high class swimsuit"
+ desc = "An elegant swimsuit with a white bikini top and black bikini bottom. Thin black silk drapes down the back and goes to the upper thighs, and authentic gold rings hold the top together at the bust and back."
+ icon_state = "swim_highclass"
+
+/obj/item/clothing/under/swimsuit/risque
+ name = "risque swimsuit"
+ desc = "This fits a bit too snug in all the right places. Comes with a collar, for inscrutable reasons."
+ icon_state = "swim_risque"
+
+/obj/item/clothing/under/swimsuit/streamlined
+ name = "streamlined swimsuit"
+ desc = "An all white one-piece that maintains modesty without sacrificing class."
+ icon_state = "swim_stream"
+
/obj/item/clothing/under/wetsuit
name = "wetsuit"
desc = "For when you need to scuba dive your way into an enemy base."
@@ -1524,3 +1539,132 @@
name = "green crop-top christmas suit"
desc = "A simple green christmas suit that doesn't quite looks like Mrs Claus'. Smells minty!"
icon_state = "christmascroppedgreen"
+
+//leotards
+/obj/item/clothing/under/leotard
+ name = "black leotard"
+ desc = "A black leotard with a piece of semi-transparent cloth near the bust. Perfect for showing off cleavage. Bunny ears not included."
+ icon_state = "leotard"
+
+/obj/item/clothing/under/leotardcolor
+ name = "colored leotard"
+ desc = "A colorable leotard with a piece of semi-transparent cloth near the bust. Perfect for showing off cleavage. Bunny ears not included."
+ icon_state = "leotard_color"
+
+//skinsuits
+/obj/item/clothing/under/skinsuit
+ name = "skinsuit"
+ desc = "Similar to other form-fitting latex bodysuits in design and function, skinsuits typically feature integrated hardpoints around common wear areas."
+ icon_state = "skinsuit"
+
+/obj/item/clothing/under/skinsuit/gray
+ name = "gray skinsuit"
+ icon_state = "skinsuit_g"
+
+/obj/item/clothing/under/skinsuit/leotard
+ name = "leotard skinsuit"
+ desc = "The skinsuit's leotard variant has long since eclipsed its initial function as a breathable undersuit for submersible hardsuits. Although still utilized in this role, it has become rather fashionable to wear outside of deep water operations."
+ icon_state = "skinsuitleo"
+
+
+/obj/item/clothing/under/skinsuit/leotard/gray
+ name = "gray leotard skinsuit"
+ icon_state = "skinsuitleo_g"
+
+/obj/item/clothing/under/skinsuit/fem
+ name = "feminine skinsuit"
+ desc = "Similar to other form-fitting latex bodysuits in design and function, skinsuits typically feature integrated hardpoints around common wear areas."
+ icon_state = "skinsuitfem"
+
+/obj/item/clothing/under/skinsuit/fem/gray
+ name = "feminine gray skinsuit"
+ icon_state = "skinsuitfem_g"
+
+/obj/item/clothing/under/skinsuit/fem/leotard
+ name = "feminine leotard skinsuit"
+ desc = "The skinsuit's leotard variant has long since eclipsed its initial function as a breathable undersuit for submersible hardsuits. Although still utilized in this role, it has become rather fashionable to wear outside of deep water operations."
+ icon_state = "skinsuitfemleo"
+
+/obj/item/clothing/under/skinsuit/fem/leotard/gray
+ name = "feminine gray leotard skinsuit"
+ icon_state = "skinsuitfemleo_g"
+
+//baggy turtlenecks
+/obj/item/clothing/under/turtlebaggy
+ name = "cream baggy turtleneck (cream)"
+ desc = "A cozy knit turtleneck. It's too baggy and comfortable to be tactical."
+ icon_state = "bb_turtle"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+
+
+/obj/item/clothing/under/turtlebaggy/cream_fem
+ name = "feminine cream baggy turtleneck"
+ icon_state = "bb_turtle_fem"
+
+
+/obj/item/clothing/under/turtlebaggy/purple
+ name = "purple baggy turtleneck"
+ icon_state = "bb_turtlepur"
+
+
+/obj/item/clothing/under/turtlebaggy/purple_fem
+ name = "feminine purple baggy turtleneck"
+ icon_state = "bb_turtlepur_fem"
+
+
+/obj/item/clothing/under/turtlebaggy/red
+ name = "red baggy turtleneck"
+ icon_state = "bb_turtlered"
+
+
+/obj/item/clothing/under/turtlebaggy/red_fem
+ name = "feminine red baggy turtleneck"
+ icon_state = "bb_turtlered_fem"
+
+
+/obj/item/clothing/under/turtlebaggy/blue
+ name = "blue baggy turtleneck"
+ icon_state = "bb_turtleblu"
+
+
+/obj/item/clothing/under/turtlebaggy/blue_fem
+ name = "feminine blue baggy turtleneck"
+ icon_state = "bb_turtleblu_fem"
+
+
+/obj/item/clothing/under/turtlebaggy/green
+ name = "green baggy turtleneck"
+ icon_state = "bb_turtlegrn"
+
+
+/obj/item/clothing/under/turtlebaggy/green_fem
+ name = "feminine green baggy turtleneck"
+ icon_state = "bb_turtlegrn_fem"
+
+
+/obj/item/clothing/under/turtlebaggy/black
+ name = "black baggy turtleneck"
+ icon_state = "bb_turtleblk"
+
+
+/obj/item/clothing/under/turtlebaggy/black_fem
+ name = "feminine black baggy turtleneck"
+ icon_state = "bb_turtleblk_fem"
+
+//half-moon outfit
+/obj/item/clothing/under/half_moon
+ name = "half moon outfit"
+ desc = "This eminently fashionable outfit consists of a tailored latex leotard and daringly cut white shorts. Paired with plunging off-color stockings, it's to die for."
+ icon_state = "half_moon"
+
+//fiend clothes
+/obj/item/clothing/under/fiendsuit
+ name = "fiendish suit"
+ desc = "A red and black suit befitting someone from the dark pits themselves… Or someone way too edgy."
+ icon_state = "fiendsuit"
+
+
+/obj/item/clothing/under/fienddress
+ name = "fiendish dress"
+ desc = "A red and black dress befitting someone from the dark pits themselves… Or someone way too edgy."
+ icon_state = "fienddress"
diff --git a/code/modules/clothing/under/syndicate_ch.dm b/code/modules/clothing/under/syndicate_ch.dm
new file mode 100644
index 0000000000..1c200250ac
--- /dev/null
+++ b/code/modules/clothing/under/syndicate_ch.dm
@@ -0,0 +1,3 @@
+/obj/item/clothing/under/syndicate/tacticool/loadout //loadout tacticool option. No armor, but has sensors
+ has_sensor = 1
+ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)
diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm
index 7f2a69c579..0ae838bb96 100644
--- a/code/modules/economy/vending_machines.dm
+++ b/code/modules/economy/vending_machines.dm
@@ -275,14 +275,21 @@
desc = "Fueled by your inner inadequacy!"
description_fluff = "Provided by NanoMed, SweatMAX promises solutions to all of your problems. Premium gains at premium prices. Resale of SweatMAX products is a violation of NanoTrasen guidelines."
icon_state = "fitness"
- //VOREStation Edit Start
products = list(/obj/item/weapon/reagent_containers/food/drinks/smallmilk = 16,
/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk = 16,
+ /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 10,
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 8,
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask = 8,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder = 16,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/vanilla = 16,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/banana = 16,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/chocolate = 16,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/strawberry = 16,
/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar = 16,
/obj/item/weapon/reagent_containers/food/snacks/fruitbar = 16,
/obj/item/weapon/reagent_containers/food/snacks/liquidfood = 8,
+ /obj/item/weapon/reagent_containers/food/snacks/liquidvitamin = 8,
+ /obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 8,
/obj/item/weapon/reagent_containers/pill/diet = 8,
/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, //CHOMPedit nah
/obj/item/weapon/towel/random = 8,
@@ -290,18 +297,27 @@
prices = list(/obj/item/weapon/reagent_containers/food/drinks/smallmilk = 3,
/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk = 3,
+ /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 2,
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 15,
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask = 1,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder = 5,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/vanilla = 5,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/banana = 5,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/chocolate = 5,
+ /obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/strawberry = 5,
/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar = 5,
/obj/item/weapon/reagent_containers/food/snacks/fruitbar = 5,
/obj/item/weapon/reagent_containers/food/snacks/liquidfood = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/liquidvitamin = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 5,
/obj/item/weapon/reagent_containers/pill/diet = 25,
/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //CHOMPedit nah
/obj/item/weapon/towel/random = 20,
/obj/item/toy/tennis = 15)
- //VOREStation Edit End
- contraband = list(/obj/item/weapon/reagent_containers/syringe/steroid = 4, /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteanshake = 2, /obj/item/toy/baseball = 2) // VOREStation Add - Slurpable blobs.
+ contraband = list(/obj/item/weapon/reagent_containers/syringe/steroid = 4,
+ /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteanshake = 2,
+ /obj/item/toy/baseball = 2) // VOREStation Add - Slurpable blobs.
/obj/machinery/vending/cart
name = "PTech"
diff --git a/code/modules/economy/vending_machines_vr.dm b/code/modules/economy/vending_machines_vr.dm
index c3e587f51d..e5861710c9 100644
--- a/code/modules/economy/vending_machines_vr.dm
+++ b/code/modules/economy/vending_machines_vr.dm
@@ -239,11 +239,6 @@
// Food Machines (for event/away maps)
-/obj/machinery/vending/fitness/New()
- products += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 8)
- prices += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 5)
- ..()
-
/obj/machinery/vending/blood
name = "Blood-Onator"
desc = "Freezer-vendor for storage and quick dispensing of blood packs"
@@ -951,6 +946,9 @@
/obj/item/weapon/storage/box/fluff/swimsuit/security = 5,
/obj/item/weapon/storage/box/fluff/swimsuit/medical = 5,
/obj/item/weapon/storage/box/fluff/swimsuit/cowbikini = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/highclass = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/risque = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/streamlined = 5,
/obj/item/clothing/under/utility = 5,
/obj/item/clothing/under/utility/grey = 5,
/obj/item/clothing/under/utility/blue = 5,
@@ -1126,6 +1124,9 @@
/obj/item/weapon/storage/box/fluff/swimsuit/security = 50,
/obj/item/weapon/storage/box/fluff/swimsuit/medical = 50,
/obj/item/weapon/storage/box/fluff/swimsuit/cowbikini = 50,
+ /obj/item/weapon/storage/box/fluff/swimsuit/highclass = 50,
+ /obj/item/weapon/storage/box/fluff/swimsuit/risque = 50,
+ /obj/item/weapon/storage/box/fluff/swimsuit/streamlined = 50,
/obj/item/clothing/under/utility = 50,
/obj/item/clothing/under/utility/grey = 50,
/obj/item/clothing/under/utility/blue = 50,
@@ -2195,6 +2196,9 @@
/obj/item/weapon/storage/box/fluff/swimsuit/security = 5,
/obj/item/weapon/storage/box/fluff/swimsuit/medical = 5,
/obj/item/weapon/storage/box/fluff/swimsuit/cowbikini = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/highclass = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/risque = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/streamlined = 5,
/obj/item/clothing/under/utility = 5,
/obj/item/clothing/under/utility/grey = 5,
/obj/item/clothing/under/utility/blue = 5,
diff --git a/code/modules/events/meteors.dm b/code/modules/events/meteors.dm
index 0e4ec62b74..982048b42e 100644
--- a/code/modules/events/meteors.dm
+++ b/code/modules/events/meteors.dm
@@ -51,7 +51,7 @@
endWhen = worst_case_end()
/datum/event/meteor_wave/proc/get_wave_size()
- return severity * rand(2, 3)
+ return severity * rand(2,4) //CHOMP Edit: Increase maximum multipler from 3 to 4.
/datum/event/meteor_wave/proc/worst_case_end()
return activeFor + ((30 / severity) * waves) + 10
diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm
index 2f3234d0db..58fc5e3298 100644
--- a/code/modules/events/spider_infestation.dm
+++ b/code/modules/events/spider_infestation.dm
@@ -11,7 +11,7 @@
kill()
return
announceWhen = rand(announceWhen, announceWhen + 60)
- spawncount = rand(6 * severity, 14 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14
+ spawncount = rand(4 * severity, 10 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 new: 4/10
sent_spiders_to_station = 0
/datum/event/spider_infestation/announce()
@@ -33,6 +33,13 @@
while((spawncount >= 1) && vents.len)
var/obj/vent = pick(vents)
- new /obj/effect/spider/spiderling(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back.
+ //CHOMPEDIT START adding spider EGGS to the possible spawns instead of singular spiderling spawns.
+ var/spawn_spiderlings = pickweight(list(
+ /obj/effect/spider/spiderling = 85,
+ /obj/effect/spider/eggcluster = 10,
+ /obj/effect/spider/eggcluster/royal = 5
+ ))
+ new spawn_spiderlings(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back.
+ //CHOMPEDIT END
vents -= vent
spawncount--
diff --git a/code/modules/flufftext/look_up.dm b/code/modules/flufftext/look_up.dm
index ec7bf85f23..46338290f9 100644
--- a/code/modules/flufftext/look_up.dm
+++ b/code/modules/flufftext/look_up.dm
@@ -17,10 +17,10 @@
return
else // They're outside and hopefully on a planet.
- var/datum/planet/P = SSplanets.z_to_planet[T.z]
- if(!P)
+ if(!(T.z in SSplanets.z_to_planet) || !(SSplanets.z_to_planet[T.z]))
to_chat(usr, span("warning", "You appear to be outside, but not on a planet... Something is wrong."))
return
+ var/datum/planet/P = SSplanets.z_to_planet[T.z]
var/datum/weather_holder/WH = P.weather_holder
diff --git a/code/modules/food/drinkingglass/shaker.dm b/code/modules/food/drinkingglass/shaker.dm
index 1fa37e0b67..4a2fae13b7 100644
--- a/code/modules/food/drinkingglass/shaker.dm
+++ b/code/modules/food/drinkingglass/shaker.dm
@@ -6,11 +6,12 @@
base_icon = "fitness-cup"
volume = 100
matter = list(MAT_PLASTIC = 2000)
- filling_states = list(10,20,30,40,50,60,70,80,90,100)
+ filling_states = list(10,20,30,40,50,60,70,80)
possible_transfer_amounts = list(5, 10, 15, 25)
rim_pos = null // no fruit slices
var/lid_color = "black"
+
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/Initialize()
. = ..()
lid_color = pick("black", "red", "blue")
@@ -19,19 +20,22 @@
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/update_icon()
..()
icon_state = "[base_icon]_[lid_color]"
+ cut_overlays()
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake
name = "protein shake"
+ icon = 'icons/obj/drinks.dmi'
+ icon_state = "protein_shake"
+ base_icon = "protein_shake"
+ desc = "NanoTrasen brand pre-done pre-workout mix. Also perfect for an empty stomach."
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake/Initialize()
. = ..()
+ cut_overlays()
reagents.add_reagent("nutriment", 30)
reagents.add_reagent("iron", 10)
reagents.add_reagent("protein", 35)
reagents.add_reagent("water", 25)
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake/update_icon()
- ..()
- // And now set half the stuff back because our name shouldn't change
- name = initial(name)
- desc = initial(desc)
\ No newline at end of file
+ return
\ No newline at end of file
diff --git a/code/modules/food/drinkingglass/shaker_vr.dm b/code/modules/food/drinkingglass/shaker_vr.dm
index 6a550b4ed1..af73e16b18 100644
--- a/code/modules/food/drinkingglass/shaker_vr.dm
+++ b/code/modules/food/drinkingglass/shaker_vr.dm
@@ -1,13 +1,15 @@
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteanshake
name = "protean shake"
+ icon = 'icons/obj/drinks.dmi'
+ icon_state = "protean_shake"
+ base_icon = "protean_shake"
+ desc = "A strangely unlabeled, unbranded pre-workout drink carton."
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteanshake/Initialize()
. = ..()
+ cut_overlays()
reagents.add_reagent("liquid_protean", 50)
reagents.add_reagent("nutriment", 50)
/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteanshake/update_icon()
- ..()
- // And now set half the stuff back because our name shouldn't change
- name = initial(name)
- desc = initial(desc)
\ No newline at end of file
+ return
\ No newline at end of file
diff --git a/code/modules/food/food/condiment.dm b/code/modules/food/food/condiment.dm
index 2373db3bc2..d9b6b38799 100644
--- a/code/modules/food/food/condiment.dm
+++ b/code/modules/food/food/condiment.dm
@@ -526,3 +526,48 @@
/obj/item/weapon/reagent_containers/food/condiment/spacespice/Initialize()
. = ..()
reagents.add_reagent("spacespice", 40)
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder
+ name = "protein powder packet"
+ desc = "Contains 5u of regular protein powder. Mix with 25u of water and enjoy."
+ icon_state = "protein_powder1"
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/Initialize()
+ . = ..()
+ reagents.add_reagent("protein_powder", 5)
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/vanilla
+ name = "vanilla protein powder packet"
+ desc = "Contains 5u of vanilla flavored protein powder. Mix with 25u of water and enjoy."
+ icon_state = "protein_powder2"
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/vanilla/Initialize()
+ . = ..()
+ reagents.add_reagent("vanilla_protein_powder", 5)
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/banana
+ name = "banana protein powder packet"
+ desc = "Contains 5u of banana flavored protein powder. Mix with 25u of water and enjoy."
+ icon_state = "protein_powder3"
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/banana/Initialize()
+ . = ..()
+ reagents.add_reagent("banana_protein_powder", 5)
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/chocolate
+ name = "chocolate protein powder packet"
+ desc = "Contains 5u of chocolate flavored protein powder. Mix with 25u of water and enjoy."
+ icon_state = "protein_powder4"
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/chocolate/Initialize()
+ . = ..()
+ reagents.add_reagent("chocolate_protein_powder", 5)
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/strawberry
+ name = "strawberry protein powder packet"
+ desc = "Contains 5u of strawberry flavored protein powder. Mix with 25u of water and enjoy."
+ icon_state = "protein_powder5"
+
+/obj/item/weapon/reagent_containers/food/condiment/small/packet/protein_powder/strawberry/Initialize()
+ . = ..()
+ reagents.add_reagent("strawberry_protein_powder", 5)
\ No newline at end of file
diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm
index 7dd6269339..14004df83f 100644
--- a/code/modules/food/food/snacks.dm
+++ b/code/modules/food/food/snacks.dm
@@ -4784,8 +4784,8 @@
var/composition_reagent
var/composition_reagent_quantity
-/mob/living/simple_mob/adultslime
- composition_reagent = "slimejelly"
+///mob/living/simple_mob/adultslime //The literal only thing in the game that uses this is commented out, so I comment out this too
+// composition_reagent = "slimejelly"
/mob/living/carbon/alien/diona
composition_reagent = "nutriment"//Dionae are plants, so eating them doesn't give animal protein
diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm
index 654f84f35f..fef02ea172 100644
--- a/code/modules/lighting/lighting_fake_sun_vr.dm
+++ b/code/modules/lighting/lighting_fake_sun_vr.dm
@@ -5,6 +5,9 @@
icon_state = "fakesun"
invisibility = INVISIBILITY_ABSTRACT
var/atom/movable/sun_visuals/sun
+ var/family = null //Allows multipe maps that are THEORETICALLY connected to use the same settings when not in a connected Z stack
+ var/shared_settings //Automatically set if using the family var
+ var/static/world_suns = list() //List of all the fake_suns in the world, used for checking for family members
var/list/possible_light_setups = list(
list(
@@ -78,13 +81,26 @@
)
+/obj/effect/fake_sun/New(loc, ...)
+ . = ..()
+ world_suns += src
+
/obj/effect/fake_sun/Initialize()
..()
return INITIALIZE_HINT_LATELOAD
/obj/effect/fake_sun/LateInitialize()
. = ..()
- var/list/choice = pick(possible_light_setups)
+ var/list/choice
+ if(family) //Allows one to make multiple fake_suns to use the same settings
+ for(var/obj/effect/fake_sun/l in world_suns) //check all the suns that exist
+ if(l.family == family && l.shared_settings) //do you have settings we need?
+ choice = l.shared_settings
+ break
+ if(!choice) //We didn't get anything from our family, let's pick something
+ choice = pick(possible_light_setups)
+ if(family) //Let's pass our settings on to our family
+ shared_settings = choice
if(choice["brightness"] <= LIGHTING_SOFT_THRESHOLD) // dark!
return
diff --git a/code/modules/mining/ore_redemption_machine/survey_vendor.dm b/code/modules/mining/ore_redemption_machine/survey_vendor.dm
index 2d1fe1b5e3..95aa2717c8 100644
--- a/code/modules/mining/ore_redemption_machine/survey_vendor.dm
+++ b/code/modules/mining/ore_redemption_machine/survey_vendor.dm
@@ -54,10 +54,10 @@
EQUIPMENT("Defense Equipment - Plasteel Machete", /obj/item/weapon/material/knife/machete, 50),
EQUIPMENT("Defense Equipment - Razor Drone Deployer", /obj/item/weapon/grenade/spawnergrenade/manhacks/station/locked, 100),
EQUIPMENT("Defense Equipment - Sentry Drone Deployer", /obj/item/weapon/grenade/spawnergrenade/ward, 150),
- EQUIPMENT("Defense Equipment - Marksman Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/rifle, 1500), //CHOMPADD
- EQUIPMENT("Defense Equipment - Frontier Carbine", /obj/item/weapon/gun/energy/locked/frontier/carbine, 1500), //CHOMPEDIT
- EQUIPMENT("Defense Equipment - Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier, 1200), //CHOMPADD
- EQUIPMENT("Defense Equipment - Holdout Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/holdout, 700), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Marksman Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/rifle, 800), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Frontier Carbine", /obj/item/weapon/gun/energy/locked/frontier/carbine, 800), //CHOMPEDIT
+ EQUIPMENT("Defense Equipment - Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier, 600), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Holdout Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/holdout, 300), //CHOMPADD
EQUIPMENT("Hybrid Equipment - Proto-Kinetic Dagger", /obj/item/weapon/kinetic_crusher/machete/dagger, 75),
EQUIPMENT("Hybrid Equipment - Proto-Kinetic Machete", /obj/item/weapon/kinetic_crusher/machete, 250),
EQUIPMENT("Fishing Net", /obj/item/weapon/material/fishing_net, 50),
diff --git a/code/modules/mob/living/bot/medbot.dm b/code/modules/mob/living/bot/medbot.dm
index 1b4b7c9d10..9972c124ac 100644
--- a/code/modules/mob/living/bot/medbot.dm
+++ b/code/modules/mob/living/bot/medbot.dm
@@ -197,7 +197,7 @@
icon_state = "medibot[on]"
/mob/living/bot/medbot/attack_hand(mob/living/carbon/human/H)
- if(H.a_intent == I_DISARM && !is_tipped)
+ if(istype(H) && H.a_intent == I_DISARM && !is_tipped)
H.visible_message("[H] begins tipping over [src].", "You begin tipping over [src]...")
if(world.time > last_tipping_action_voice + 15 SECONDS)
@@ -210,7 +210,7 @@
if(do_after(H, 3 SECONDS, target=src))
tip_over(H)
- else if(H.a_intent == I_HELP && is_tipped)
+ else if(istype(H) && H.a_intent == I_HELP && is_tipped)
H.visible_message("[H] begins righting [src].", "You begin righting [src]...")
if(do_after(H, 3 SECONDS, target=src))
set_right(H)
diff --git a/code/modules/mob/living/carbon/human/gradient.dm b/code/modules/mob/living/carbon/human/gradient.dm
index d7513f38f8..cd3b670e75 100644
--- a/code/modules/mob/living/carbon/human/gradient.dm
+++ b/code/modules/mob/living/carbon/human/gradient.dm
@@ -10,5 +10,7 @@ GLOBAL_LIST_INIT(hair_gradients, list(
"Reflected (Inverted)" = "reflected_inverse",
"Reflected High" = "reflected_high",
"Reflected High (Inverted)" = "reflected_inverse_high",
- "Wavy" = "wavy"
- ))
\ No newline at end of file
+ "Wavy" = "wavy",
+ "Striped" = "striped",
+ "Striped (Vertical)" = "striped_vertical"
+ ))
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/dark_portal_ch.dm b/code/modules/mob/living/carbon/human/species/shadekin/dark_portal_ch.dm
index 21327e0029..66411c42f7 100644
--- a/code/modules/mob/living/carbon/human/species/shadekin/dark_portal_ch.dm
+++ b/code/modules/mob/living/carbon/human/species/shadekin/dark_portal_ch.dm
@@ -84,6 +84,10 @@ GLOBAL_LIST_BOILERPLATE(all_darkportal_hubs, /obj/structure/dark_portal/hub)
locked = src
locked_name = src.name
+/obj/structure/dark_portal/hub/New()
+ ..()
+ set_light(2, 3, "#ffffff")
+
/obj/structure/dark_portal/hub/close_portal()
locked = src
locked_name = src.name
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm
index ea12ea9e02..1e7044bf2a 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm
@@ -261,6 +261,7 @@
a climbable wall. To climbe like so, use the verb 'Climb Down Wall' in IC tab!"
cost = 0
custom_only = FALSE
+ var_changes = list("can_climb" = TRUE)
allowed_species = list(SPECIES_XENOCHIMERA, SPECIES_CUSTOM) //So that we avoid needless bloat for xenochim
excludes = list(/datum/trait/positive/wall_climber_pro, /datum/trait/positive/wall_climber)
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index ae53d7535c..75d18bc140 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -1040,6 +1040,8 @@
var/desired_scale_y = size_multiplier * icon_scale_y //VOREStation edit
// Now for the regular stuff.
+ if(offset_override) //CHOMPEdit
+ center_offset = 0 //CHOMPEdit
var/matrix/M = matrix()
M.Scale(desired_scale_x, desired_scale_y)
M.Translate(center_offset * desired_scale_x, (vis_height/2)*(desired_scale_y-1)) //CHOMPEdit
diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm
index 5167d5becd..4bbe565801 100644
--- a/code/modules/mob/living/silicon/pai/pai.dm
+++ b/code/modules/mob/living/silicon/pai/pai.dm
@@ -36,6 +36,10 @@
"Parrot" = "pai-parrot",
"Rabbit" = "pai-rabbit",
//VOREStation Addition Start
+ "Dire wolf" = "pai-diredog",
+ "Horse (Lune)" = "pai-horse_lune",
+ "Horse (Soleil)" = "pai-horse_soleil",
+ "Dragon" = "pai-pdragon",
"Bear" = "pai-bear",
"Fennec" = "pai-fen",
"Type Zero" = "pai-typezero",
diff --git a/code/modules/mob/living/silicon/pai/pai_vr.dm b/code/modules/mob/living/silicon/pai/pai_vr.dm
index 512fbb167e..0cd9a8fb27 100644
--- a/code/modules/mob/living/silicon/pai/pai_vr.dm
+++ b/code/modules/mob/living/silicon/pai/pai_vr.dm
@@ -47,7 +47,11 @@
"car",
"typeone",
"13",
- "pai-raptor"
+ "pai-raptor",
+ "pai-diredog",
+ "pai-horse_lune",
+ "pai-horse_soleil",
+ "pai-pdragon"
)
//These vars keep track of whether you have the related software, used for easily updating the UI
var/soft_ut = FALSE //universal translator
diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm
index 862993b884..926fb2698f 100644
--- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm
+++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm
@@ -22,7 +22,7 @@
/obj/item/weapon/circuitboard,
/obj/item/weapon/smes_coil,
/obj/item/weapon/fuel_assembly,
- /obj/item/weapon/ore/bluespace_crystal
+ /obj/item/weapon/bluespace_crystal //Chomp EDIT
) // CHOMPEdit - Buffing the gripper to allow bluespace crystal use for telesci building.
var/obj/item/wrapped = null // Item currently being held.
diff --git a/code/modules/mob/living/simple_mob/sd_pets.dm b/code/modules/mob/living/simple_mob/sd_pets.dm
index 87a0216b8f..119bb2c23d 100644
--- a/code/modules/mob/living/simple_mob/sd_pets.dm
+++ b/code/modules/mob/living/simple_mob/sd_pets.dm
@@ -104,7 +104,7 @@
value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship
-/mob/living/simple_mob/otie/red/chubby/cocoa
+/mob/living/simple_mob/vore/otie/red/chubby/cocoa
name = "Cocoa"
desc = "A good boi, eats the scraps when you're not looking."
devourable = 0
@@ -113,9 +113,9 @@
mob_bump_flag = 32
ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/otie/cocoa
catalogue_data = list(/datum/category_item/catalogue/fauna/otie/cocoa)
-
+
/datum/ai_holder/simple_mob/melee/evasive/otie/cocoa
hostile = 0
retaliate = 0
- violent_breakthrough = 0
\ No newline at end of file
+ violent_breakthrough = 0
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm
index 95a6eea482..7a22edf533 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm
@@ -5,7 +5,7 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have?
name = "chicken"
desc = "Hopefully the eggs are good this season."
tt_desc = "E Gallus gallus"
- icon_state = "chicken"
+ icon_state = "chicken_white"
icon_living = "chicken"
icon_dead = "chicken_dead"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm b/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm
index b4a63adb93..f6db5841c4 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/otie/zorgoia //Yes im basing the goias on oties for now, sue me....please dont sue me - Jack
+/mob/living/simple_mob/vore/otie/zorgoia //Yes im basing the goias on oties for now, sue me....please dont sue me - Jack
name = "zorgoia"
desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky!"
tt_desc = "Zorgoyuh slinkus"
@@ -33,7 +33,7 @@
pain_emote_1p = list("yelp", "whine", "bark", "growl")
pain_emote_3p = list("yelps", "whines", "barks", "growls")
-/mob/living/simple_mob/otie/zorgoia/New()
+/mob/living/simple_mob/vore/otie/zorgoia/New()
..()
switch(rand(9))
if(0)
@@ -57,7 +57,7 @@
if(9)
color = "#393939"
-/mob/living/simple_mob/otie/zorgoia/feral //gets the pet2tame feature. starts out hostile tho so get gamblin'
+/mob/living/simple_mob/vore/otie/zorgoia/feral //gets the pet2tame feature. starts out hostile tho so get gamblin'
name = "agressive zorgoia"
desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky! This one seems quite hungry and in a bad mood!"
faction = "virgo3b"
@@ -71,7 +71,7 @@
min_n2 = 0
max_n2 = 0
-/mob/living/simple_mob/otie/zorgoia/friendly //gets the pet2tame feature and doesn't kill you right away
+/mob/living/simple_mob/vore/otie/zorgoia/friendly //gets the pet2tame feature and doesn't kill you right away
name = "friendly zorgoia"
desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky! This one seems harmless and friendly!"
faction = "neutral"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm
index 0715a62d0c..1c364a0a54 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/animal/space/jelly
+/mob/living/simple_mob/vore/jelly
name = "jelly blob"
desc = "Some sort of undulating blob of slime!"
@@ -19,8 +19,17 @@
can_be_drop_prey = FALSE //CHOMP Add
+ min_oxy = 0
+ max_oxy = 0
+ min_tox = 0
+ max_tox = 0
+ min_co2 = 0
+ max_co2 = 0
+ min_n2 = 0
+ max_n2 = 0
+ minbodytemp = 0
+
// Activate Noms!
-/mob/living/simple_mob/animal/space/jelly
vore_active = 1
vore_pounce_chance = 0
vore_icons = SA_ICON_LIVING
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm
index 92a8a46306..62c53af4d6 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big
+/mob/living/simple_mob/clowns/big
tt_desc = "E Homo sapiens corydon horrificus" //this clown is stronk
faction = "clown"
@@ -18,8 +18,6 @@
loot_list = list(/obj/item/weapon/bikehorn = 100)
-
-/mob/living/simple_mob/mobs_monsters/clowns/big
min_oxy = 0
max_oxy = 500
min_tox = 0
@@ -41,4 +39,4 @@
can_flee = FALSE
speak_chance = 3
wander = TRUE
- base_wander_delay = 9
\ No newline at end of file
+ base_wander_delay = 9
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm
index 9e0130f2aa..78dd49c4ab 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/
+/mob/living/simple_mob/clowns/
tt_desc = "E Homo sapiens corydon" //this is a clown
faction = "clown"
movement_sound = 'sound/effects/clownstep2.ogg'
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm
index 7602016b9e..6232d96d00 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big/normal
+/mob/living/simple_mob/clowns/big/normal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
@@ -10,7 +10,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/honkmunculus
+/mob/living/simple_mob/clowns/big/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -28,7 +28,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/cluwne
+/mob/living/simple_mob/clowns/big/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -40,7 +40,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/tunnelclown
+/mob/living/simple_mob/clowns/big/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -52,7 +52,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/sentinel
+/mob/living/simple_mob/clowns/big/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -64,7 +64,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/punished
+/mob/living/simple_mob/clowns/big/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -82,7 +82,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/thicc
+/mob/living/simple_mob/clowns/big/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -100,7 +100,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/perm
+/mob/living/simple_mob/clowns/big/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -118,7 +118,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/wide
+/mob/living/simple_mob/clowns/big/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -136,7 +136,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/thin
+/mob/living/simple_mob/clowns/big/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -148,7 +148,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/hulk
+/mob/living/simple_mob/clowns/big/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -168,7 +168,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/longface
+/mob/living/simple_mob/clowns/big/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -186,7 +186,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/giggles
+/mob/living/simple_mob/clowns/big/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -198,7 +198,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/destroyer
+/mob/living/simple_mob/clowns/big/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -239,7 +239,7 @@
)
-/mob/living/simple_mob/mobs_monsters/clowns/big/chlown
+/mob/living/simple_mob/clowns/big/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -257,7 +257,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/scary
+/mob/living/simple_mob/clowns/big/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -269,7 +269,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/flesh
+/mob/living/simple_mob/clowns/big/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -281,7 +281,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/clowns
+/mob/living/simple_mob/clowns/big/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -299,7 +299,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/mutant
+/mob/living/simple_mob/clowns/big/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -317,7 +317,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/blob
+/mob/living/simple_mob/clowns/big/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -335,7 +335,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/mayor
+/mob/living/simple_mob/clowns/big/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -353,7 +353,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/honkling
+/mob/living/simple_mob/clowns/big/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -367,7 +367,7 @@
//template
-///mob/living/simple_mob/mobs_monsters/clowns/big/
+///mob/living/simple_mob/clowns/big/
// name = "A Clown?"
// desc = "Oh sweet space christ."
// tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm
index 8a51b77018..6ecc2b5bb7 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm
@@ -1,7 +1,7 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift
+/mob/living/simple_mob/clowns/big/c_shift
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
faction = "clown"
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/New()
+/mob/living/simple_mob/clowns/big/c_shift/New()
..()
- verbs += /mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift
\ No newline at end of file
+ verbs += /mob/living/simple_mob/clowns/big/c_shift/proc/phase_shift
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm
index 21b201bb37..6c0311ec0a 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/anormal
+/mob/living/simple_mob/clowns/big/c_shift/anormal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
@@ -10,7 +10,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkmunculus
+/mob/living/simple_mob/clowns/big/c_shift/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -28,7 +28,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/cluwne
+/mob/living/simple_mob/clowns/big/c_shift/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -40,7 +40,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/tunnelclown
+/mob/living/simple_mob/clowns/big/c_shift/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -52,7 +52,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/sentinel
+/mob/living/simple_mob/clowns/big/c_shift/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -64,7 +64,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/punished
+/mob/living/simple_mob/clowns/big/c_shift/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -82,7 +82,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thicc
+/mob/living/simple_mob/clowns/big/c_shift/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -100,7 +100,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/perm
+/mob/living/simple_mob/clowns/big/c_shift/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -118,7 +118,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/wide
+/mob/living/simple_mob/clowns/big/c_shift/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -136,7 +136,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thin
+/mob/living/simple_mob/clowns/big/c_shift/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -148,7 +148,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/hulk
+/mob/living/simple_mob/clowns/big/c_shift/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -168,7 +168,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/longface
+/mob/living/simple_mob/clowns/big/c_shift/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -186,7 +186,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/giggles
+/mob/living/simple_mob/clowns/big/c_shift/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -198,7 +198,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/destroyer
+/mob/living/simple_mob/clowns/big/c_shift/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -239,7 +239,7 @@
)
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/chlown
+/mob/living/simple_mob/clowns/big/c_shift/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -257,7 +257,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/scary
+/mob/living/simple_mob/clowns/big/c_shift/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -269,7 +269,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/flesh
+/mob/living/simple_mob/clowns/big/c_shift/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -281,7 +281,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/clowns
+/mob/living/simple_mob/clowns/big/c_shift/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -299,7 +299,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mutant
+/mob/living/simple_mob/clowns/big/c_shift/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -317,7 +317,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/blob
+/mob/living/simple_mob/clowns/big/c_shift/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -335,7 +335,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mayor
+/mob/living/simple_mob/clowns/big/c_shift/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -353,7 +353,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkling
+/mob/living/simple_mob/clowns/big/c_shift/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm
index bf56fd4e0e..a576a3e39e 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm
@@ -1,8 +1,8 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift
+/mob/living/simple_mob/clowns/big/c_shift
var/ability_flags = 0 //Flags for active abilities
// Phase shifting procs (and related procs)
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift()
+/mob/living/simple_mob/clowns/big/c_shift/proc/phase_shift()
var/turf/T = get_turf(src)
if(!T.CanPass(src,T) || loc != T)
to_chat(src,"You can't use that here!")
@@ -73,23 +73,23 @@
density = FALSE
force_max_speed = TRUE
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/UnarmedAttack()
+/mob/living/simple_mob/clowns/big/c_shift/UnarmedAttack()
if(ability_flags & AB_PHASE_SHIFTED)
return FALSE //Nope.
. = ..()
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/can_fall()
+/mob/living/simple_mob/clowns/big/c_shift/can_fall()
if(ability_flags & AB_PHASE_SHIFTED)
return FALSE //Nope!
return ..()
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/zMove(direction)
+/mob/living/simple_mob/clowns/big/c_shift/zMove(direction)
if(ability_flags & AB_PHASE_SHIFTED)
var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src)
if(destination)
forceMove(destination)
return TRUE
- return ..()
\ No newline at end of file
+ return ..()
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm
index f92a9a07e6..42d553b8f1 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm
@@ -17,7 +17,7 @@
/obj/structure/ghost_pod/manual/clegg/create_occupant(var/mob/M)
lightning_strike(get_turf(src), cosmetic = TRUE)
- var/list/choices = list(/mob/living/simple_mob/mobs_monsters/clowns/normal, /mob/living/simple_mob/mobs_monsters/clowns/honkling, /mob/living/simple_mob/mobs_monsters/clowns/mayor, /mob/living/simple_mob/mobs_monsters/clowns/blob, /mob/living/simple_mob/mobs_monsters/clowns/mutant, /mob/living/simple_mob/mobs_monsters/clowns/clowns, /mob/living/simple_mob/mobs_monsters/clowns/flesh, /mob/living/simple_mob/mobs_monsters/clowns/scary, /mob/living/simple_mob/mobs_monsters/clowns/chlown, /mob/living/simple_mob/mobs_monsters/clowns/destroyer, /mob/living/simple_mob/mobs_monsters/clowns/giggles, /mob/living/simple_mob/mobs_monsters/clowns/longface, /mob/living/simple_mob/mobs_monsters/clowns/hulk, /mob/living/simple_mob/mobs_monsters/clowns/thin, /mob/living/simple_mob/mobs_monsters/clowns/wide, /mob/living/simple_mob/mobs_monsters/clowns/perm, /mob/living/simple_mob/mobs_monsters/clowns/thicc, /mob/living/simple_mob/mobs_monsters/clowns/punished, /mob/living/simple_mob/mobs_monsters/clowns/sentinel, /mob/living/simple_mob/mobs_monsters/clowns/tunnelclown, /mob/living/simple_mob/mobs_monsters/clowns/cluwne, /mob/living/simple_mob/mobs_monsters/clowns/honkmunculus)
+ var/list/choices = list(/mob/living/simple_mob/clowns/normal, /mob/living/simple_mob/clowns/honkling, /mob/living/simple_mob/clowns/mayor, /mob/living/simple_mob/clowns/blob, /mob/living/simple_mob/clowns/mutant, /mob/living/simple_mob/clowns/clowns, /mob/living/simple_mob/clowns/flesh, /mob/living/simple_mob/clowns/scary, /mob/living/simple_mob/clowns/chlown, /mob/living/simple_mob/clowns/destroyer, /mob/living/simple_mob/clowns/giggles, /mob/living/simple_mob/clowns/longface, /mob/living/simple_mob/clowns/hulk, /mob/living/simple_mob/clowns/thin, /mob/living/simple_mob/clowns/wide, /mob/living/simple_mob/clowns/perm, /mob/living/simple_mob/clowns/thicc, /mob/living/simple_mob/clowns/punished, /mob/living/simple_mob/clowns/sentinel, /mob/living/simple_mob/clowns/tunnelclown, /mob/living/simple_mob/clowns/cluwne, /mob/living/simple_mob/clowns/honkmunculus)
var/chosen_clown = tgui_input_list(M, "Redspace clowns like themes, what's yours?", "Theme Choice", choices)
density = FALSE
var/mob/living/simple_mob/R = new chosen_clown(get_turf(src))
@@ -27,4 +27,4 @@
R.ckey = M.ckey
visible_message("With a bright flash of light, \the [src] disappears, and in its place you see a... Clown?")
log_and_message_admins("successfully touched \a [src] and summoned a mistake!")
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm
index 00dab095de..66807e24a2 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental
+/mob/living/simple_mob/clowns/big/c_shift/honkelemental
name = "Honk Elemental"
desc = "That thing can't be real, right?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -23,7 +23,7 @@
speak = list("HONK", "Honk!", "Henk!")
emote_see = list("honks")
-/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental/verb/spawn_egg()
+/mob/living/simple_mob/clowns/big/c_shift/honkelemental/verb/spawn_egg()
set category = "Abilities"
set name = "Spawn Clown Egg"
set desc = "Spawns an egg that a player can touch, which will call on ghosts to spawn as clowns."
@@ -32,4 +32,4 @@
return
new /obj/structure/ghost_pod/manual/clegg(get_turf(src))
- flick("he_lay",src)
\ No newline at end of file
+ flick("he_lay",src)
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm
index d32af4a5ab..0db552feba 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm
@@ -1,4 +1,4 @@
-/mob/living/simple_mob/mobs_monsters/clowns/
+/mob/living/simple_mob/clowns/
response_help = "pokes"
response_disarm = "gently pushes aside"
response_harm = "hits"
@@ -13,7 +13,7 @@
-/mob/living/simple_mob/mobs_monsters/clowns/honkmunculus
+/mob/living/simple_mob/clowns/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -31,7 +31,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/cluwne
+/mob/living/simple_mob/clowns/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -43,7 +43,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/tunnelclown
+/mob/living/simple_mob/clowns/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -55,7 +55,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/sentinel
+/mob/living/simple_mob/clowns/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -68,7 +68,7 @@
-/mob/living/simple_mob/mobs_monsters/clowns/punished
+/mob/living/simple_mob/clowns/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -86,7 +86,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/thicc
+/mob/living/simple_mob/clowns/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -104,7 +104,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/perm
+/mob/living/simple_mob/clowns/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -122,7 +122,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/wide
+/mob/living/simple_mob/clowns/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -140,7 +140,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/thin
+/mob/living/simple_mob/clowns/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -152,7 +152,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/hulk
+/mob/living/simple_mob/clowns/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -170,7 +170,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/longface
+/mob/living/simple_mob/clowns/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -188,7 +188,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/giggles
+/mob/living/simple_mob/clowns/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -200,7 +200,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/destroyer
+/mob/living/simple_mob/clowns/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -218,7 +218,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/chlown
+/mob/living/simple_mob/clowns/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -236,7 +236,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/scary
+/mob/living/simple_mob/clowns/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -248,7 +248,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/flesh
+/mob/living/simple_mob/clowns/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -260,7 +260,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/clowns
+/mob/living/simple_mob/clowns/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -278,7 +278,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/mutant
+/mob/living/simple_mob/clowns/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -296,7 +296,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/blob
+/mob/living/simple_mob/clowns/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -314,7 +314,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/mayor
+/mob/living/simple_mob/clowns/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -332,7 +332,7 @@
pixel_y = 0
-/mob/living/simple_mob/mobs_monsters/clowns/honkling
+/mob/living/simple_mob/clowns/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
@@ -344,7 +344,7 @@
vis_height = 32
-/mob/living/simple_mob/mobs_monsters/clowns/normal
+/mob/living/simple_mob/clowns/normal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
@@ -361,4 +361,4 @@
response_help = "pokes"
response_disarm = "gently pushes aside"
- response_harm = "hits"
\ No newline at end of file
+ response_harm = "hits"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm
index 7308bf7f8c..83f001f04a 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm
@@ -1,6 +1,6 @@
#define MORPH_COOLDOWN 50
-/mob/living/simple_mob/vore/hostile/morph
+/mob/living/simple_mob/vore/morph
name = "morph"
real_name = "morph"
desc = "A revolting, pulsating pile of flesh."
@@ -58,25 +58,25 @@
var/static/list/blacklist_typecache = typecacheof(list(
/obj/screen,
/obj/singularity,
- /mob/living/simple_mob/vore/hostile/morph,
+ /mob/living/simple_mob/vore/morph,
/obj/effect))
-/mob/living/simple_mob/vore/hostile/morph/Initialize()
+/mob/living/simple_mob/vore/morph/Initialize()
verbs += /mob/living/proc/ventcrawl
- verbs += /mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey
- if(!istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey))
- verbs += /mob/living/simple_mob/vore/hostile/morph/proc/morph_color
+ verbs += /mob/living/simple_mob/vore/morph/proc/take_over_prey
+ if(!istype(src, /mob/living/simple_mob/vore/morph/dominated_prey))
+ verbs += /mob/living/simple_mob/vore/morph/proc/morph_color
return ..()
-/mob/living/simple_mob/vore/hostile/morph/Destroy()
+/mob/living/simple_mob/vore/morph/Destroy()
form = null
return ..()
-/mob/living/simple_mob/vore/hostile/morph/proc/allowed(atom/movable/A)
+/mob/living/simple_mob/vore/morph/proc/allowed(atom/movable/A)
return !is_type_in_typecache(A, blacklist_typecache) && (isobj(A) || ismob(A))
-/mob/living/simple_mob/vore/hostile/morph/examine(mob/user)
+/mob/living/simple_mob/vore/morph/examine(mob/user)
if(morphed)
. = form.examine(user)
if(get_dist(user, src) <= 3 && !resting)
@@ -84,7 +84,7 @@
else
. = ..()
-/mob/living/simple_mob/vore/hostile/morph/ShiftClickOn(atom/movable/A)
+/mob/living/simple_mob/vore/morph/ShiftClickOn(atom/movable/A)
if(Adjacent(A))
if(morph_time <= world.time && !stat)
if(A == src)
@@ -97,7 +97,7 @@
else
..()
-/mob/living/simple_mob/vore/hostile/morph/proc/assume(atom/movable/target)
+/mob/living/simple_mob/vore/morph/proc/assume(atom/movable/target)
var/mob/living/carbon/human/humantarget = target
if(istype(humantarget) && humantarget.resleeve_lock && ckey != humantarget.resleeve_lock)
to_chat(src, "[target] cannot be impersonated!")
@@ -142,7 +142,7 @@
return
-/mob/living/simple_mob/vore/hostile/morph/proc/restore(var/silent = FALSE)
+/mob/living/simple_mob/vore/morph/proc/restore(var/silent = FALSE)
if(!morphed)
to_chat(src, "You're already in your normal form!")
return
@@ -187,21 +187,21 @@
morph_time = world.time + MORPH_COOLDOWN
-/mob/living/simple_mob/vore/hostile/morph/death(gibbed)
+/mob/living/simple_mob/vore/morph/death(gibbed)
if(morphed)
visible_message("[src] twists and dissolves into a pile of flesh!")
restore(TRUE)
..()
-/mob/living/simple_mob/vore/hostile/morph/will_show_tooltip()
+/mob/living/simple_mob/vore/morph/will_show_tooltip()
return (!morphed)
-/mob/living/simple_mob/vore/hostile/morph/resize(var/new_size, var/animate = TRUE, var/uncapped = FALSE, var/ignore_prefs = FALSE, var/aura_animation = TRUE)
+/mob/living/simple_mob/vore/morph/resize(var/new_size, var/animate = TRUE, var/uncapped = FALSE, var/ignore_prefs = FALSE, var/aura_animation = TRUE)
if(morphed && !ismob(form))
return
return ..()
-/mob/living/simple_mob/vore/hostile/morph/lay_down()
+/mob/living/simple_mob/vore/morph/lay_down()
if(morphed)
var/temp_state = icon_state
..()
@@ -225,18 +225,18 @@
else
..()
-/mob/living/simple_mob/vore/hostile/morph/update_icon()
+/mob/living/simple_mob/vore/morph/update_icon()
if(morphed)
return
return ..()
-/mob/living/simple_mob/vore/hostile/morph/update_icons()
+/mob/living/simple_mob/vore/morph/update_icons()
if(morphed)
return
return ..()
-/mob/living/simple_mob/vore/hostile/morph/update_transform()
+/mob/living/simple_mob/vore/morph/update_transform()
if(morphed)
var/matrix/M = matrix()
M.Scale(icon_scale_x, icon_scale_y)
@@ -245,7 +245,7 @@
else
..()
-/mob/living/simple_mob/vore/hostile/morph/proc/morph_color()
+/mob/living/simple_mob/vore/morph/proc/morph_color()
set name = "Pick Color"
set category = "Abilities"
set desc = "You can set your color!"
@@ -255,7 +255,7 @@
chosen_color = newcolor
-/mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey()
+/mob/living/simple_mob/vore/morph/proc/take_over_prey()
set name = "Take Over Prey"
set category = "Abilities"
set desc = "Take command of your prey's body."
@@ -302,23 +302,23 @@
stop_pulling()
original_ckey = ckey
log_and_message_admins("[key_name_admin(src)] has swapped bodies with [key_name_admin(M)] as a morph at [get_area(src)] - [COORD(src)].")
- new /mob/living/simple_mob/vore/hostile/morph/dominated_prey(M.vore_selected, M.ckey, src, M)
+ new /mob/living/simple_mob/vore/morph/dominated_prey(M.vore_selected, M.ckey, src, M)
else
to_chat(src, "\The [M] declined your request for control.")
else
to_chat(src, "\The [M] declined your request for control.")
-/mob/living/simple_mob/vore/hostile/morph/dominated_prey
+/mob/living/simple_mob/vore/morph/dominated_prey
name = "subservient node"
color = "#171717"
digestable = 0
devourable = 0
- var/mob/living/simple_mob/vore/hostile/morph/parent_morph
+ var/mob/living/simple_mob/vore/morph/parent_morph
var/mob/living/carbon/human/prey_body
var/prey_ckey
-/mob/living/simple_mob/vore/hostile/morph/dominated_prey/New(loc, pckey, parent, prey)
+/mob/living/simple_mob/vore/morph/dominated_prey/New(loc, pckey, parent, prey)
. = ..()
if(pckey)
prey_ckey = pckey
@@ -336,17 +336,17 @@
else
qdel(src)
-/mob/living/simple_mob/vore/hostile/morph/dominated_prey/death(gibbed)
+/mob/living/simple_mob/vore/morph/dominated_prey/death(gibbed)
. = ..()
undo_prey_takeover(FALSE)
-/mob/living/simple_mob/vore/hostile/morph/dominated_prey/Destroy()
+/mob/living/simple_mob/vore/morph/dominated_prey/Destroy()
. = ..()
parent_morph = null
prey_body = null
-/mob/living/simple_mob/vore/hostile/morph/dominated_prey/proc/undo_prey_takeover(ooc_escape)
+/mob/living/simple_mob/vore/morph/dominated_prey/proc/undo_prey_takeover(ooc_escape)
if(buckled)
buckled.unbuckle_mob()
if(prey_body.buckled)
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
index ba3a14bccd..2ddc698837 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
@@ -6,7 +6,7 @@
**the catalogue entry ends here.**"
value = CATALOGUER_REWARD_MEDIUM
-/mob/living/simple_mob/otie //Spawn this one only if you're looking for a bad time. Not friendly.
+/mob/living/simple_mob/vore/otie //Spawn this one only if you're looking for a bad time. Not friendly.
name = "otie"
desc = "The classic bioengineered longdog."
tt_desc = "Otus robustus"
@@ -57,7 +57,7 @@
// Activate Noms!
-/mob/living/simple_mob/otie
+/mob/living/simple_mob/vore/otie
vore_active = 1
vore_capacity = 1
vore_pounce_chance = 20
@@ -68,7 +68,7 @@
vore_default_contamination_color = "black"
vore_default_item_mode = IM_DIGEST
-/mob/living/simple_mob/otie/feral //gets the pet2tame feature. starts out hostile tho so get gamblin'
+/mob/living/simple_mob/vore/otie/feral //gets the pet2tame feature. starts out hostile tho so get gamblin'
name = "mutated feral otie"
desc = "The classic bioengineered longdog. No pets. Only bite. This one seems to have developed a mutation from an abnormally phoron-rich diet." //CHOMPedit
tt_desc = "Otus phoronis"
@@ -89,14 +89,14 @@
max_n2 = 0
has_eye_glow = TRUE
-/mob/living/simple_mob/otie/feral/chubby
+/mob/living/simple_mob/vore/otie/feral/chubby
name = "chubby mutated feral otie"
desc = "The classic bioengineered longdog. No pets. Only bite. This one seems to have developed a mutation from an abnormally phoron-rich diet. What an absolute unit." //CHOMPedit
icon_state = "photiec"
icon_living = "photiec"
icon_rest = "photiec_rest"
-/mob/living/simple_mob/otie/red
+/mob/living/simple_mob/vore/otie/red
name = "feral red otie"
desc = "Seems this ominous looking longdog has been infused with wicked infernal forces."
tt_desc = "Otus infernalis"
@@ -118,13 +118,13 @@
maxbodytemp = 1000
has_eye_glow = TRUE
-/mob/living/simple_mob/otie/red/friendly //gets the pet2tame feature and doesn't kill you right away
+/mob/living/simple_mob/vore/otie/red/friendly //gets the pet2tame feature and doesn't kill you right away
name = "red otie"
desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. This one seems rather peaceful though."
faction = "neutral"
tamed = 1
-/mob/living/simple_mob/otie/red/chubby //gets the pet2tame feature and doesn't kill you right away
+/mob/living/simple_mob/vore/otie/red/chubby //gets the pet2tame feature and doesn't kill you right away
name = "chubby red otie"
desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit."
icon_state = "hotiec"
@@ -133,20 +133,20 @@
faction = "neutral"
tamed = 1
-/mob/living/simple_mob/otie/friendly //gets the pet2tame feature and doesn't kill you right away
+/mob/living/simple_mob/vore/otie/friendly //gets the pet2tame feature and doesn't kill you right away
name = "otie"
desc = "The classic bioengineered longdog. This one might even tolerate you!"
faction = "neutral"
tamed = 1
-/mob/living/simple_mob/otie/friendly/chubby
+/mob/living/simple_mob/vore/otie/friendly/chubby
name = "chubby otie"
desc = "The classic bioengineered longdog. This one might even tolerate you! What an absolute unit"
icon_state = "fotie"
icon_living = "fotie"
icon_rest = "fotie_rest"
-/mob/living/simple_mob/otie/cotie //same as above but has a little collar :v
+/mob/living/simple_mob/vore/otie/cotie //same as above but has a little collar :v
name = "tamed otie"
desc = "The classic bioengineered longdog. This one has a nice little collar on its neck. However a proper domesticated otie is an oxymoron and the collar is likely just a decoration."
icon_state = "cotie"
@@ -155,14 +155,14 @@
faction = "neutral"
tamed = 1
-/mob/living/simple_mob/otie/cotie/chubby
+/mob/living/simple_mob/vore/otie/cotie/chubby
name = "chubby tamed otie"
desc = "The classic bioengineered longdog. This one has a nice little collar on its neck. What an absolute unit."
icon_state = "fcotie"
icon_living = "fcotie"
icon_rest = "fcotie_rest"
-/mob/living/simple_mob/otie/cotie/phoron //friendly phoron pup with collar
+/mob/living/simple_mob/vore/otie/cotie/phoron //friendly phoron pup with collar
name = "mutated otie"
desc = "Looks like someone did manage to domesticate one of those wild phoron mutants. What a badass."
tt_desc = "Otus phoronis"
@@ -180,7 +180,7 @@
max_n2 = 0
has_eye_glow = TRUE
-/mob/living/simple_mob/otie/security //tame by default unless you're a marked crimester. can be befriended to follow with pets tho.
+/mob/living/simple_mob/vore/otie/security //tame by default unless you're a marked crimester. can be befriended to follow with pets tho.
name = "guard otie"
desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs."
icon_state = "sotie"
@@ -198,7 +198,7 @@
var/check_records = 0 // If true, arrests people without a record.
var/check_arrest = 1 // If true, arrests people who are set to arrest.
-/mob/living/simple_mob/otie/security/chubby
+/mob/living/simple_mob/vore/otie/security/chubby
name = "chubby guard otie"
desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs. What an absolute unit."
icon_state = "fsotie"
@@ -206,7 +206,7 @@
icon_rest = "fsotie_rest"
icon_dead = "fsotie-dead"
-/mob/living/simple_mob/otie/security/phoron
+/mob/living/simple_mob/vore/otie/security/phoron
name = "mutated guard otie"
desc = "An extra rare phoron resistant version of the VARMAcorp trained guard dogs adapted for hostile environments."
tt_desc = "Otus phoronis"
@@ -223,7 +223,7 @@
min_n2 = 0
max_n2 = 0
-/mob/living/simple_mob/otie/security/phoron/red
+/mob/living/simple_mob/vore/otie/security/phoron/red
name = "red guard otie"
desc = "An ominous looking version of the big mean VARMAcorp guard dogs."
tt_desc = "Otus infernalis"
@@ -233,20 +233,20 @@
icon_dead = "sechotie-dead"
maxbodytemp = 1000
-/mob/living/simple_mob/otie/security/phoron/red/chubby
+/mob/living/simple_mob/vore/otie/security/phoron/red/chubby
name = "chubby red guard otie"
desc = "An ominous looking version of the big mean VARMAcorp guard dogs. What an absolute unit."
icon_state = "hotiesc"
icon_living = "hotiesc"
icon_rest = "hotiesc_rest"
-/mob/living/simple_mob/otie/attackby(var/obj/item/O, var/mob/user) // Trade donuts for bellybrig victims.
+/mob/living/simple_mob/vore/otie/attackby(var/obj/item/O, var/mob/user) // Trade donuts for bellybrig victims.
if(istype(O, /obj/item/weapon/reagent_containers/food))
qdel(O)
playsound(src,'sound/items/eatfood.ogg', rand(10,50), 1)
if(!has_AI())//No autobarf on player control.
return
- if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/donut) && istype(src, /mob/living/simple_mob/otie/security))
+ if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/donut) && istype(src, /mob/living/simple_mob/vore/otie/security))
to_chat(user,"The guard pup accepts your offer for their catch.")
release_vore_contents()
else if(prob(2)) //Small chance to get prey out from non-sec oties.
@@ -255,7 +255,7 @@
return
. = ..()
-/mob/living/simple_mob/otie/security/feed_grabbed_to_self(var/mob/living/user, var/mob/living/prey) // Make the gut start out safe for bellybrigging.
+/mob/living/simple_mob/vore/otie/security/feed_grabbed_to_self(var/mob/living/user, var/mob/living/prey) // Make the gut start out safe for bellybrigging.
if(ishuman(prey))
vore_selected.digest_mode = DM_HOLD
if(check_threat(prey) >= 4)
@@ -264,12 +264,12 @@
vore_selected.digest_mode = DM_DIGEST
. = ..()
-/mob/living/simple_mob/otie/security/proc/check_threat(var/mob/living/M)
+/mob/living/simple_mob/vore/otie/security/proc/check_threat(var/mob/living/M)
if(!M || !ishuman(M) || M.stat == DEAD || src == M)
return 0
return M.assess_perp(0, 0, 0, check_records, check_arrest)
-/mob/living/simple_mob/otie/security/proc/target_name(mob/living/T)
+/mob/living/simple_mob/vore/otie/security/proc/target_name(mob/living/T)
if(ishuman(T))
var/mob/living/carbon/human/H = T
return H.get_id_name("unidentified person")
@@ -277,7 +277,7 @@
//Pet 4 friendly
-/mob/living/simple_mob/otie/attack_hand(mob/living/carbon/human/M as mob)
+/mob/living/simple_mob/vore/otie/attack_hand(mob/living/carbon/human/M as mob)
switch(M.a_intent)
if(I_HELP)
@@ -314,12 +314,12 @@
else
..()
-/mob/living/simple_mob/otie/death(gibbed, deathmessage = "dies!")
+/mob/living/simple_mob/vore/otie/death(gibbed, deathmessage = "dies!")
.=..()
resting = 0
icon_state = icon_dead
-/mob/living/simple_mob/otie/Login()
+/mob/living/simple_mob/vore/otie/Login()
. = ..()
if(!riding_datum)
riding_datum = new /datum/riding/simple_mob(src)
@@ -327,7 +327,7 @@
verbs |= /mob/living/proc/toggle_rider_reins
movement_cooldown = 0
-/mob/living/simple_mob/otie/MouseDrop_T(mob/living/M, mob/living/user)
+/mob/living/simple_mob/vore/otie/MouseDrop_T(mob/living/M, mob/living/user)
return
/datum/say_list/otie
@@ -339,7 +339,7 @@
/datum/ai_holder/simple_mob/melee/evasive/otie
-/datum/ai_holder/simple_mob/melee/evasive/otie/New(var/mob/living/simple_mob/otie/new_holder)
+/datum/ai_holder/simple_mob/melee/evasive/otie/New(var/mob/living/simple_mob/vore/otie/new_holder)
.=..()
if(new_holder.tamed)
hostile = FALSE
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
index d0f63a8730..428f68e113 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
@@ -5,7 +5,7 @@
love to nip and bite at things, as well as sniffing around. They seem to mark their territory by way of scent-marking/urinating on things."
value = CATALOGUER_REWARD_EASY
-/mob/living/simple_mob/animal/wolf
+/mob/living/simple_mob/vore/wolf
name = "grey wolf"
desc = "My, what big jaws it has!"
tt_desc = "Canis lupus"
@@ -42,7 +42,7 @@
// Activate Noms!
-/mob/living/simple_mob/animal/wolf
+/mob/living/simple_mob/vore/wolf
vore_active = 1
vore_icons = SA_ICON_LIVING
@@ -59,7 +59,7 @@
B.belly_fullscreen = "anim_belly" // CHOMPedit - Belly Fullscreen
// Space edition, stronger and bitier
-/mob/living/simple_mob/animal/wolf/space
+/mob/living/simple_mob/vore/wolf/space
name = "space wolf"
tt_desc = "Canis lupus aetherius"
@@ -83,10 +83,10 @@
minbodytemp = 0
maxbodytemp = 700
-/mob/living/simple_mob/animal/wolf/space/Process_Spacemove(var/check_drift = 0)
+/mob/living/simple_mob/vore/wolf/space/Process_Spacemove(var/check_drift = 0)
return TRUE
-/mob/living/simple_mob/animal/wolf/direwolf
+/mob/living/simple_mob/vore/wolf/direwolf
name = "dire wolf"
desc = "The biggest and baddest wolf around."
tt_desc = "Canis maxdirus"
@@ -116,7 +116,7 @@
buckle_lying = FALSE
vore_icons = SA_ICON_LIVING | SA_ICON_REST
-/mob/living/simple_mob/animal/wolf/direwolf/Login()
+/mob/living/simple_mob/vore/wolf/direwolf/Login()
. = ..()
if(!riding_datum)
riding_datum = new /datum/riding/simple_mob(src)
@@ -124,10 +124,10 @@
verbs |= /mob/living/proc/toggle_rider_reins
movement_cooldown = -1
-/mob/living/simple_mob/animal/wolf/direwolf/MouseDrop_T(mob/living/M, mob/living/user)
+/mob/living/simple_mob/vore/wolf/direwolf/MouseDrop_T(mob/living/M, mob/living/user)
return
-/mob/living/simple_mob/animal/wolf/direwolf/dog
+/mob/living/simple_mob/vore/wolf/direwolf/dog
name = "large dog"
desc = "The biggest and goodest dog around."
tt_desc = "Canis maxdirus familiaris"
@@ -136,7 +136,7 @@
icon_state = "diredog"
icon_rest = "diredog_rest"
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec
name = "large guard dog"
desc = "The biggest and goodest guard dog around."
icon_dead = "diredogs-dead"
@@ -144,7 +144,7 @@
icon_state = "diredogs"
icon_rest = "diredogs_rest"
-/mob/living/simple_mob/animal/wolf/direwolf/sec
+/mob/living/simple_mob/vore/wolf/direwolf/sec
name = "dire guard wolf"
desc = "The biggest and baddest guard wolf around."
icon_dead = "direwolfs-dead"
@@ -152,7 +152,7 @@
icon_state = "direwolfs"
icon_rest = "direwolfs_rest"
-/mob/living/simple_mob/animal/wolf/direwolf/rykka
+/mob/living/simple_mob/vore/wolf/direwolf/rykka
name = "Rykka"
desc = "This big canine looks like a GSD. It has a collar tagged, 'Bitch'"
tt_desc = "Canidae"
@@ -186,7 +186,7 @@
vore_stomach_name = "Gut"
vore_stomach_flavor = "A black-and-purple veined gut, pulsing warmly around you. Loud gurgles sound around you as the gut squishes inwards and attempts to crush you - Rykka seems intent on digesting you, like the meat you are."
-/mob/living/simple_mob/animal/wolf/direwolf/andrews
+/mob/living/simple_mob/vore/wolf/direwolf/andrews
name = "andrewsarchus"
desc = "That's one massive mean-looking piece of long extinct megafauna."
tt_desc = "Andrewsarchus mongoliensis"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm
index 48cb351290..495c69963d 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm
@@ -223,10 +223,11 @@
response_disarm = "gently pushes aside"
response_harm = "hits"
-
+// Chomp EDIT
/mob/living/simple_mob/hostile/carp/pike
vore_active = 1
// NO VORE SPRITES
+// Chomp EDIT END
/mob/living/simple_mob/animal/space/carp/holographic
vore_icons = 0 // NO VORE SPRITES
diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm
index a136950741..d66706be78 100644
--- a/code/modules/mob/new_player/sprite_accessories.dm
+++ b/code/modules/mob/new_player/sprite_accessories.dm
@@ -411,6 +411,10 @@
name = "Devil Lock"
icon_state = "hair_devilock"
+/datum/sprite_accessory/hair/diagonalbangs
+ name = "Diagonal Bangs"
+ icon_state = "hair_diagonalbangs"
+
/datum/sprite_accessory/hair/dirk
name = "Dirk"
icon_state = "hair_dirk"
@@ -1187,6 +1191,11 @@
icon_state = "hair_volaju"
flags = HAIR_TIEABLE
+/datum/sprite_accessory/hair/volaju_pompless
+ name = "Volaju, pompless"
+ icon_state = "hair_volajupompless"
+ flags = HAIR_TIEABLE
+
/datum/sprite_accessory/hair/wisp
name = "Wisp"
icon_state = "hair_wisp"
diff --git a/code/modules/mob/theme_lists.dm b/code/modules/mob/theme_lists.dm
new file mode 100644
index 0000000000..f93277c3c1
--- /dev/null
+++ b/code/modules/mob/theme_lists.dm
@@ -0,0 +1,10 @@
+//For use with various spawners! Put your selections inside of a list!
+/var/global/list/theme_animal = list()
+/var/global/list/theme_monster = list()
+/var/global/list/theme_alien = list()
+/var/global/list/theme_cold = list()
+/var/global/list/theme_hot = list()
+/var/global/list/theme_aquatic = list()
+/var/global/list/theme_dark = list()
+/var/global/list/theme_forest = list()
+/var/global/list/theme_humanoid = list()
diff --git a/code/modules/multiz/movement_vr.dm b/code/modules/multiz/movement_vr.dm
index 7e4248e052..db9057d6c0 100644
--- a/code/modules/multiz/movement_vr.dm
+++ b/code/modules/multiz/movement_vr.dm
@@ -186,23 +186,28 @@
climb_time +=3 SECONDS
if(fall_chance < 30)
fall_chance = 30
- L.custom_emote(VISIBLE_MESSAGE, "begins to climb up on \The [src]")
+ L.visible_message(message = "[L] begins to climb up on \The [src]", self_message = "You begin to clumb up on \The [src]", \
+ blind_message = "You hear the sounds of climbing!", runemessage = "Tap Tap")
var/oops_time = world.time
var/grace_time = 4 SECONDS
to_chat(L, SPAN_WARNING("If you get interrupted after [(grace_time / (1 SECOND))] seconds of climbing, you will fall and hurt yourself, beware!"))
if(do_after(L,climb_time))
if(prob(fall_chance))
- to_chat(L, SPAN_DANGER("You slipped and fell!"))
L.forceMove(above_mob)
+ L.visible_message(message = "[L] falls off \The [src]", self_message = SPAN_DANGER("You slipped off \The [src]"), \
+ blind_message = "you hear a loud thud!", runemessage = "CRASH!")
else
if(drop_our_held)
L.drop_item(get_turf(L))
L.forceMove(above_wall)
+ L.visible_message(message = "[L] climbed up on \The [src]", \
+ self_message = SPAN_NOTICE("You successfully scaled \The [src]"), \
+ blind_message = "The sounds of climbing cease.", runemessage = "Tap Tap")
L.adjust_nutrition(-nutrition_cost)
-
- to_chat(L, SPAN_NOTICE("You clambered up successfully!"))
else if(world.time > (oops_time + grace_time))
L.forceMove(above_mob)
+ L.visible_message(message = "[L] falls off \The [src]", self_message = SPAN_DANGER("You slipped off \The [src]"), \
+ blind_message = "you hear a loud thud!", runemessage = "CRASH!")
/mob/living/verb/climb_down()
set name = "Climb down wall"
@@ -303,17 +308,27 @@
to_chat(src, SPAN_DANGER("\The [climbing_surface] is not suitable for climbing! Even for a master climber, this is risky!"))
if(fall_chance < 75 )
fall_chance = 75
- src.custom_emote(VISIBLE_MESSAGE, "begins to climb down along \The [below_wall]")
+ src.visible_message(message = "[src] climb down \The [below_wall]", \
+ self_message = "You begin to descend \The [below_wall]", \
+ blind_message = "You hear the sounds of climbing!", runemessage = "Tap Tap")
+ below_wall.audible_message(message = "You hear something climbing up \The [below_wall]", runemessage= "Tap Tap")
var/oops_time = world.time
var/grace_time = 3 SECONDS
to_chat(src, SPAN_WARNING("If you get interrupted after [(grace_time / (1 SECOND))] seconds of climbing, you will fall and hurt yourself, beware!"))
if(do_after(src,climb_time))
if(prob(fall_chance))
- to_chat(src, SPAN_DANGER("You slipped and fell!"))
src.forceMove(front_of_us)
+ src.visible_message(message = "[src] falls off \The [below_wall]", \
+ self_message = SPAN_DANGER("You slipped off \The [below_wall]"), \
+ blind_message = "you hear a loud thud!", runemessage = "CRASH!")
else
src.forceMove(destination)
- to_chat(src, SPAN_NOTICE("You descended successfully!"))
+ src.visible_message(message = "[src] climbed down on \The [below_wall]", \
+ self_message = SPAN_NOTICE("You successfully descended \The [below_wall]"), \
+ blind_message = "The sounds of climbing cease.", runemessage = "Tap Tap")
adjust_nutrition(-nutrition_cost)
else if(world.time > (oops_time + grace_time))
src.forceMove(front_of_us)
+ src.visible_message(message = "[src] falls off \The [below_wall]", \
+ self_message = SPAN_DANGER("You slipped off \The [below_wall]"), \
+ blind_message = "you hear a loud thud!", runemessage = "CRASH!")
diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm
index d5993805da..a9f0cd0e28 100644
--- a/code/modules/power/port_gen.dm
+++ b/code/modules/power/port_gen.dm
@@ -32,11 +32,11 @@
/obj/machinery/power/port_gen/proc/TogglePower()
if(active)
active = FALSE
- icon_state = "[initial(icon_state)]"
+ update_icon()
// soundloop.stop()
else if(HasFuel())
active = TRUE
- icon_state = "[initial(icon_state)]on"
+ update_icon()
// soundloop.start()
/obj/machinery/power/port_gen/process()
@@ -45,9 +45,15 @@
UseFuel()
else
active = FALSE
- icon_state = initial(icon_state)
+ update_icon()
handleInactive()
+/obj/machinery/power/port_gen/update_icon()
+ if(active)
+ icon_state = "[initial(icon_state)]on"
+ else
+ icon_state = initial(icon_state)
+
/obj/machinery/power/powered()
return 1 //doesn't require an external power source
@@ -125,7 +131,7 @@
default_apply_parts()
if(anchored)
connect_to_network()
-
+
/obj/machinery/power/port_gen/pacman/Destroy()
DropFuel()
return ..()
@@ -310,7 +316,7 @@
if(!ui)
ui = new(user, src, "PortableGenerator", name)
ui.open()
-
+
/obj/machinery/power/port_gen/pacman/tgui_data(mob/user)
var/list/data = list()
@@ -322,7 +328,7 @@
data["is_ai"] = TRUE
else
data["is_ai"] = FALSE
-
+
data["sheet_name"] = capitalize(sheet_name)
data["fuel_stored"] = round((sheets * 1000) + (sheet_left * 1000))
data["fuel_capacity"] = round(max_sheets * 1000, 0.1)
diff --git a/code/modules/power/port_gen_vr.dm b/code/modules/power/port_gen_vr.dm
index 0b3f7ca9f7..5fe2031d28 100644
--- a/code/modules/power/port_gen_vr.dm
+++ b/code/modules/power/port_gen_vr.dm
@@ -411,4 +411,90 @@
name = "c-type rotary electric generator"
circuit = /obj/item/weapon/circuitboard/machine/reg_c
default_power_gen = 500000 //Half power
- nutrition_drain = 0.5 //for half cost - EQUIVALENT EXCHANGE >:O
\ No newline at end of file
+ nutrition_drain = 0.5 //for half cost - EQUIVALENT EXCHANGE >:O
+
+
+// Big altevian version of pacman. has a lot of copypaste from regular kind, but less flexible.
+/obj/machinery/power/port_gen/large_altevian
+ name = "Converted High Energy Exchange Supplier Extractor"
+ desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \
+ However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools."
+ icon = 'icons/obj/props/decor64x64.dmi'
+ icon_state = "alteviangen"
+ bound_width = 64
+ bound_height = 64
+ anchored = TRUE
+ power_gen = 200000
+
+ var/sheet_name = "Phoron Sheets"
+ var/sheet_path = /obj/item/stack/material/phoron
+ var/sheets = 0 //How many sheets of material are loaded in the generator
+ var/sheet_left = 0 //How much is left of the current sheet
+ var/time_per_sheet = 120 //fuel efficiency - how long 1 sheet lasts at power level 1
+ var/max_sheets = 100 //max capacity of the hopper
+
+/obj/machinery/power/port_gen/large_altevian/Initialize()
+ .=..()
+ if(anchored)
+ connect_to_network()
+
+/obj/machinery/power/port_gen/large_altevian/Destroy()
+ DropFuel()
+ return ..()
+
+/obj/machinery/power/port_gen/large_altevian/examine(mob/user)
+ . = ..()
+ . += "There [sheets == 1 ? "is" : "are"] [sheets] sheet\s left in the hopper."
+
+/obj/machinery/power/port_gen/large_altevian/HasFuel()
+ var/needed_sheets = power_output / time_per_sheet
+ if(sheets >= needed_sheets - sheet_left)
+ return 1
+ return 0
+
+/obj/machinery/power/port_gen/large_altevian/DropFuel()
+ if(sheets)
+ var/obj/item/stack/material/S = new sheet_path(loc, sheets)
+ sheets -= S.get_amount()
+
+/obj/machinery/power/port_gen/large_altevian/UseFuel()
+ var/needed_sheets = power_output / time_per_sheet
+ if (needed_sheets > sheet_left)
+ sheets--
+ sheet_left = (1 + sheet_left) - needed_sheets
+ else
+ sheet_left -= needed_sheets
+
+/obj/machinery/power/port_gen/large_altevian/attackby(var/obj/item/O as obj, var/mob/user as mob)
+ if(istype(O, sheet_path))
+ var/obj/item/stack/addstack = O
+ var/amount = min((max_sheets - sheets), addstack.get_amount())
+ if(amount < 1)
+ to_chat(user, "The [src.name] is full!")
+ return
+ to_chat(user, "You add [amount] sheet\s to the [src.name].")
+ sheets += amount
+ addstack.use(amount)
+ update_icon()
+ return
+ return ..()
+
+/obj/machinery/power/port_gen/large_altevian/attack_hand(mob/user as mob)
+ ..()
+ if (!anchored)
+ return
+ TogglePower()
+
+/obj/machinery/power/port_gen/large_altevian/attack_ai(mob/user as mob)
+ TogglePower()
+
+/obj/machinery/power/port_gen/large_altevian/update_icon()
+ ..()
+
+ cut_overlays()
+ if(sheets > 75)
+ add_overlay("alteviangen-fuel-100")
+ else if(sheets > 25)
+ add_overlay("alteviangen-fuel-66")
+ else if(sheets > 0)
+ add_overlay("alteviangen-fuel-33")
diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm
index 76569a825f..249d8775a1 100644
--- a/code/modules/projectiles/guns/energy/laser.dm
+++ b/code/modules/projectiles/guns/energy/laser.dm
@@ -8,7 +8,7 @@
wielded_item_state = "laser-wielded"
fire_delay = 8
slot_flags = SLOT_BELT|SLOT_BACK
- w_class = ITEMSIZE_HUGE //CHOMP Edit
+ w_class = ITEMSIZE_LARGE //CHOMP Edit - huge was dumb for this.
force = 10
origin_tech = list(TECH_COMBAT = 3, TECH_MAGNET = 2)
matter = list(MAT_STEEL = 2000)
@@ -258,15 +258,15 @@
icon_state = "lasercannon"
item_state = null
wielded_item_state = "mhdhowitzer-wielded" //Placeholder
- origin_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 3, TECH_POWER = 3)
+ origin_tech = list(TECH_COMBAT = 6, TECH_MATERIAL = 6, TECH_POWER = 6) //ChompEdit improved.
slot_flags = SLOT_BELT|SLOT_BACK
projectile_type = /obj/item/projectile/beam/heavylaser/cannon
- battery_lock = 1
+ battery_lock = 0 //ChompEdit This thing is worthless with this.
fire_delay = 20
- w_class = ITEMSIZE_HUGE //CHOMP Edit. Lol a cannon used to be just large size? Are you kidding me? A CANNON.
+ w_class = ITEMSIZE_HUGE //CHOMP Edit. Lol a cannon used to be just large size? Are you kidding me? A CANNON. Deserves this.
one_handed_penalty = 90 // The thing's heavy and huge.
accuracy = 45
- charge_cost = 400 //CHOMP Edit. Let's give this thing some more shots, seeing as it needs to be recharged at a charger.
+ charge_cost = 400 //CHOMP Edit. Let's give this thing some more shots, seeing as it needs to be recharged at a charger - Most everything else is cheaper on charge cost now or smaller, this can stay the same, but with replacable batteries.
/obj/item/weapon/gun/energy/lasercannon/mounted
name = "mounted laser cannon"
@@ -289,7 +289,7 @@
origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 3, TECH_MAGNET = 2)
projectile_type = /obj/item/projectile/beam/xray
charge_cost = 200
- w_class = ITEMSIZE_HUGE //CHOMP Edit.
+ w_class = ITEMSIZE_LARGE //CHOMP Edit. - huge is too big, this thing hits for 25
/obj/item/weapon/gun/energy/sniperrifle
name = "marksman energy rifle"
diff --git a/code/modules/projectiles/guns/energy/laser_ch.dm b/code/modules/projectiles/guns/energy/laser_ch.dm
index ef97f95195..07896abe8c 100644
--- a/code/modules/projectiles/guns/energy/laser_ch.dm
+++ b/code/modules/projectiles/guns/energy/laser_ch.dm
@@ -84,8 +84,8 @@
/obj/item/weapon/gun/energy/tommylaser
name = "M-2421 'Tommy-Laser'"
desc = "A automatic laser weapon resembling a Tommy-Gun. Designed by Cybersun Industries to be a man portable supressive fire laser weapon."
- icon_state = "tommylas"
- item_state = "tommylas"
+ icon_state = "etommy"
+ item_state = "etommy"
w_class = ITEMSIZE_LARGE
slot_flags = SLOT_BACK
charge_cost = 60 // 40 shots, lay down the firepower
diff --git a/code/modules/projectiles/guns/energy/laser_vr.dm b/code/modules/projectiles/guns/energy/laser_vr.dm
index a43ebcc7be..ff8a550f23 100644
--- a/code/modules/projectiles/guns/energy/laser_vr.dm
+++ b/code/modules/projectiles/guns/energy/laser_vr.dm
@@ -157,20 +157,20 @@
item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_guns_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi', "slot_belt" = 'icons/inventory/belt/mob_vr.dmi')
fire_sound = 'sound/weapons/laser2.ogg'
origin_tech = list(TECH_COMBAT = 4, TECH_MAGNET = 2, TECH_POWER = 4)
- charge_cost = 300
+ charge_cost = 100 //Chompedit Reduced cost
battery_lock = 1
unacidable = TRUE
var/recharging = 0
- var/phase_power = 75
+ var/phase_power = 15
projectile_type = /obj/item/projectile/beam/phaser
- //CHOMP Edit: Changed beam type to new phaser beam type.
+ //CHOMP Edit: Changed beam type to new phaser beam type.
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/phaser, charge_cost = 300),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/phaser/light, charge_cost = 80),
- )
+ list(mode_name="lethal", fire_delay=10, projectile_type=/obj/item/projectile/beam/phaser, charge_cost = 80), //Chompedit Reduced cost
+ list(mode_name="low-power", fire_delay=5, projectile_type=/obj/item/projectile/beam/phaser/light, charge_cost = 40), //Chompedit Reduced cost
+ ) //CHOMPedit Adjusts cost and fire delay to match adjusted beams.
recoil_mode = 0 //CHOMP Addition: Removes recoil for micros.
/obj/item/weapon/gun/energy/locked/frontier/unload_ammo(var/mob/user)
@@ -185,7 +185,7 @@
break
playsound(src,'sound/items/change_drill.ogg',25,1)
user.hud_used.update_ammo_hud(user, src)
- if(power_supply.give(phase_power/8) < phase_power/8) //CHOMP Edit: Nerfed charge time of all phasers by adding /8 in a couple spots to this line
+ if(power_supply.give(phase_power) < phase_power)
break
recharging = 0
@@ -215,19 +215,22 @@
/obj/item/weapon/gun/energy/locked/frontier/carbine
name = "frontier carbine"
- desc = "An ergonomically improved version of the venerable frontier phaser, the carbine is a fairly new weapon, and has only been produced in limited numbers so far. Includes a built-in crank charger for recharging away from civilization. This one has a safety interlock that prevents firing while in proximity to the facility."
+ desc = "A larger and more efficient version of the venerable frontier phaser, the carbine is a fairly new weapon, and has only been produced in limited numbers so far. Includes a built-in crank charger for recharging away from civilization. This one has a safety interlock that prevents firing while in proximity to the facility."
description_fluff = "The NT Brand Model AT2 Secured Phaser System, a specialty phaser that has an intergrated chip that prevents the user from opperating the weapon within the vicinity of any NanoTrasen opperated outposts/stations/bases. However, this chip can be disabled so the weapon CAN BE used in the vicinity of any NanoTrasen opperated outposts/stations/bases. The weapon doesn't use traditional weapon power cells and instead works via a pump action that recharges the internal cells. It is a staple amongst exploration personell who usually don't have the license to opperate a lethal weapon through NT and provides them with a weapon that can be recharged away from civilization."
icon = 'icons/obj/gun_vr.dmi'
icon_state = "carbinekill"
item_state = "energykill"
item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_guns.dmi', slot_r_hand_str = 'icons/mob/items/righthand_guns.dmi')
- phase_power = 150
+ phase_power = 25
+ one_handed_penalty = 15 //CHOMPEdit Added this, same as phase carbine.
+ w_class = ITEMSIZE_LARGE //CHOMPEdit Should be bigger.
modifystate = "carbinekill"
//CHOMP Edit: Changed beam type to new phaser beam type.
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/phaser, modifystate="carbinekill", charge_cost = 300),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/phaser/light, modifystate="carbinestun", charge_cost = 80),
+ list(mode_name="lethal", fire_delay=10, projectile_type=/obj/item/projectile/beam/phaser, modifystate="carbinekill", charge_cost = 60), //Chompedit Reduced cost
+ list(mode_name="low-power", fire_delay=5, projectile_type=/obj/item/projectile/beam/phaser/light, modifystate="carbinestun", charge_cost = 30), //Chompedit Reduced cost
+ list(mode_name="burst", burst=3, fire_delay=10, move_delay=4, burst_accuracy=list(0,0,0), dispersion=list(0.0, 0.2, 0.5), projectile_type=/obj/item/projectile/beam/phaser/light, charge_cost = 90), //Chompedit Added this
)
/obj/item/weapon/gun/energy/locked/frontier/carbine/update_icon()
@@ -251,15 +254,15 @@
icon = 'icons/obj/gun_vr.dmi'
icon_state = "holdoutkill"
item_state = null
- phase_power = 100
+ phase_power = 15
w_class = ITEMSIZE_SMALL
- charge_cost = 600
+ charge_cost = 200 //Chompedit Reduced cost
modifystate = "holdoutkill"
//CHOMP Edit: Changed beam type to new phaser beam type.
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/phaser, modifystate="holdoutkill", charge_cost = 600),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/phaser/light, modifystate="holdoutstun", charge_cost = 120),
+ list(mode_name="lethal", fire_delay=20, projectile_type=/obj/item/projectile/beam/phaser, modifystate="holdoutkill", charge_cost = 200), //Chompedit Reduced cost
+ list(mode_name="low-power", fire_delay=10, projectile_type=/obj/item/projectile/beam/phaser/light, modifystate="holdoutstun", charge_cost = 50), //Chompedit Reduced cost
list(mode_name="stun", fire_delay=12, projectile_type=/obj/item/projectile/beam/stun/med, modifystate="holdoutshock", charge_cost = 300),
)
@@ -285,13 +288,13 @@
accuracy = -15 //better than most snipers but still has penalty
scoped_accuracy = 40
one_handed_penalty = 50 // The weapon itself is heavy, and the long barrel makes it hard to hold steady with just one hand.
- phase_power = 150 //efficient crank charger
+ phase_power = 30 //ChompEdit efficient crank charger
projectile_type = /obj/item/projectile/beam/phaser/heavy //CHOMPEdit
modifystate = "riflekill"
//CHOMP Edit: Changed beam type to new phaser beam type.
firemodes = list(
- list(mode_name="sniper", fire_delay=35, projectile_type=/obj/item/projectile/beam/phaser/heavy, modifystate="riflekill", charge_cost = 600),
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/phaser, modifystate="riflestun", charge_cost = 200),
+ list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/phaser, modifystate="riflestun", charge_cost = 60), //Chompedit Reduced cost
+ list(mode_name="sniper", fire_delay=35, move_delay=4, projectile_type=/obj/item/projectile/beam/phaser/heavy, modifystate="riflekill", charge_cost = 100), //Chompedit Reduced cost
)
/obj/item/weapon/gun/energy/locked/frontier/rifle/ui_action_click()
@@ -325,14 +328,14 @@
icon = 'icons/obj/gun_vr.dmi'
icon_state = "handbowkill"
item_state = null
- phase_power = 100
+ phase_power = 20
w_class = ITEMSIZE_SMALL
- charge_cost = 600
+ charge_cost = 200 //Chompedit Reduced cost
modifystate = "handbowkill"
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/energy/phase/bolt/heavy, modifystate="handbowkill", charge_cost = 600), //CHOMP Edit
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/energy/phase/bolt, modifystate="handbowstun", charge_cost = 200), //CHOMP Edit
+ list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/energy/phase/bolt/heavy, modifystate="handbowkill", charge_cost = 200), //CHOMP Edit
+ list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/energy/phase/bolt, modifystate="handbowstun", charge_cost = 100), //CHOMP Edit
)
/obj/item/weapon/gun/energy/locked/frontier/handbow/unlocked
diff --git a/code/modules/projectiles/guns/energy/phase.dm b/code/modules/projectiles/guns/energy/phase.dm
index 179355a167..108eddb0bd 100644
--- a/code/modules/projectiles/guns/energy/phase.dm
+++ b/code/modules/projectiles/guns/energy/phase.dm
@@ -10,7 +10,7 @@
item_state = "phasecarbine"
wielded_item_state = "phasecarbine-wielded"
slot_flags = SLOT_BACK|SLOT_BELT
- charge_cost = 240
+ charge_cost = 80 //Chompedit Bringing charge cost down for all phase weapons.
projectile_type = /obj/item/projectile/energy/phase
one_handed_penalty = 15
recoil_mode = 0 //CHOMP Addition: Removes recoil for micros.
@@ -27,8 +27,8 @@
one_handed_penalty = 0
/obj/item/weapon/gun/energy/locked/phasegun/unlocked/mounted/cyborg
- charge_cost = 200 //ChompEdit Reduced from 480 to 200
- recharge_time = 5 //ChompEdit Reduced from 7 to 5
+ charge_cost = 80 //ChompEdit Reduced from 480 to 200, further reduced to 80 to match normal phase guns
+ recharge_time = 16 //ChompEdit set up to 16 due to lower charge cost
/obj/item/weapon/gun/energy/locked/phasegun/pistol
name = "phase pistol"
@@ -37,7 +37,7 @@
item_state = "taser" //I don't have an in-hand sprite, taser will be fine
w_class = ITEMSIZE_NORMAL
slot_flags = SLOT_BELT|SLOT_HOLSTER
- charge_cost = 300
+ charge_cost = 80 //Chompedit Bringing charge cost down for all phase weapons.
projectile_type = /obj/item/projectile/energy/phase/light
one_handed_penalty = 0
move_delay = 0 // CHOMPEdit: Pistols have move_delay of 0
@@ -54,7 +54,7 @@
use_external_power = 1
/obj/item/weapon/gun/energy/locked/phasegun/pistol/unlocked/mounted/cyborg
- charge_cost = 400
+ charge_cost = 80 //Chompedit, bringing in line with normal phase weapons
recharge_time = 7
@@ -66,7 +66,7 @@
wielded_item_state = "phaserifle-wielded"
w_class = ITEMSIZE_LARGE
slot_flags = SLOT_BACK
- charge_cost = 150
+ charge_cost = 80 //Chompedit Bringing charge cost down for all phase weapons.
projectile_type = /obj/item/projectile/energy/phase/heavy
accuracy = 15
one_handed_penalty = 30
@@ -85,7 +85,7 @@
wielded_item_state = "phasecannon-wielded" //TODO: New Sprites
w_class = ITEMSIZE_HUGE // This thing is big.
slot_flags = SLOT_BACK
- charge_cost = 100
+ charge_cost = 80 //Chompedit Bringing charge cost down for all phase weapons.
projectile_type = /obj/item/projectile/energy/phase/heavy/cannon
accuracy = 15
one_handed_penalty = 65
diff --git a/code/modules/projectiles/guns/projectile/zz_ballistics_ch.dm b/code/modules/projectiles/guns/projectile/zz_ballistics_ch.dm
index 5b0cf95ce0..8f5bacfd2c 100644
--- a/code/modules/projectiles/guns/projectile/zz_ballistics_ch.dm
+++ b/code/modules/projectiles/guns/projectile/zz_ballistics_ch.dm
@@ -1559,6 +1559,9 @@
update_icon()
update_transform()
+/obj/item/weapon/gun/projectile/shotgun/doublebarrel/sawn //Default sawn shotgun needs it's old icon path back
+ icon = 'icons/obj/gun.dmi'
+
/obj/item/weapon/gun/projectile/shotgun/doublebarrel/Initialize()
. = ..()
update_transform()
diff --git a/code/modules/projectiles/projectile/beams_ch.dm b/code/modules/projectiles/projectile/beams_ch.dm
index f95458a6a5..13f1ac6061 100644
--- a/code/modules/projectiles/projectile/beams_ch.dm
+++ b/code/modules/projectiles/projectile/beams_ch.dm
@@ -1,7 +1,7 @@
/obj/item/projectile/beam/phaser //The "medium" phaser beam.
- damage = 10
- SA_bonus_damage = 40
- SA_vulnerability = list(SA_ANIMAL, MOB_CLASS_SYNTHETIC, MOB_CLASS_ABERRATION, MOB_CLASS_HUMANOID)
+ damage = 20
+ SA_bonus_damage = 20
+ SA_vulnerability = list(SA_ANIMAL, MOB_CLASS_SYNTHETIC, MOB_CLASS_ABERRATION)
icon = 'icons/obj/projectiles_ch.dmi'
icon_state = "phaser"
light_color = "#F18F12"
@@ -12,8 +12,8 @@
/obj/item/projectile/beam/phaser/light
- damage = 5
- SA_bonus_damage = 30
+ damage = 10
+ SA_bonus_damage = 10
icon_state = "phaser_light"
light_range = 1.5
light_power = 0.3
@@ -23,7 +23,8 @@
/obj/item/projectile/beam/phaser/heavy
- SA_bonus_damage = 55
+ damage = 30
+ SA_bonus_damage = 30
icon_state = "phaser_heavy"
light_range = 3
light_power = 1
@@ -33,8 +34,8 @@
/obj/item/projectile/beam/phaser/heavy/cannon
- damage = 15
- SA_bonus_damage = 60
+ damage = 40
+ SA_bonus_damage = 40
/obj/effect/projectile/tracer/phaser
diff --git a/code/modules/projectiles/projectile/energy.dm b/code/modules/projectiles/projectile/energy.dm
index 141e365625..4f8b0be69a 100644
--- a/code/modules/projectiles/projectile/energy.dm
+++ b/code/modules/projectiles/projectile/energy.dm
@@ -288,6 +288,7 @@
impact_effect_type = /obj/effect/temp_visual/impact_effect/monochrome_laser
hud_state = "plasma_sphere"
+/* ChompEdit, moving over to energy_ch.dm
/obj/item/projectile/energy/phase
name = "phase wave"
icon_state = "phase"
@@ -312,6 +313,7 @@
damage = 15
SA_bonus_damage = 60 // 75 total on animals
hud_state = "laser_heat"
+*/
/obj/item/projectile/energy/electrode/strong
agony = 70
diff --git a/code/modules/projectiles/projectile/energy_ch.dm b/code/modules/projectiles/projectile/energy_ch.dm
index 5376ff5c97..b5bac5e924 100644
--- a/code/modules/projectiles/projectile/energy_ch.dm
+++ b/code/modules/projectiles/projectile/energy_ch.dm
@@ -24,3 +24,32 @@
hitsound = 'sound/weapons/sear.ogg'
hud_state = "laser_overcharge"
+/obj/item/projectile/energy/phase
+ name = "phase wave"
+ icon_state = "phase"
+ range = 13
+ damage = 5
+ SA_bonus_damage = 45
+ armor_penetration = -35
+ SA_vulnerability = list(SA_ANIMAL, MOB_CLASS_SYNTHETIC, MOB_CLASS_ABERRATION, MOB_CLASS_HUMANOID) //CHOMP Edit expand this list
+ hud_state = "laser_heat"
+
+/obj/item/projectile/energy/phase/light
+ range = 11
+ SA_bonus_damage = 35
+ armor_penetration = -50
+ hud_state = "laser_heat"
+
+/obj/item/projectile/energy/phase/heavy
+ range = 16 //Chompedit This range was not great
+ damage = 10
+ SA_bonus_damage = 50
+ armor_penetration = -25
+ hud_state = "laser_heat"
+
+/obj/item/projectile/energy/phase/heavy/cannon
+ range = 20 //Chompedit This range was mediocre, but not worth a cannon.
+ damage = 15
+ SA_bonus_damage = 60
+ armor_penetration = -20
+ hud_state = "laser_heat"
diff --git a/code/modules/reagents/reactions/instant/drinks_vr.dm b/code/modules/reagents/reactions/instant/drinks_vr.dm
index 5a88d79996..319a6011b9 100644
--- a/code/modules/reagents/reactions/instant/drinks_vr.dm
+++ b/code/modules/reagents/reactions/instant/drinks_vr.dm
@@ -204,3 +204,31 @@
result = "mudslide"
required_reagents = list("blackrussian" = 1, "irishcream" = 1)
result_amount = 2
+
+/decl/chemical_reaction/instant/drinks/protein_shake
+ name = "Protein Shake"
+ id = "protein_shake"
+ result = "protein_shake"
+ required_reagents = list("water" = 5, "protein_powder" = 1)
+ result_amount = 5
+
+/decl/chemical_reaction/instant/drinks/protein_shake/vanilla
+ name = "Vanilla Protein Shake"
+ id = "vanilla_protein_shake"
+ result = "vanilla_protein_shake"
+ required_reagents = list("water" = 5, "vanilla_protein_powder" = 1)
+ result_amount = 5
+
+/decl/chemical_reaction/instant/drinks/protein_shake/banana
+ name = "Banana Protein Shake"
+ id = "banana_protein_shake"
+ result = "banana_protein_shake"
+ required_reagents = list("water" = 5, "banana_protein_powder" = 1)
+ result_amount = 5
+
+/decl/chemical_reaction/instant/drinks/protein_shake/strawberry
+ name = "Strawberry Protein Shake"
+ id = "strawberry_protein_shake"
+ result = "strawberry_protein_shake"
+ required_reagents = list("water" = 5, "strawberry_protein_powder" = 1)
+ result_amount = 5
\ No newline at end of file
diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm
index cde20edfa7..c9a3cd15ec 100644
--- a/code/modules/reagents/reagents/food_drinks_vr.dm
+++ b/code/modules/reagents/reagents/food_drinks_vr.dm
@@ -554,3 +554,73 @@
color = "#a6898d"
////////////////END BrainzSnax Reagents////////////////
+
+/datum/reagent/nutriment/protein_powder
+ name = "Protein Powder"
+ id = "protein_powder"
+ description = "Pure, powdered protein commonly used as a meal supplement."
+ taste_description = "powdery protein"
+ color = "#f4e6dd"
+
+/datum/reagent/nutriment/protein_shake
+ name = "Protein Shake"
+ id = "protein_shake"
+ description = "A mixture of water and protein commonly used as a meal supplement."
+ taste_description = "pure protein"
+ color = "#ebd8cb"
+
+/datum/reagent/nutriment/protein_powder/vanilla
+ name = "Vanilla Protein Powder"
+ id = "vanilla_protein_powder"
+ description = "Pure, powdered protein commonly used as a meal supplement. This one has added vanilla flavoring."
+ taste_description = "powdery vanilla"
+ color = "#fff7d2"
+
+/datum/reagent/nutriment/protein_shake/vanilla
+ name = "Vanilla Protein Shake"
+ id = "vanilla_protein_shake"
+ description = "A mixture of water and protein commonly used as a meal supplement. This one has added vanilla flavoring."
+ taste_description = "vanilla"
+ color = "#faefbc"
+
+/datum/reagent/nutriment/protein_powder/banana
+ name = "Banana Protein Powder"
+ id = "banana_protein_powder"
+ description = "Pure, powdered protein commonly used as a meal supplement. This one has added banana flavoring."
+ taste_description = "powdery banana"
+ color = "#faefbc"
+
+/datum/reagent/nutriment/protein_shake/banana
+ name = "Banana Protein Powder"
+ id = "banana_protein_shake"
+ description = "A mixture of water and protein commonly used as a meal supplement. This one has added banana flavoring."
+ taste_description = "banana"
+ color = "#e6daa1"
+
+/datum/reagent/nutriment/protein_powder/chocolate
+ name = "Chocolate Protein Powder"
+ id = "chocolate_protein_powder"
+ description = "Pure, powdered protein commonly used as a meal supplement. This one has added chocolate flavoring."
+ taste_description = "powdery chocolate"
+ color = "#865b3e"
+
+/datum/reagent/nutriment/protein_shake/chocolate
+ name = "Chocolate Protein Shake"
+ id = "chocolate_protein_shake"
+ description = "A mixture of water and protein commonly used as a meal supplement. This one has added chocolate flavoring."
+ taste_description = "chocolate"
+ color = "#644730"
+
+/datum/reagent/nutriment/protein_powder/strawberry
+ name = "Strawberry Protein Powder"
+ id = "strawberry_protein_powder"
+ description = "Pure, powdered protein commonly used as a meal supplement. This one has added strawberry flavoring."
+ taste_description = "powdery strawberry"
+ color = "#eba1a1"
+
+/datum/reagent/nutriment/protein_shake/strawberry
+ name = "Strawberry Protein Shake"
+ id = "strawberry_protein_shake"
+ description = "A mixture of water and protein commonly used as a meal supplement. This one has added strawberry flavoring."
+ taste_description = "strawberry"
+ color = "#e28585"
diff --git a/code/modules/research/mechfab_designs_vr.dm b/code/modules/research/mechfab_designs_vr.dm
index 0c2668e9ae..51a1cea50a 100644
--- a/code/modules/research/mechfab_designs_vr.dm
+++ b/code/modules/research/mechfab_designs_vr.dm
@@ -20,3 +20,11 @@
req_tech = list(TECH_MATERIAL = 4, TECH_COMBAT = 4, TECH_PHORON = 4, TECH_POWER = 4, TECH_ILLEGAL = 3)
materials = list(MAT_STEEL = 6000, MAT_GLASS = 4000, MAT_PHORON = 2500, MAT_SILVER = 1000, MAT_GOLD = 500, MAT_URANIUM = 3000)
build_path = /obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/gamma
+
+/datum/design/item/mecha/medigun
+ name = "BL-3/P directed restoration system"
+ desc = "A portable medical system used to treat external injuries from afar."
+ id = "mech_medigun"
+ req_tech = list(TECH_MATERIAL = 5, TECH_COMBAT = 5, TECH_BIO = 6)
+ materials = list(MAT_STEEL = 8000, MAT_GOLD = 2000, MAT_SILVER = 1750, MAT_DIAMOND = 1500, MAT_PHORON = 4000)
+ build_path = /obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun
diff --git a/code/modules/rogueminer_vr/controller.dm b/code/modules/rogueminer_vr/controller.dm
index efff235f2e..47017c7620 100644
--- a/code/modules/rogueminer_vr/controller.dm
+++ b/code/modules/rogueminer_vr/controller.dm
@@ -75,17 +75,17 @@ var/datum/controller/rogue/rm_controller
/mob/living/simple_mob/animal/space/bats/roguemines = 1,
/mob/living/simple_mob/animal/space/carp/roguemines = 2,
/mob/living/simple_mob/animal/space/goose/roguemines = 2,
- /mob/living/simple_mob/animal/wolf/space/roguemines = 1),
+ /mob/living/simple_mob/vore/wolf/space/roguemines = 1),
"tier3" = list(
/mob/living/simple_mob/animal/space/carp/roguemines = 1,
/mob/living/simple_mob/animal/space/goose/roguemines = 1,
- /mob/living/simple_mob/animal/wolf/space/roguemines = 3,
+ /mob/living/simple_mob/vore/wolf/space/roguemines = 3,
/mob/living/simple_mob/animal/space/carp/large/roguemines = 2,
/mob/living/simple_mob/animal/space/bear/roguemines = 1),
"tier4" = list(
- /mob/living/simple_mob/animal/wolf/space/roguemines = 1,
+ /mob/living/simple_mob/vore/wolf/space/roguemines = 1,
/mob/living/simple_mob/animal/space/carp/large/roguemines = 4,
/mob/living/simple_mob/animal/space/bear/roguemines = 2),
@@ -199,4 +199,4 @@ var/datum/controller/rogue/rm_controller
var/datum/rogue/zonemaster/ZM_oldest = get_oldest_zone()
if(ZM_oldest) ZM_oldest.clean_zone()
- return ZM_target
\ No newline at end of file
+ return ZM_target
diff --git a/code/modules/rogueminer_vr/roguemines_mobs.dm b/code/modules/rogueminer_vr/roguemines_mobs.dm
index a296c6d811..85c581d61e 100644
--- a/code/modules/rogueminer_vr/roguemines_mobs.dm
+++ b/code/modules/rogueminer_vr/roguemines_mobs.dm
@@ -7,7 +7,7 @@
/mob/living/simple_mob/animal/space/goose/roguemines
faction = "roguemines"
-/mob/living/simple_mob/animal/wolf/space/roguemines
+/mob/living/simple_mob/vore/wolf/space/roguemines
faction = "roguemines"
/mob/living/simple_mob/animal/space/carp/large/roguemines
@@ -20,4 +20,4 @@
faction = "roguemines"
/mob/living/simple_mob/animal/space/carp/large/huge/roguemines
- faction = "roguemines"
\ No newline at end of file
+ faction = "roguemines"
diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm
index 2ef55c1f03..d58956c110 100644
--- a/code/modules/telesci/telesci_computer.dm
+++ b/code/modules/telesci/telesci_computer.dm
@@ -207,12 +207,14 @@
sparks()
if(telepad)
var/L = get_turf(telepad)
- var/blocked = list(/mob/living/simple_mob/hostile)
- var/list/hostiles = typesof(/mob/living/simple_mob/hostile) - blocked
+ var/blocked = list(/mob/living/simple_mob/vore)
+ var/list/hostiles = typesof(/mob/living/simple_mob/vore) - blocked
playsound(L, 'sound/effects/phasein.ogg', 100, 1, extrarange = 3, falloff = 5)
for(var/i in 1 to rand(1,4))
var/chosen = pick(hostiles)
- var/mob/living/simple_mob/hostile/H = new chosen
+ var/mob/living/simple_mob/vore/H = new chosen
+ if(H.ai_holder)
+ H.ai_holder.hostile = TRUE
H.forceMove(L)
return
if(99)
diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm
index 79fae032e4..238d556dc2 100644
--- a/code/modules/vore/eating/belly_obj_vr.dm
+++ b/code/modules/vore/eating/belly_obj_vr.dm
@@ -700,8 +700,8 @@
if (!(M in contents))
return 0 // They weren't in this belly anyway
- if(istype(M, /mob/living/simple_mob/vore/hostile/morph/dominated_prey))
- var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/p = M
+ if(istype(M, /mob/living/simple_mob/vore/morph/dominated_prey))
+ var/mob/living/simple_mob/vore/morph/dominated_prey/p = M
p.undo_prey_takeover(FALSE)
return 0
for(var/mob/living/L in M.contents)
diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm
index 989fa74d47..95eddf62b0 100644
--- a/code/modules/vore/eating/bellymodes_datum_vr.dm
+++ b/code/modules/vore/eating/bellymodes_datum_vr.dm
@@ -142,6 +142,8 @@ GLOBAL_LIST_INIT(digest_modes, list())
/datum/digest_mode/drain/shrink/process_mob(obj/belly/B, mob/living/L)
if(L.size_multiplier > B.shrink_grow_size)
L.resize(L.size_multiplier - 0.01) // Shrink by 1% per tick
+ if(L.size_multiplier <= B.shrink_grow_size) //CHOMPEdit - Adds some feedback so the pred knows their prey has stopped shrinking.
+ to_chat(B.owner, "You feel [L] get as small as you would like within your [lowertext(B.name)].")
B.owner.update_fullness() //CHOMPEdit - This is run whenever a belly's contents are changed.
. = ..()
@@ -152,6 +154,8 @@ GLOBAL_LIST_INIT(digest_modes, list())
/datum/digest_mode/grow/process_mob(obj/belly/B, mob/living/L)
if(L.size_multiplier < B.shrink_grow_size)
L.resize(L.size_multiplier + 0.01) // Shrink by 1% per tick
+ if(L.size_multiplier >= B.shrink_grow_size) //CHOMPEdit - Adds some feedback so the pred knows their prey has stopped growing.
+ to_chat(B.owner, "You feel [L] get as big as you would like within your [lowertext(B.name)].")
B.owner.update_fullness() //CHOMPEdit - This is run whenever a belly's contents are changed.
/datum/digest_mode/drain/sizesteal
@@ -160,7 +164,11 @@ GLOBAL_LIST_INIT(digest_modes, list())
/datum/digest_mode/drain/sizesteal/process_mob(obj/belly/B, mob/living/L)
if(L.size_multiplier > B.shrink_grow_size && B.owner.size_multiplier < 2) //Grow until either pred is large or prey is small.
B.owner.resize(B.owner.size_multiplier + 0.01) //Grow by 1% per tick.
+ if(B.owner.size_multiplier >= 2) //CHOMPEdit - Adds some feedback so the pred knows they can't grow anymore.
+ to_chat(B.owner, "You feel you have grown as much as you can.")
L.resize(L.size_multiplier - 0.01) //Shrink by 1% per tick
+ if(L.size_multiplier <= B.shrink_grow_size) //CHOMPEdit - Adds some feedback so the pred knows their prey has stopped shrinking.
+ to_chat(B.owner, "You feel [L] get as small as you would like within your [lowertext(B.name)].")
B.owner.update_fullness() //CHOMPEdit - This is run whenever a belly's contents are changed.
. = ..()
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index 7a429a2db0..28067cb97d 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -501,8 +501,8 @@
//You're in a belly!
if(isbelly(loc))
//You've been taken over by a morph
- if(istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey))
- var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/s = src
+ if(istype(src, /mob/living/simple_mob/vore/morph/dominated_prey))
+ var/mob/living/simple_mob/vore/morph/dominated_prey/s = src
s.undo_prey_takeover(TRUE)
return
var/obj/belly/B = loc
diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
index 2c771bd456..89dc56782a 100644
--- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
@@ -311,6 +311,18 @@ Swimsuits, for general use, to avoid arriving to work with your swimsuit.
name = "Pink Mankini capsule"
has_items = list(/obj/item/clothing/under/swimsuit/stripper/mankini)
+/obj/item/weapon/storage/box/fluff/swimsuit/highclass
+ name = "High Class Swimsuit capsule"
+ has_items = list(/obj/item/clothing/under/swimsuit/highclass)
+
+/obj/item/weapon/storage/box/fluff/swimsuit/risque
+ name = "Risque Swimsuit capsule"
+ has_items = list(/obj/item/clothing/under/swimsuit/risque)
+
+/obj/item/weapon/storage/box/fluff/swimsuit/streamlined
+ name = "Streamlined Swimsuit capsule"
+ has_items = list(/obj/item/clothing/under/swimsuit/streamlined)
+
//Monkey boxes for the new primals we have
/obj/item/weapon/storage/box/monkeycubes/sobakacubes
name = "sobaka cube box"
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index ebf15bf880..887f892ad1 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -218,6 +218,7 @@
icon_override = 'icons/inventory/suit/mob_vr.dmi'
item_state = "russofurcoat"
+ armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
allowed = list (/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight, /obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask)
flags_inv = HIDETIE|HIDEHOLSTER
@@ -2060,7 +2061,7 @@ Departamental Swimsuits, for general use
cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS // It will keep you toasty tho, it's more than big enough to help with that! Just wrap the thing around you when on the surface, idk
icon = 'icons/vore/custom_clothes_vr.dmi'
icon_override = 'icons/vore/custom_onmob_vr.dmi'
- icon_state = "nikki"
+ icon_state = "nikkicape"
/obj/item/clothing/head/fluff/nikki
// I have never tryharded so much just to accomplish something so stupid as "Vore By Hat" in my entire life, and I apologize to each and every one of you.
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index a4fb81648d..974b4aa01e 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -1184,7 +1184,7 @@
icon = 'icons/vore/custom_clothes_vr.dmi'
icon_override = 'icons/vore/custom_onmob_vr.dmi'
suit_type = "probably not magical"
- icon_state = "nikki"
+ icon_state = "nikkicape"
w_class = ITEMSIZE_SMALL // It is after all only a necklace
armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0) // this isn't armor, it's a dorky frickin cape
siemens_coefficient = 0.9
diff --git a/code/modules/vore/mouseray.dm b/code/modules/vore/mouseray.dm
index 725deaef9c..ba154ea205 100644
--- a/code/modules/vore/mouseray.dm
+++ b/code/modules/vore/mouseray.dm
@@ -393,18 +393,18 @@
"space bear" = /mob/living/simple_mob/animal/space/bear,
"voracious lizard" = /mob/living/simple_mob/vore/aggressive/dino,
"giant frog" = /mob/living/simple_mob/vore/aggressive/frog,
- "jelly blob" = /mob/living/simple_mob/animal/space/jelly,
- "wolf" = /mob/living/simple_mob/animal/wolf,
- "direwolf" = /mob/living/simple_mob/animal/wolf/direwolf,
+ "jelly blob" = /mob/living/simple_mob/vore/jelly,
+ "wolf" = /mob/living/simple_mob/vore/wolf,
+ "direwolf" = /mob/living/simple_mob/vore/wolf/direwolf,
"great wolf" = /mob/living/simple_mob/vore/greatwolf,
"sect queen" = /mob/living/simple_mob/vore/sect_queen,
"sect drone" = /mob/living/simple_mob/vore/sect_drone,
"panther" = /mob/living/simple_mob/vore/aggressive/panther,
"giant snake" = /mob/living/simple_mob/vore/aggressive/giant_snake,
"deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw,
- "otie" = /mob/living/simple_mob/otie,
- "mutated otie" =/mob/living/simple_mob/otie/feral,
- "red otie" = /mob/living/simple_mob/otie/red,
+ "otie" = /mob/living/simple_mob/vore/otie,
+ "mutated otie" =/mob/living/simple_mob/vore/otie/feral,
+ "red otie" = /mob/living/simple_mob/vore/otie/red,
"defanged xenomorph" = /mob/living/simple_mob/vore/xeno_defanged,
"catslug" = /mob/living/simple_mob/vore/alienanimals/catslug,
"teppi" = /mob/living/simple_mob/vore/alienanimals/teppi,
@@ -471,11 +471,11 @@
/obj/item/weapon/gun/energy/mouseray/otie
name = "otie ray"
- tf_type = /mob/living/simple_mob/otie
+ tf_type = /mob/living/simple_mob/vore/otie
/obj/item/weapon/gun/energy/mouseray/direwolf
name = "dire wolf ray"
- tf_type = /mob/living/simple_mob/animal/wolf/direwolf
+ tf_type = /mob/living/simple_mob/vore/wolf/direwolf
/obj/item/weapon/gun/energy/mouseray/giantrat
name = "giant rat ray"
diff --git a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm
index 8d5fc2cb0b..31763d9adc 100644
--- a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm
+++ b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm
@@ -19,8 +19,8 @@
/mob/living/simple_mob/vore/rabbit,
/mob/living/simple_mob/animal/goat,
/mob/living/simple_mob/animal/sif/tymisian,
- /mob/living/simple_mob/animal/wolf/direwolf,
- /mob/living/simple_mob/otie/friendly,
+ /mob/living/simple_mob/vore/wolf/direwolf,
+ /mob/living/simple_mob/vore/otie/friendly,
/mob/living/simple_mob/vore/alienanimals/catslug,
/mob/living/simple_mob/vore/alienanimals/teppi,
/mob/living/simple_mob/vore/fennec,
@@ -595,4 +595,4 @@
update_use_power(USE_POWER_ACTIVE)
icon_state = "borgcharger1(old)"
else
- visible_message(fail_message)
\ No newline at end of file
+ visible_message(fail_message)
diff --git a/icons/_nanomaps/southern_cross_nanomap_z8.png b/icons/_nanomaps/southern_cross_nanomap_z8.png
index 9973ff4a2e..6434027a0f 100644
Binary files a/icons/_nanomaps/southern_cross_nanomap_z8.png and b/icons/_nanomaps/southern_cross_nanomap_z8.png differ
diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi
index 6270461d76..a4d9154749 100644
Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ
diff --git a/icons/inventory/feet/item.dmi b/icons/inventory/feet/item.dmi
index 51aa74dbc8..4d245a97a7 100644
Binary files a/icons/inventory/feet/item.dmi and b/icons/inventory/feet/item.dmi differ
diff --git a/icons/inventory/feet/mob.dmi b/icons/inventory/feet/mob.dmi
index 7aafeee41d..f53d917139 100644
Binary files a/icons/inventory/feet/mob.dmi and b/icons/inventory/feet/mob.dmi differ
diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi
index 94e7e1b8f3..538c3a57ee 100644
Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ
diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi
index 7ee58a394a..635188fbad 100644
Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ
diff --git a/icons/inventory/head/mob_tajaran.dmi b/icons/inventory/head/mob_tajaran.dmi
index b14ad2edd4..04eeeef1c4 100644
Binary files a/icons/inventory/head/mob_tajaran.dmi and b/icons/inventory/head/mob_tajaran.dmi differ
diff --git a/icons/inventory/head/mob_teshari.dmi b/icons/inventory/head/mob_teshari.dmi
index cd68dc9dab..f721408d07 100644
Binary files a/icons/inventory/head/mob_teshari.dmi and b/icons/inventory/head/mob_teshari.dmi differ
diff --git a/icons/inventory/suit/item.dmi b/icons/inventory/suit/item.dmi
index 2ca5afa8fb..b84c64f1ff 100644
Binary files a/icons/inventory/suit/item.dmi and b/icons/inventory/suit/item.dmi differ
diff --git a/icons/inventory/suit/mob.dmi b/icons/inventory/suit/mob.dmi
index 66f4a55e12..4235cf6f35 100644
Binary files a/icons/inventory/suit/mob.dmi and b/icons/inventory/suit/mob.dmi differ
diff --git a/icons/inventory/uniform/item.dmi b/icons/inventory/uniform/item.dmi
index 8c2c064012..8cf0bffad3 100644
Binary files a/icons/inventory/uniform/item.dmi and b/icons/inventory/uniform/item.dmi differ
diff --git a/icons/inventory/uniform/mob.dmi b/icons/inventory/uniform/mob.dmi
index 5d096791cc..09e27fc452 100644
Binary files a/icons/inventory/uniform/mob.dmi and b/icons/inventory/uniform/mob.dmi differ
diff --git a/icons/mob/hair_gradients.dmi b/icons/mob/hair_gradients.dmi
index 1a3c330355..b386cb8afa 100644
Binary files a/icons/mob/hair_gradients.dmi and b/icons/mob/hair_gradients.dmi differ
diff --git a/icons/mob/human_face.dmi b/icons/mob/human_face.dmi
index e48f502c43..8a7596f854 100644
Binary files a/icons/mob/human_face.dmi and b/icons/mob/human_face.dmi differ
diff --git a/icons/mob/human_face_m.dmi b/icons/mob/human_face_m.dmi
index 92cafc9afa..872cce2f3c 100644
Binary files a/icons/mob/human_face_m.dmi and b/icons/mob/human_face_m.dmi differ
diff --git a/icons/mob/items/lefthand_hats.dmi b/icons/mob/items/lefthand_hats.dmi
index d90e381dbe..bf46837f84 100644
Binary files a/icons/mob/items/lefthand_hats.dmi and b/icons/mob/items/lefthand_hats.dmi differ
diff --git a/icons/mob/items/righthand_hats.dmi b/icons/mob/items/righthand_hats.dmi
index 6923eb9cce..29fa46122b 100644
Binary files a/icons/mob/items/righthand_hats.dmi and b/icons/mob/items/righthand_hats.dmi differ
diff --git a/icons/mob/light_overlays.dmi b/icons/mob/light_overlays.dmi
index 3a185e2a65..799f6bc953 100644
Binary files a/icons/mob/light_overlays.dmi and b/icons/mob/light_overlays.dmi differ
diff --git a/icons/mob/pai_vr64x32.dmi b/icons/mob/pai_vr64x32.dmi
index 468e5cd216..8feafd80ab 100644
Binary files a/icons/mob/pai_vr64x32.dmi and b/icons/mob/pai_vr64x32.dmi differ
diff --git a/icons/mob/pai_vr64x64.dmi b/icons/mob/pai_vr64x64.dmi
index d9840c659e..ec0c95934d 100644
Binary files a/icons/mob/pai_vr64x64.dmi and b/icons/mob/pai_vr64x64.dmi differ
diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi
index 9672e0feb1..35911a76e8 100644
Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ
diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi
index c138e6093e..3cc43086bb 100644
Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ
diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi
index d302c760fc..49c9870a62 100644
Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ
diff --git a/icons/obj/light_overlays.dmi b/icons/obj/light_overlays.dmi
index f9f01aba80..7d9d46f1d0 100644
Binary files a/icons/obj/light_overlays.dmi and b/icons/obj/light_overlays.dmi differ
diff --git a/icons/obj/props/decor128x128.dmi b/icons/obj/props/decor128x128.dmi
new file mode 100644
index 0000000000..32e0580e40
Binary files /dev/null and b/icons/obj/props/decor128x128.dmi differ
diff --git a/icons/obj/props/decor64x64.dmi b/icons/obj/props/decor64x64.dmi
index 42f72c549c..2cfca942dd 100644
Binary files a/icons/obj/props/decor64x64.dmi and b/icons/obj/props/decor64x64.dmi differ
diff --git a/icons/obj/redgate.dmi b/icons/obj/redgate.dmi
new file mode 100644
index 0000000000..a681fd43df
Binary files /dev/null and b/icons/obj/redgate.dmi differ
diff --git a/icons/pdrink.dmi b/icons/pdrink.dmi
index dbbed71d51..0712ff0d7c 100644
Binary files a/icons/pdrink.dmi and b/icons/pdrink.dmi differ
diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi
index c7f14b8128..d7bcc60f87 100644
Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ
diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi
index b401831f62..461b44baff 100644
Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ
diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm
index fc63ab8678..6626fbe2e9 100644
--- a/maps/expedition_vr/aerostat/_aerostat.dm
+++ b/maps/expedition_vr/aerostat/_aerostat.dm
@@ -139,9 +139,11 @@
prob_fall = 30
//guard = 20
mobs_to_pick_from = list(
- /mob/living/simple_mob/animal/space/jelly = 1,
- /mob/living/simple_mob/mechanical/viscerator = 1,
- /mob/living/simple_mob/vore/aggressive/corrupthound = 1
+ /mob/living/simple_mob/vore/jelly = 6,
+ /mob/living/simple_mob/mechanical/viscerator = 6,
+ /mob/living/simple_mob/vore/aggressive/corrupthound = 3,
+ /mob/living/simple_mob/vore/oregrub = 2,
+ /mob/living/simple_mob/vore/oregrub/lava = 1
)
/obj/structure/old_roboprinter
diff --git a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm
index 329f95d0d8..c181fba6a6 100644
--- a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm
+++ b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm
@@ -72,7 +72,7 @@
prob_fall = 50
//guard = 20
mobs_to_pick_from = list(
- /mob/living/simple_mob/animal/space/jelly = 6,
+ /mob/living/simple_mob/vore/jelly = 6,
/mob/living/simple_mob/mechanical/viscerator = 6,
/mob/living/simple_mob/vore/aggressive/corrupthound = 3,
/mob/living/simple_mob/vore/oregrub = 2,
diff --git a/maps/gateway_archive_vr/snow_outpost.dm b/maps/gateway_archive_vr/snow_outpost.dm
index de9d70dfb1..c1e0adc8ae 100644
--- a/maps/gateway_archive_vr/snow_outpost.dm
+++ b/maps/gateway_archive_vr/snow_outpost.dm
@@ -17,7 +17,7 @@
power_environ = 0
mobcountmax = 100
floracountmax = 7000
- valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak,
+ valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/animal/sif/shantak,
/mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly)
valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
/obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
diff --git a/maps/gateway_vr/snow_outpost.dm b/maps/gateway_vr/snow_outpost.dm
index 1814683c45..84aae8da2f 100644
--- a/maps/gateway_vr/snow_outpost.dm
+++ b/maps/gateway_vr/snow_outpost.dm
@@ -23,7 +23,7 @@
dynamic_lighting = 0
mobcountmax = 50
floracountmax = 300
- valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak,
+ valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/animal/sif/shantak,
/mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly)
valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
/obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
diff --git a/maps/gateway_vr/snowfield.dm b/maps/gateway_vr/snowfield.dm
index 3aed3117ba..8127505ae9 100644
--- a/maps/gateway_vr/snowfield.dm
+++ b/maps/gateway_vr/snowfield.dm
@@ -32,7 +32,7 @@
valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar,
/mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar,
- /mob/living/simple_mob/animal/wolf)
+ /mob/living/simple_mob/vore/wolf)
valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
/obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
/obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
@@ -180,4 +180,4 @@
/obj/effect/floor_decal/derelict/d16
name = "derelict16"
- icon_state = "derelict16"
\ No newline at end of file
+ icon_state = "derelict16"
diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm
index 69c3a26f21..eaeef9426e 100644
--- a/maps/gateway_vr/wildwest.dm
+++ b/maps/gateway_vr/wildwest.dm
@@ -208,8 +208,8 @@
/mob/living/simple_mob/humanoid/merc/melee = 100,
/mob/living/simple_mob/humanoid/merc/ranged = 50,
/mob/living/simple_mob/humanoid/merc/ranged/space = 5,
- /mob/living/simple_mob/otie/feral = 10,
- /mob/living/simple_mob/otie/feral/chubby = 5
+ /mob/living/simple_mob/vore/otie/feral = 10,
+ /mob/living/simple_mob/vore/otie/feral/chubby = 5
),
list(
@@ -224,8 +224,8 @@
list(
/mob/living/simple_mob/humanoid/pirate = 100,
/mob/living/simple_mob/humanoid/pirate/ranged = 50,
- /mob/living/simple_mob/animal/wolf = 10,
- /mob/living/simple_mob/animal/wolf/direwolf = 5
+ /mob/living/simple_mob/vore/wolf = 10,
+ /mob/living/simple_mob/vore/wolf/direwolf = 5
)
)
diff --git a/maps/gateway_vr/zoo.dmm b/maps/gateway_vr/zoo.dmm
index 19fa7fc4da..688e547acf 100644
--- a/maps/gateway_vr/zoo.dmm
+++ b/maps/gateway_vr/zoo.dmm
@@ -7806,7 +7806,7 @@
/turf/simulated/floor/wood,
/area/awaymission/zoo)
"un" = (
-/mob/living/simple_mob/animal/wolf{
+/mob/living/simple_mob/vore/wolf{
faction = "zoo"
},
/turf/simulated/floor/holofloor/snow,
diff --git a/maps/groundbase/gb-mining.dm b/maps/groundbase/gb-mining.dm
index c4ee180a40..13ca26d1f9 100644
--- a/maps/groundbase/gb-mining.dm
+++ b/maps/groundbase/gb-mining.dm
@@ -42,7 +42,7 @@
/area/gb_mine/
ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg')
- base_turf = /turf/simulated/mineral/floor/vacuum
+ base_turf = /turf/simulated/mineral/floor
/area/gb_mine/unexplored
name = "Virgo 3c Underground"
icon_state = "unexplored"
diff --git a/maps/groundbase/gb-z1.dmm b/maps/groundbase/gb-z1.dmm
index fddace55f1..36e7a83e0d 100644
--- a/maps/groundbase/gb-z1.dmm
+++ b/maps/groundbase/gb-z1.dmm
@@ -1,6 +1,3 @@
-<<<<<<< HEAD
-lel
-=======
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/structure/bed/chair/sofa/bench/right{
@@ -56,6 +53,13 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
+"ag" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm,
+/turf/simulated/floor,
+/area/maintenance/groundbase/substation/aiciv)
"ah" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -101,11 +105,8 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/trashpit)
"an" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/wall/r_wall,
+/area/groundbase/command/tcomms/chamber)
"ao" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -134,11 +135,7 @@ lel
/obj/effect/landmark{
name = "droppod_landing"
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/southeastspur)
"as" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -251,7 +248,7 @@ lel
dir = 4;
pixel_x = 32
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"aE" = (
/obj/machinery/shieldgen,
@@ -343,6 +340,18 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos/monitoring)
+"aN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/groundbase/substation/aiciv)
"aO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 9
@@ -380,6 +389,18 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or1)
+"aU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/engislug{
+ ghostjoin = 1
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/engineering/lobby)
"aV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
@@ -403,13 +424,37 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
-"aZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
+"aY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/groundbase/engineering/lobby)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/gatslug{
+ ghostjoin = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/lobby)
+"aZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Men's Restroom"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/sidewalk/side,
+/area/groundbase/civilian/mensrestroom)
"ba" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled/dark,
@@ -467,6 +512,16 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
+"bk" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/button/windowtint/multitint{
+ id = "detoffice";
+ pixel_x = -15;
+ pixel_y = -30
+ },
+/obj/effect/landmark/start/detective,
+/turf/simulated/floor/carpet,
+/area/groundbase/security/detective)
"bl" = (
/obj/machinery/power/apc,
/obj/structure/cable/yellow,
@@ -543,25 +598,12 @@ lel
/turf/simulated/floor/outdoors/sidewalk,
/area/groundbase/level1/westspur)
"bw" = (
-<<<<<<< HEAD
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Teleporter"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/arrivals)
-=======
/obj/structure/closet/toolcloset,
/obj/item/weapon/pickaxe,
/obj/item/weapon/chainsaw,
+/obj/item/weapon/shovel,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets
"bx" = (
/obj/structure/table/reinforced,
/obj/item/device/floor_painter,
@@ -612,25 +654,18 @@ lel
/obj/machinery/alarm{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor,
+/area/maintenance/groundbase/substation/medcargo)
"bC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
"bD" = (
-<<<<<<< HEAD
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
-=======
/obj/structure/closet/secure_closet/engineering_electrical/double,
/obj/item/clothing/gloves/yellow,
/obj/item/clothing/gloves/yellow,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets
"bE" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -670,22 +705,6 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
"bH" = (
-<<<<<<< HEAD
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
-=======
/obj/structure/cable/yellow{
icon_state = "4-8"
},
@@ -693,10 +712,26 @@ lel
/obj/structure/closet/secure_closet/engineering_welding/double,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets
+"bI" = (
+/obj/machinery/porta_turret/stationary,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"bJ" = (
/turf/simulated/floor/outdoors/newdirt_nograss,
/area/groundbase/level1/eastspur)
+"bK" = (
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"bL" = (
/obj/machinery/vending/loadout/accessory,
/obj/item/device/radio/intercom{
@@ -725,6 +760,15 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
+"bN" = (
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"bO" = (
/obj/structure/table/bench/steel,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -755,6 +799,14 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/office)
+"bR" = (
+/obj/machinery/telecomms/hub/preset/groundbase,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"bS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -764,36 +816,26 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/office)
"bT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- icon_state = "map_vent_out";
- pressure_checks = 0;
- pressure_checks_default = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
+/obj/machinery/telecomms/server/presets/common,
+/turf/simulated/floor/tiled/dark{
nitrogen = 100;
oxygen = 0;
temperature = 80
},
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"bU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Cryogenic Storage"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/arrivals)
-"bV" = (
/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
+"bV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-<<<<<<< HEAD
-/turf/simulated/floor/lino,
-=======
/obj/structure/cable/yellow{
icon_state = "2-8"
},
@@ -806,7 +848,6 @@ lel
"bW" = (
/obj/structure/bed/chair/wood,
/turf/simulated/floor/wood,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/civilian/cafe)
"bX" = (
/obj/structure/cable/yellow{
@@ -851,11 +892,13 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
"cc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/telecomms/broadcaster/preset_right/groundbase,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"cd" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -887,14 +930,13 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"ch" = (
-/obj/machinery/atmospherics/binary/passive_gate/on{
- dir = 8
+/obj/machinery/pda_multicaster/prebuilt,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"ci" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
@@ -907,7 +949,7 @@ lel
/turf/simulated/floor,
/area/groundbase/security/armory)
"ck" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southeastspur)
"cl" = (
/obj/structure/table/reinforced,
@@ -930,6 +972,14 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
+"cm" = (
+/obj/machinery/telecomms/receiver/preset_right/groundbase,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"cn" = (
/obj/structure/table/reinforced,
/obj/item/device/retail_scanner/security,
@@ -954,21 +1004,17 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"cp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/tiled/asteroid_steel,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"cq" = (
/obj/structure/table/standard,
@@ -980,11 +1026,13 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/toolstorage)
"cr" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
+/obj/machinery/telecomms/server/presets/command,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/area/groundbase/command/tcomms/chamber)
"cs" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -994,9 +1042,26 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"ct" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"cu" = (
/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,
/obj/structure/table/reinforced,
@@ -1008,16 +1073,13 @@ lel
/turf/simulated/wall/r_wall,
/area/groundbase/security/briefing)
"cw" = (
-/obj/structure/table/hardwoodtable,
-/obj/machinery/camera/network/civilian{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "z1barstall2";
+ name = "Restroom Stall"
},
-/obj/random/mug,
-/obj/random/mug,
-/obj/random/mug,
-/obj/random/mug,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/cafe)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/bar)
"cx" = (
/obj/machinery/atmospherics/valve/digital{
name = "supply isolation valve"
@@ -1026,14 +1088,16 @@ lel
/turf/simulated/floor,
/area/groundbase/security/armory)
"cy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
nitrogen = 100;
oxygen = 0;
temperature = 80
},
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"cz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -1049,7 +1113,7 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
"cB" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
"cC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -1087,13 +1151,11 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/foyer)
"cH" = (
-/obj/item/weapon/stool/baystool/padded{
- dir = 4
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"cI" = (
/obj/machinery/power/apc{
@@ -1130,6 +1192,17 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
+"cM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"cN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -1186,11 +1259,16 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/storage)
"cR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"cS" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -1264,14 +1342,16 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"cX" = (
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/telecomms/server/presets/medical,
+/turf/simulated/floor/tiled/dark{
nitrogen = 100;
oxygen = 0;
temperature = 80
},
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"cY" = (
/obj/machinery/camera/network/medbay{
dir = 1
@@ -1279,18 +1359,29 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or1)
"cZ" = (
-/obj/structure/cryofeed{
- dir = 2
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
},
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"da" = (
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/northspur)
"db" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
+ id_tag = "z1barstall1";
name = "Restroom Stall"
},
/turf/simulated/floor/tiled/white,
@@ -1305,13 +1396,28 @@ lel
},
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/chamber)
-"de" = (
-/obj/machinery/cryopod/robot/door/gateway,
+"dd" = (
/obj/effect/floor_decal/techfloor/orange{
- dir = 8
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/station_map{
+ dir = 4;
+ pixel_x = -32
},
/turf/simulated/floor/tiled/techfloor,
/area/groundbase/civilian/arrivals)
+"de" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"df" = (
/turf/simulated/mineral/cave,
/area/groundbase/level1/eastspur)
@@ -1327,6 +1433,14 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/centsquare)
+"di" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"dj" = (
/obj/structure/table/marble,
/obj/machinery/chemical_dispenser/bar_soft/full,
@@ -1371,6 +1485,15 @@ lel
/obj/item/device/ticket_printer,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"do" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/telecomms/server/presets/unused,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"dp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -1390,12 +1513,31 @@ lel
},
/turf/simulated/floor/carpet,
/area/groundbase/security/detective)
+"dr" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"ds" = (
/obj/structure/bed/chair/sofa/bench/right{
dir = 1
},
/turf/simulated/floor/outdoors/newdirt_nograss,
/area/groundbase/level1/centsquare)
+"dt" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"du" = (
/obj/structure/table/standard,
/obj/item/stack/nanopaste,
@@ -1407,6 +1549,14 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or2)
+"dv" = (
+/obj/machinery/telecomms/server/presets/service/groundbase,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"dw" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -1430,16 +1580,13 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/robot)
"dy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
+/obj/machinery/telecomms/processor/preset_two,
+/turf/simulated/floor/tiled/dark{
nitrogen = 100;
oxygen = 0;
temperature = 80
},
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"dz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -1448,12 +1595,9 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/swtunnel)
-<<<<<<< HEAD
-=======
"dA" = (
/turf/simulated/mineral/cave,
/area/maintenance/groundbase/level1/setunnel)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"dB" = (
/obj/machinery/light{
dir = 8
@@ -1520,7 +1664,7 @@ lel
/area/maintenance/groundbase/level1/nwtunnel)
"dF" = (
/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/eastspur)
"dG" = (
/obj/structure/cable/yellow{
@@ -1647,12 +1791,19 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or1)
-<<<<<<< HEAD
"dS" = (
-/obj/effect/map_effect/portal/line/side_a,
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-/area/groundbase/level1/nw)
-=======
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/bar)
"dT" = (
/obj/machinery/telecomms/bus/preset_two/groundbase,
/turf/simulated/floor/tiled/dark{
@@ -1661,11 +1812,16 @@ lel
temperature = 80
},
/area/groundbase/command/tcomms/chamber)
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
"dU" = (
/obj/machinery/alarm,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
+"dV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/groundbase/civilian/cafe)
"dW" = (
/obj/structure/bed/chair/comfy/orange{
dir = 4
@@ -1682,6 +1838,16 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"dY" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"dZ" = (
/obj/structure/extinguisher_cabinet{
dir = 1;
@@ -1837,11 +2003,13 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/substation/aiciv)
"eo" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/telecomms/bus/preset_four,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"ep" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/tiled/dark,
@@ -1879,6 +2047,22 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
+"eu" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
+"ev" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"ew" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -1887,23 +2071,34 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/engineering/atmos)
"ex" = (
-/obj/effect/floor_decal/techfloor/orange{
+/obj/machinery/light{
dir = 1
},
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"ey" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/bar)
+"ez" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"eA" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -1933,9 +2128,17 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
"eD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/machinery/porta_turret/stationary,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"eE" = (
/obj/structure/flora/pottedplant,
/obj/machinery/camera/network/security,
@@ -1965,11 +2168,11 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
"eI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/medical/resleeving)
+/turf/simulated/wall,
+/area/groundbase/medical/autoresleeving)
"eJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
@@ -2018,9 +2221,31 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/morgue)
+"eQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"eR" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/unexplored/outdoors)
+"eS" = (
+/obj/machinery/telecomms/bus/preset_one,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"eT" = (
/obj/structure/railing/grey{
dir = 4
@@ -2086,6 +2311,17 @@ lel
},
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/command/ai/hall)
+"fa" = (
+/obj/machinery/telecomms/processor/preset_one,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"fb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
@@ -2094,6 +2330,15 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"fd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"fe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/multi_tile/glass/polarized{
@@ -2135,24 +2380,29 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or1)
"fi" = (
-/obj/machinery/telecomms/processor/preset_four,
+/obj/machinery/telecomms/processor/preset_three,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
oxygen = 0;
temperature = 80
},
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"fj" = (
-/obj/structure/table/hardwoodtable,
-/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
-/obj/machinery/firealarm{
- dir = 4
+/obj/structure/toilet{
+ dir = 8
},
-/obj/structure/sign/painting/library_secure{
- pixel_y = -30
+/obj/machinery/light/small,
+/obj/machinery/button/remote/airlock{
+ id = "z1barstall2";
+ pixel_x = -10;
+ pixel_y = 27;
+ specialfunctions = 4
},
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/cafe)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/bar)
"fk" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -2248,12 +2498,16 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"fu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/telecomms/bus/preset_three,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"fv" = (
/obj/machinery/computer/atmos_alert,
/obj/machinery/requests_console/preset/engineering{
@@ -2321,6 +2575,19 @@ lel
},
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/chamber)
+"fF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/exonet_node{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"fG" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2342,20 +2609,26 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/trashpit)
"fJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/freezer{
- dir = 1;
- icon_state = "freezer_1";
- set_temperature = 73;
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
use_power = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"fK" = (
/obj/structure/table/bench/steel,
/obj/structure/cable/yellow{
@@ -2372,6 +2645,15 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"fM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/groundbase/command/tcomms/chamber)
"fN" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -2381,6 +2663,12 @@ lel
},
/turf/simulated/floor,
/area/maintenance/groundbase/substation/secsci)
+"fO" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/groundbase/command/tcomms/chamber)
"fP" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -2455,20 +2743,9 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"fW" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/wall/r_wall,
+/area/groundbase/command/tcomms/chamber)
"fX" = (
/obj/structure/table/standard,
/obj/machinery/alarm/angled,
@@ -2487,17 +2764,26 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
"fZ" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 1;
+ frequency = 1380;
+ master_tag = "tcommsairlock";
+ pixel_x = -32;
+ req_one_access = list(61)
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61)
},
-/obj/machinery/cryopod{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/groundbase/command/tcomms/chamber)
"ga" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -2505,19 +2791,24 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
"gb" = (
-/obj/structure/table/hardwoodtable,
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/gate/thin{
- dir = 8;
id = "Cafe";
layer = 3.3
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor,
/area/groundbase/civilian/cafe)
"gc" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor,
/area/groundbase/cargo/mining)
+"gd" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"ge" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -2530,6 +2821,22 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
+"gg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Cafe"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/bmarble,
+/area/groundbase/civilian/cafe)
"gh" = (
/turf/unsimulated/wall/planetary/normal,
/area/groundbase/level1/westspur)
@@ -2644,17 +2951,25 @@ lel
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/northspur)
"gu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/button/remote/airlock{
+ id = "z1stall4";
+ pixel_y = 26;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lhallway)
+/area/groundbase/civilian/mensrestroom)
"gv" = (
/turf/simulated/wall/r_wall,
/area/groundbase/security/hos)
+"gw" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"gx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -2690,18 +3005,14 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/foyer)
"gB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/northspur)
@@ -2811,7 +3122,7 @@ lel
pixel_x = 32;
pixel_y = 32
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/northspur)
"gN" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
@@ -2826,20 +3137,19 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"gP" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 25
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1380;
+ id_tag = "tcommsairlock";
+ pixel_y = 24;
+ req_one_access = list(61)
},
-/obj/structure/cryofeed{
- dir = 1
- },
-/obj/machinery/computer/cryopod{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"gQ" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
@@ -2863,11 +3173,12 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/command/tcomms/storage)
"gU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -30
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"gV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -2876,7 +3187,14 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/command/tcomms/storage)
"gW" = (
-/turf/simulated/floor/lino,
+/obj/structure/table/marble,
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"gX" = (
/obj/structure/table/bench/padded,
@@ -2886,21 +3204,17 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
"gY" = (
-/obj/machinery/telecomms/hub/preset/groundbase,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"gZ" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"ha" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -2919,6 +3233,12 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
+"hc" = (
+/obj/machinery/camera/network/command{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"hd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -2945,7 +3265,7 @@ lel
req_access = null;
req_one_access = list(18)
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"hh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2997,13 +3317,6 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk,
/area/groundbase/level1/centsquare)
-<<<<<<< HEAD
-"hm" = (
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/maintenance/groundbase/level1/nwtunnel)
-=======
"hn" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -3013,7 +3326,6 @@ lel
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/tcomms/chamber)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"ho" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -3032,7 +3344,7 @@ lel
/area/groundbase/security/equipment)
"hq" = (
/turf/simulated/wall,
-/area/groundbase/civilian/gameroom)
+/area/groundbase/civilian/arrivals)
"hr" = (
/turf/simulated/wall,
/area/groundbase/civilian/cafe)
@@ -3083,6 +3395,12 @@ lel
/obj/effect/landmark/start/security,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
+"hy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"hz" = (
/obj/machinery/vending/assist,
/obj/machinery/light,
@@ -3117,18 +3435,17 @@ lel
/turf/simulated/floor/outdoors/newdirt_nograss,
/area/groundbase/level1/se)
"hF" = (
-/obj/structure/table/hardwoodtable,
-/obj/machinery/chemical_dispenser/bar_coffee/full{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/lino,
+/obj/structure/table/marble,
+/obj/random/paicard,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
-=======
+"hG" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/eastspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"hH" = (
/obj/machinery/alarm{
dir = 8
@@ -3219,6 +3536,20 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/mining)
+"hS" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/firealarm{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"hT" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -3252,13 +3583,11 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
"hY" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/camera/network/command{
+ dir = 4
},
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"hZ" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -3274,6 +3603,12 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/swtunnel)
+"ia" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"ib" = (
/obj/machinery/door/airlock/mining{
name = "Trash Pit";
@@ -3309,6 +3644,9 @@ lel
dir = 4
},
/obj/machinery/light,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -27
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/hos)
"ie" = (
@@ -3351,10 +3689,10 @@ lel
dir = 10;
pixel_y = 32
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"ij" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/security/lobby)
"ik" = (
/obj/structure/table/reinforced,
@@ -3430,8 +3768,17 @@ lel
},
/area/maintenance/groundbase/level1/netunnel)
"is" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
+"it" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"iu" = (
/obj/machinery/light/small{
dir = 8
@@ -3450,6 +3797,12 @@ lel
/obj/machinery/firealarm,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/warden)
+"ix" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"iy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
@@ -3469,6 +3822,7 @@ lel
/obj/structure/window/reinforced{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"iB" = (
@@ -3577,6 +3931,10 @@ lel
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/iaa1)
+"iL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"iM" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -3585,10 +3943,19 @@ lel
/turf/simulated/floor,
/area/groundbase/engineering/storage)
"iN" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "engine_public_access";
+ layer = 3.1;
+ name = "Engine Public Access Shutters";
+ opacity = 0
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor,
/area/groundbase/engineering/engine)
"iO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -3600,12 +3967,30 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
"iP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "tcommsairlock";
+ pixel_x = 32;
+ req_one_access = list(61)
},
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/groundbase/command/tcomms/chamber)
+"iQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"iR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -3615,6 +4000,16 @@ lel
"iS" = (
/turf/simulated/wall/r_wall,
/area/groundbase/engineering/atmos/monitoring)
+"iT" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 8;
+ network = "tcommsat"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"iU" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -3645,13 +4040,6 @@ lel
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/halls)
-<<<<<<< HEAD
-"iW" = (
-/turf/simulated/floor/outdoors/newdirt_nograss/virgo3c{
- outdoors = 0
- },
-/area/groundbase/unexplored/rock)
-=======
"iX" = (
/obj/machinery/power/apc{
dir = 8
@@ -3661,7 +4049,6 @@ lel
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/tcomms/chamber)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"iY" = (
/turf/simulated/mineral/floor,
/area/maintenance/groundbase/level1/netunnel)
@@ -3703,6 +4090,13 @@ lel
"jd" = (
/turf/simulated/wall,
/area/maintenance/groundbase/substation/medcargo)
+"je" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"jf" = (
/obj/structure/table/reinforced,
/obj/fiftyspawner/steel,
@@ -3766,6 +4160,27 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
+"jk" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
+"jl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1;
+ icon_state = "freezer_1";
+ set_temperature = 73;
+ use_power = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"jm" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -3794,6 +4209,9 @@ lel
charge = 100;
maxcharge = 15000
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"jq" = (
@@ -3835,6 +4253,15 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
+"ju" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"jv" = (
/obj/machinery/door_timer/cell_3{
id = "Cell C";
@@ -3872,7 +4299,6 @@ lel
/obj/machinery/light{
dir = 4
},
-/obj/item/weapon/storage/box/nifsofts_medical,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
"jx" = (
@@ -3886,6 +4312,13 @@ lel
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"jy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"jz" = (
/turf/simulated/wall,
/area/groundbase/medical/or2)
@@ -3908,20 +4341,20 @@ lel
"jC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Gamatorium"
+ name = "Cryo/Teleporter"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/gameroom)
+/area/groundbase/civilian/arrivals)
"jD" = (
/obj/structure/sign/directions/evac{
dir = 10;
pixel_x = 32;
pixel_y = 32
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"jE" = (
/obj/item/device/radio/intercom{
@@ -3985,15 +4418,11 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"jN" = (
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/button/windowtint/multitint{
- id = "detoffice0";
- pixel_x = -15;
- pixel_y = -30
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/effect/landmark/start/detective,
-/turf/simulated/floor/carpet,
-/area/groundbase/security/detective)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"jO" = (
/obj/structure/cable/heavyduty{
icon_state = "1-4"
@@ -4033,11 +4462,10 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
"jT" = (
-/obj/structure/disposaloutlet,
/obj/machinery/light{
dir = 1
},
-/obj/structure/disposalpipe/trunk,
+/obj/machinery/washing_machine,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"jU" = (
@@ -4079,6 +4507,12 @@ lel
/obj/item/device/ticket_printer,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
+"jY" = (
+/obj/structure/sign/directions/evac{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/groundbase/civilian/arrivals)
"jZ" = (
/obj/machinery/holoplant,
/obj/structure/cable{
@@ -4126,16 +4560,12 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"kf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
},
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
+/obj/machinery/firealarm,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"kg" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -4236,15 +4666,15 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
"kr" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/computer/telecomms/server{
+ dir = 8;
+ network = "tcommsat"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"ks" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -4333,18 +4763,28 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/medical/morgue)
"kB" = (
-/obj/random/vendorall,
/obj/machinery/alarm{
dir = 8
},
+/obj/machinery/vending/bepis,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
"kC" = (
-/obj/structure/bed/chair/backed_red{
+/obj/effect/floor_decal/techfloor/orange{
dir = 1
},
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/effect/landmark/start,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
+"kD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"kE" = (
/obj/machinery/button/remote/airlock{
desc = "A remote control switch for the medbay recovery room door.";
@@ -4361,7 +4801,6 @@ lel
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"kF" = (
@@ -4382,7 +4821,7 @@ lel
"kG" = (
/obj/machinery/turretid/lethal{
ailock = 1;
- control_area = /area/groundbase/command/tcomms;
+ control_area = /area/groundbase/command/tcomms/chamber;
name = "Telecoms turret control";
pixel_y = 32;
req_access = list(61)
@@ -4476,20 +4915,30 @@ lel
/obj/item/device/gps/security{
pixel_x = -3
},
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/security/equipment)
-"kP" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/equipment)
+"kN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
+"kO" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
+"kP" = (
+/obj/structure/table/glass,
+/obj/random/paicard,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/bar)
"kQ" = (
/obj/machinery/power/apc{
dir = 8;
@@ -4512,22 +4961,28 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
-"kT" = (
-/obj/machinery/computer/telecomms/server{
- dir = 8;
- network = "tcommsat"
+"kS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/light{
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
+"kT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"kU" = (
-/obj/machinery/camera/network/command{
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
dir = 8
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"kV" = (
/obj/machinery/light/small{
dir = 4
@@ -4547,19 +5002,31 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/bar)
"kX" = (
-/obj/random/vendorall,
/obj/machinery/firealarm{
dir = 4
},
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
"kY" = (
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/outdoors/newdirt_nograss/virgo3c,
-/area/groundbase/level1/centsquare)
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
+"kZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"la" = (
/obj/structure/table/marble,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -4601,13 +5068,15 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
"le" = (
-/obj/machinery/telecomms/broadcaster/preset_right/groundbase,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
-/area/groundbase/command/tcomms)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"lf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/multi_tile/glass{
@@ -4710,6 +5179,15 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
+"lm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"ln" = (
/obj/machinery/vending/wardrobe/detdrobe,
/turf/simulated/floor/tiled/dark,
@@ -4751,6 +5229,16 @@ lel
/obj/item/clothing/head/helmet/bulletproof,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
+"ls" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"lt" = (
/obj/effect/floor_decal/industrial/danger,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -4758,12 +5246,31 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
+"lu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"lv" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/area/groundbase/command/tcomms/chamber)
"lw" = (
/obj/machinery/shieldgen,
/turf/simulated/floor,
@@ -4841,6 +5348,9 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
"lE" = (
@@ -4894,12 +5404,28 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
+"lK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"lL" = (
/obj/machinery/computer/aiupload{
dir = 4
},
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/upload)
+"lM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"lN" = (
/obj/item/weapon/stool/baystool/padded{
dir = 4
@@ -5012,19 +5538,21 @@ lel
/turf/simulated/wall/r_wall,
/area/groundbase/security/halle)
"mb" = (
-/obj/structure/bed/chair/wood{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"mc" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/tcomms/chamber)
"md" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -5033,23 +5561,27 @@ lel
/turf/simulated/floor/outdoors/sidewalk,
/area/groundbase/level1/southeastspur)
"me" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecoms Control Room";
+ req_access = list(61)
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/groundbase/command/tcomms/chamber)
"mf" = (
-/obj/machinery/cryopod{
- dir = 2
+/obj/machinery/power/apc{
+ dir = 8
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"mg" = (
/obj/structure/table/marble,
/obj/structure/cable/yellow{
@@ -5114,6 +5646,22 @@ lel
},
/turf/simulated/floor/carpet/oracarpet,
/area/groundbase/engineering/ce)
+"mp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Crew Access"
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "engine_public_access";
+ layer = 3.1;
+ name = "Engine Public Access Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/bmarble,
+/area/groundbase/engineering/engine)
"mq" = (
/obj/machinery/alarm{
dir = 8
@@ -5143,8 +5691,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
-<<<<<<< HEAD
-=======
"mu" = (
/obj/effect/floor_decal/industrial/danger/corner{
dir = 4
@@ -5158,7 +5704,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"mv" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -5190,6 +5735,11 @@ lel
/obj/machinery/vending/altevian,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/foodplace)
+"mB" = (
+/obj/machinery/light,
+/obj/effect/landmark/free_ai_shell,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/groundbase/command/ai/upload)
"mC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5212,6 +5762,7 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/structure/closet/secure_closet/atmos_personal,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos/monitoring)
"mF" = (
@@ -5277,8 +5828,20 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/security/briefing)
"mL" = (
-/obj/machinery/media/jukebox,
-/turf/simulated/floor/wood,
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = -30
+ },
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"mM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5316,22 +5879,11 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"mQ" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
-=======
/obj/effect/mouse_hole_spawner{
dir = 8
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southeastspur)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"mR" = (
/obj/structure/bed/chair/comfy/orange{
dir = 4
@@ -5358,6 +5910,15 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
+"mU" = (
+/obj/item/weapon/storage/box/nifsofts_mining,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/personal_shield_generator/belt/mining/loaded,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/mining)
"mV" = (
/obj/machinery/vending/loadout/gadget,
/turf/simulated/floor/tiled,
@@ -5464,6 +6025,18 @@ lel
/obj/machinery/hologram/holopad,
/turf/simulated/floor/carpet/oracarpet,
/area/groundbase/engineering/ce)
+"nj" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/personal_shield_generator/security/loaded,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/equipment)
"nk" = (
/obj/effect/step_trigger/teleporter/to_mining{
pixel_y = -32
@@ -5510,13 +6083,6 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos/monitoring)
-"np" = (
-/obj/machinery/light,
-/obj/item/weapon/stool/baystool/padded{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/cafe)
"nq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5604,6 +6170,10 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"nz" = (
+/obj/structure/redgate,
+/turf/simulated/floor/reinforced,
+/area/groundbase/civilian/toolstorage)
"nA" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/clothing/suit/armor/vest/wolftaur{
@@ -5725,6 +6295,10 @@ lel
/obj/structure/cable/yellow{
icon_state = "2-4"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
"nO" = (
@@ -5788,11 +6362,12 @@ lel
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/iaa1)
"nW" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"nX" = (
/obj/machinery/atmospherics/unary/freezer{
dir = 8
@@ -5820,8 +6395,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
-<<<<<<< HEAD
-=======
"oa" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 4;
@@ -5838,10 +6411,9 @@ lel
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"ob" = (
/obj/effect/landmark/vines,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/eastspur)
"oc" = (
/obj/structure/morgue{
@@ -5883,11 +6455,9 @@ lel
/turf/simulated/floor/carpet/gaycarpet,
/area/groundbase/civilian/clown)
"oi" = (
-/obj/structure/cryofeed{
- dir = 2
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/lobby)
"oj" = (
/obj/machinery/suit_cycler/engineering,
/turf/simulated/floor/tiled,
@@ -5962,14 +6532,12 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/morgue)
"oq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/door/airlock{
+ id_tag = "z1stall4";
+ name = "Men's Restroom Stall"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"or" = (
/obj/structure/stairs/spawner/west,
/obj/structure/railing/grey{
@@ -6009,21 +6577,6 @@ lel
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
-"ow" = (
-/obj/machinery/cryopod{
- dir = 2
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
"ox" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -6092,6 +6645,18 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/office)
+"oF" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/computer/cryopod{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"oG" = (
/obj/machinery/light{
dir = 4
@@ -6108,9 +6673,17 @@ lel
},
/area/groundbase/security/lobby)
"oI" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"oJ" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -6130,6 +6703,14 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
+"oK" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"oL" = (
/obj/machinery/door/airlock{
id_tag = "z1stall1";
@@ -6230,6 +6811,12 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/morgue)
+"oX" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"oY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -6279,11 +6866,7 @@ lel
},
/area/maintenance/groundbase/level1/netunnel)
"pc" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/unexplored/outdoors)
"pe" = (
/obj/machinery/firealarm{
@@ -6308,13 +6891,7 @@ lel
dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"ph" = (
@@ -6372,18 +6949,6 @@ lel
/obj/machinery/light/small,
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
-"pp" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/engislug{
- ghostjoin = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/engineering/lobby)
"pq" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -6514,15 +7079,12 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"pI" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/outdoors/sidewalk,
+/area/groundbase/level1/centsquare)
"pJ" = (
/obj/machinery/light{
dir = 4
@@ -6566,18 +7128,17 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/halls)
"pO" = (
-/obj/structure/table/woodentable,
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"pP" = (
/obj/machinery/vending/loadout/uniform,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6632,6 +7193,18 @@ lel
outdoors = 0
},
/area/groundbase/unexplored/rock)
+"pW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"pX" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -6643,10 +7216,6 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/warden)
-"pZ" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/cafe)
"qa" = (
/turf/simulated/wall/r_wall,
/area/groundbase/security/iaa1)
@@ -6715,17 +7284,6 @@ lel
/obj/item/device/radio/off,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
-"qh" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"qi" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -6770,27 +7328,6 @@ lel
"qp" = (
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/office)
-"qq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"qr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -6911,8 +7448,8 @@ lel
/obj/machinery/cell_charger{
pixel_y = 7
},
-/obj/item/weapon/cell/high,
-/obj/item/weapon/cell/high,
+/obj/item/weapon/cell/super,
+/obj/item/weapon/cell/super,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/mining)
"qG" = (
@@ -6966,6 +7503,7 @@ lel
dir = 1;
pixel_y = -22
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
"qP" = (
@@ -6988,18 +7526,11 @@ lel
},
/turf/simulated/floor,
/area/maintenance/groundbase/substation/medcargo)
-"qS" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/structure/cryofeed{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
+"qT" = (
+/obj/machinery/power/apc,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"qU" = (
/obj/effect/floor_decal/industrial/danger{
dir = 1
@@ -7007,23 +7538,25 @@ lel
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/mining/drill,
+/obj/machinery/mining/drill/loaded,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/mining)
"qV" = (
-/obj/item/weapon/stool/baystool/padded{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/cafe)
-"qX" = (
-/obj/structure/bed/chair/wood{
- dir = 4
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/machinery/alarm{
+ dir = 8
},
/obj/structure/sign/painting/library_secure{
pixel_y = 30
},
-/turf/simulated/floor/wood,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"qY" = (
/obj/structure/closet/crate,
@@ -7047,6 +7580,7 @@ lel
/obj/structure/table/reinforced,
/obj/item/device/retail_scanner/medical,
/obj/item/weapon/storage/box/body_record_disk,
+/obj/item/weapon/storage/box/nifsofts_medical,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
"ra" = (
@@ -7173,13 +7707,11 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"rk" = (
-/obj/machinery/telecomms/receiver/preset_right/groundbase,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/alarm{
+ dir = 1
},
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"rl" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -7210,6 +7742,15 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
+"ro" = (
+/obj/machinery/firealarm{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"rp" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8
@@ -7277,6 +7818,9 @@ lel
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"ry" = (
@@ -7346,16 +7890,9 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/autoresleeving)
"rG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/telecomms/server/presets/medical,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/apparel)
"rH" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
@@ -7452,15 +7989,6 @@ lel
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
-"rS" = (
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/obj/random/instrument,
-/obj/random/instrument,
-/obj/item/instrument/guitar,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
"rT" = (
/turf/simulated/floor/outdoors/newdirt_nograss{
outdoors = 0
@@ -7583,30 +8111,16 @@ lel
/turf/simulated/floor,
/area/groundbase/engineering/storage)
"sk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/obj/structure/mirror{
- icon_state = "mirror_broke";
- pixel_y = 37
- },
-/obj/structure/sink/kitchen{
- pixel_y = 16
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/asteroid_steel,
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"sl" = (
/obj/machinery/camera/network/engineering{
dir = 4
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"sm" = (
@@ -7651,8 +8165,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
-<<<<<<< HEAD
-=======
"sq" = (
/obj/structure/table/woodentable,
/obj/random/paicard,
@@ -7664,7 +8176,6 @@ lel
},
/turf/simulated/floor/carpet/turcarpet,
/area/groundbase/civilian/gameroom)
->>>>>>> 1df6e69b74... Merge pull request #13038 from Very-Soft/teppipai
"sr" = (
/obj/structure/toilet,
/obj/machinery/button/remote/airlock{
@@ -7684,27 +8195,6 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
-"st" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- dir = 1;
- frequency = 1380;
- master_tag = "tcommsairlock";
- pixel_x = -32;
- req_one_access = list(61)
- },
-/obj/effect/map_helper/airlock/door/ext_door,
-/obj/machinery/door/airlock/maintenance_hatch{
- frequency = null;
- icon_state = "door_locked";
- id_tag = null;
- locked = 1;
- name = "Telecoms Server Access";
- req_access = list(61)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/tcomms)
"su" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -7798,18 +8288,19 @@ lel
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
-"sH" = (
-/obj/structure/bed/chair/backed_red{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
-"sI" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
+"sF" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
/turf/simulated/floor,
-/area/maintenance/groundbase/substation/aiciv)
+/area/groundbase/civilian/toolstorage)
+"sH" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"sJ" = (
/obj/structure/table/rack,
/obj/item/device/suit_cooling_unit,
@@ -7878,6 +8369,7 @@ lel
/obj/machinery/light{
dir = 4
},
+/obj/item/weapon/hand_labeler,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/toolstorage)
"sQ" = (
@@ -7901,27 +8393,17 @@ lel
/obj/effect/map_effect/portal/line/side_a{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southwestspur)
-"sT" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"sU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/ntnet_relay,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/outdoors/sidewalk,
+/area/groundbase/level1/centsquare)
"sV" = (
/turf/simulated/floor/outdoors/newdirt{
outdoors = 0
@@ -7960,10 +8442,14 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"tb" = (
-/obj/structure/table/woodentable,
-/obj/random/coin/sometimes,
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"tc" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -7983,6 +8469,12 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/eastspur)
+"te" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"tf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -8069,14 +8561,10 @@ lel
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/level1/centsquare)
"to" = (
/obj/machinery/washing_machine,
@@ -8100,11 +8588,7 @@ lel
/obj/effect/map_effect/portal/master/side_a/gb_wilds/west{
dir = 4
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/westspur)
"tr" = (
/obj/structure/table/rack/shelf/steel,
@@ -8148,6 +8632,7 @@ lel
/obj/item/gunbox/warden,
/obj/structure/closet/secure_closet/warden,
/obj/item/device/ticket_printer,
+/obj/item/weapon/gun/energy/sizegun,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/warden)
"tx" = (
@@ -8193,6 +8678,17 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"tA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/gun/energy/laser/practice,
+/obj/machinery/alarm{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"tB" = (
/obj/structure/bed/chair/sofa/bench/left{
dir = 1
@@ -8214,11 +8710,7 @@ lel
/obj/effect/landmark{
name = "droppod_landing"
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/unexplored/outdoors)
"tF" = (
/obj/structure/cable{
@@ -8238,7 +8730,7 @@ lel
/turf/simulated/floor/outdoors/sidewalk/side,
/area/maintenance/groundbase/level1/swtunnel)
"tG" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/northspur)
"tH" = (
/obj/structure/dispenser{
@@ -8311,12 +8803,6 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/centsquare)
-"tQ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/command/tcomms)
"tS" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/gun/energy/laser{
@@ -8331,7 +8817,7 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
"tT" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs{
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow{
outdoors = 0
},
/area/groundbase/unexplored/outdoors)
@@ -8375,6 +8861,19 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
+"tZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"ua" = (
/turf/simulated/wall,
/area/groundbase/level1/se)
@@ -8398,10 +8897,6 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/detective)
"ue" = (
-/obj/machinery/door/airlock{
- name = "Men's Restroom"
- },
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
@@ -8411,7 +8906,15 @@ lel
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/simulated/floor/bmarble,
+/obj/structure/disposalpipe/tagger{
+ dir = 4;
+ name = "package tagger - Resleeving";
+ sort_tag = "Resleeving"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"uf" = (
/obj/structure/table/standard,
@@ -8439,15 +8942,12 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
-<<<<<<< HEAD
-=======
"uh" = (
/obj/structure/stairs/spawner/south,
/turf/simulated/floor/outdoors/newdirt_nograss{
outdoors = 0
},
/area/maintenance/groundbase/level1/setunnel)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"ui" = (
/obj/machinery/light/floortube{
dir = 8;
@@ -8526,15 +9026,6 @@ lel
},
/turf/simulated/floor/carpet/gaycarpet,
/area/groundbase/civilian/clown)
-"uq" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
"ur" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/green,
/obj/machinery/meter,
@@ -8661,9 +9152,17 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"uJ" = (
-/obj/structure/bed/chair/backed_red,
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/groundbase/civilian/arrivals)
"uK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -8702,17 +9201,9 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
"uN" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"uO" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -8740,6 +9231,16 @@ lel
/obj/structure/window/reinforced/full,
/turf/simulated/floor,
/area/groundbase/civilian/apparel)
+"uS" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/obj/machinery/alarm{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"uT" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Engine Airlock";
@@ -8756,12 +9257,11 @@ lel
/obj/machinery/alarm{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ external_pressure_bound = 101.3;
+ external_pressure_bound_default = 101.3;
+ pressure_checks = 1;
+ pressure_checks_default = 1
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
@@ -8776,7 +9276,7 @@ lel
/obj/effect/map_effect/portal/line/side_a{
dir = 4
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
"uX" = (
/obj/machinery/light_switch{
@@ -8785,24 +9285,15 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
-"uY" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"uZ" = (
/obj/machinery/photocopier,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/warden)
"va" = (
/obj/structure/frame,
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"vb" = (
@@ -8833,6 +9324,7 @@ lel
/obj/structure/cable/yellow{
icon_state = "2-4"
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/foyer)
"vf" = (
@@ -8864,10 +9356,12 @@ lel
/obj/machinery/camera/network/medbay{
dir = 4
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
"vi" = (
-/turf/simulated/floor/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"vj" = (
/turf/simulated/floor/outdoors/newdirt_nograss{
@@ -8879,19 +9373,13 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
"vl" = (
-/obj/machinery/light/small,
-/obj/structure/toilet/prison{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "z1stall4";
- pixel_x = -27;
- specialfunctions = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/asteroid_steel,
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"vm" = (
/obj/machinery/smartfridge/drinks,
@@ -8905,15 +9393,8 @@ lel
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/iaa1)
"vo" = (
-/obj/structure/table/hardwoodtable,
-/obj/item/weapon/reagent_containers/glass/rag,
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/lino,
+/obj/structure/table/marble,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"vp" = (
/turf/simulated/floor/outdoors/newdirt{
@@ -9038,6 +9519,10 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/halls)
+"vC" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/techmaint,
+/area/groundbase/engineering/atmos)
"vD" = (
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for the AI core maintenance door.";
@@ -9060,31 +9545,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/bar)
-"vF" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar)
-"vG" = (
-/obj/machinery/porta_turret/stationary,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"vH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
@@ -9100,30 +9560,24 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/security/halls)
"vI" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/light_switch{
- pixel_x = 15;
- pixel_y = 30
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
},
-/turf/simulated/floor/tiled/asteroid_steel,
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
-"vJ" = (
-/obj/effect/landmark/arrivals,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
"vK" = (
/obj/structure/table/bench/padded,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -9133,30 +9587,10 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/foodplace)
"vL" = (
-/obj/structure/sign/directions/stairs_up{
- dir = 8;
- pixel_x = -32;
- pixel_y = 8
- },
-/obj/structure/sign/directions/bar{
- dir = 8;
- pixel_x = -32;
- pixel_y = -4
- },
-/obj/structure/sign/directions/chapel{
- dir = 8;
- pixel_x = -32;
- pixel_y = -10
- },
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_x = -32;
- pixel_y = 2
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/level1/northspur)
+/turf/simulated/wall,
+/area/groundbase/level1/nw)
"vM" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southwestspur)
"vN" = (
/turf/simulated/floor/outdoors/sidewalk/side{
@@ -9229,6 +9663,10 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/halle)
+"vY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/wall,
+/area/groundbase/medical/resleeving)
"vZ" = (
/obj/machinery/alarm{
dir = 4
@@ -9384,9 +9822,11 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"wr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"ws" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9435,30 +9875,23 @@ lel
},
/area/maintenance/groundbase/level1/stunnel)
"wx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-<<<<<<< HEAD
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-=======
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/level1/centsquare)
"wy" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 6
+/obj/machinery/door/airlock/glass{
+ name = "redgate"
},
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/bmarble,
+/area/groundbase/civilian/toolstorage)
"wA" = (
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
@@ -9499,8 +9932,15 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"wH" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/arrivals)
+/obj/item/weapon/deck/cah,
+/obj/item/weapon/deck/cah/black,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/wizoff,
+/obj/structure/closet/walllocker_double{
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"wI" = (
/obj/item/weapon/storage/backpack/parachute{
pixel_x = 4;
@@ -9605,14 +10045,12 @@ lel
/turf/simulated/wall,
/area/groundbase/civilian/bar)
"wQ" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"wR" = (
/turf/simulated/floor,
/area/maintenance/groundbase/substation/aiciv)
@@ -9728,6 +10166,9 @@ lel
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -28
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
"xc" = (
@@ -9750,19 +10191,15 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/storage)
"xe" = (
-/obj/machinery/light/small,
-/obj/structure/toilet/prison{
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
+/obj/structure/sink/kitchen{
dir = 4;
- id = "z1stall4";
- pixel_x = -27;
- specialfunctions = 4
+ pixel_x = 12
},
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/asteroid_steel,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"xf" = (
/obj/machinery/power/breakerbox/activated{
@@ -9808,33 +10245,11 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/foodplace)
"xk" = (
-<<<<<<< HEAD
-/obj/item/weapon/storage/pill_bottle/dice,
-/obj/item/weapon/storage/pill_bottle/dice,
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
-"xl" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
-=======
/obj/effect/mouse_hole_spawner{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southwestspur)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"xm" = (
/obj/effect/floor_decal/industrial/danger,
/obj/machinery/atmospherics/pipe/simple/hidden/black,
@@ -9943,8 +10358,6 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"xt" = (
-/obj/structure/table/marble,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"xu" = (
@@ -10033,17 +10446,6 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
-"xG" = (
-/obj/machinery/telecomms/processor/preset_one,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"xH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -10097,17 +10499,6 @@ lel
/obj/machinery/firealarm,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/iaa2)
-"xN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "engineaccess";
- name = "Engine Access Shutters"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/engine)
"xO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -10124,23 +10515,14 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/toolstorage)
"xQ" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/turf/simulated/floor/outdoors/grass/seasonal/dark/notrees_nomobs_nosnow{
+ outdoors = 0
},
-/area/groundbase/command/tcomms)
+/area/groundbase/level1/eastspur)
"xR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/item/weapon/stool/baystool/padded{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"xS" = (
@@ -10192,12 +10574,22 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
-"xY" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 10
+"xX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
+"xY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"xZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -10224,7 +10616,7 @@ lel
dir = 1;
pixel_y = 32
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"ye" = (
/obj/structure/closet/secure_closet/personal{
@@ -10310,6 +10702,7 @@ lel
/obj/machinery/light{
dir = 4
},
+/obj/structure/closet/radiation,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
"yn" = (
@@ -10338,7 +10731,6 @@ lel
/obj/machinery/firealarm{
dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"ys" = (
@@ -10350,10 +10742,6 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
-"yt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/tcomms)
"yu" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -10407,6 +10795,19 @@ lel
},
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/medical/or2)
+"yy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"yz" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -10425,12 +10826,14 @@ lel
/obj/effect/floor_decal/corner/pink{
dir = 6
},
-/obj/machinery/disposal/wall/cleaner{
- dir = 8
- },
/obj/structure/disposalpipe/trunk{
dir = 1
},
+/obj/machinery/disposal/wall/cleaner{
+ desc = "Automatically cleans and transports items to the local auto-resleeving facilities.";
+ dir = 8;
+ name = "auto-resleeving equipment deposit"
+ },
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
"yD" = (
@@ -10510,13 +10913,9 @@ lel
/turf/simulated/floor/carpet,
/area/groundbase/security/detective)
"yM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/level1/centsquare)
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"yN" = (
/obj/machinery/power/apc{
dir = 4
@@ -10629,14 +11028,6 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
-"za" = (
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"zb" = (
/obj/machinery/door/airlock/multi_tile/glass/polarized{
id_tag = null;
@@ -10669,21 +11060,6 @@ lel
},
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/chamber)
-"ze" = (
-/obj/machinery/cryopod{
- dir = 2
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/arrivals)
"zf" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -10737,15 +11113,6 @@ lel
},
/turf/simulated/wall/r_wall,
/area/groundbase/engineering/techstorage)
-"zm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/telecomms/server/presets/unused,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"zn" = (
/obj/structure/stairs/spawner/north,
/turf/simulated/floor/outdoors/sidewalk,
@@ -10810,16 +11177,9 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"zu" = (
-/obj/structure/table/hardwoodtable,
-/obj/machinery/door/blast/gate/thin{
- dir = 8;
- id = "Cafe";
- layer = 3.3
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/lino,
+/obj/structure/table/marble,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"zv" = (
/obj/machinery/requests_console/preset/engineering{
@@ -10841,15 +11201,6 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
-"zy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"zz" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -10862,17 +11213,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/command/tcomms/foyer)
-"zA" = (
-/obj/machinery/telecomms/processor/preset_three,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"zB" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -10948,13 +11288,6 @@ lel
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "engineaccess";
- name = "Engine Access";
- pixel_x = -25;
- req_access = list(10)
- },
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
"zJ" = (
@@ -10970,13 +11303,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/iaa1)
-"zL" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"zM" = (
/obj/machinery/power/terminal{
dir = 8
@@ -10994,20 +11320,12 @@ lel
pressure_checks = 1;
pressure_checks_default = 1
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor,
/area/maintenance/groundbase/trashpit)
-"zO" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
"zP" = (
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"zQ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -11103,10 +11421,6 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"Ab" = (
@@ -11152,19 +11466,8 @@ lel
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
-<<<<<<< HEAD
-"Af" = (
-/obj/effect/map_effect/portal/line/side_a{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-/area/groundbase/level1/westspur)
-"Ah" = (
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
"Ah" = (
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/eastspur)
"Ai" = (
/obj/machinery/conveyor_switch/oneway{
@@ -11226,8 +11529,6 @@ lel
/obj/structure/table/rack/shelf,
/obj/item/device/cataloguer,
/obj/item/device/cataloguer,
-/obj/item/device/cataloguer/compact,
-/obj/item/device/cataloguer/compact,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"Ao" = (
@@ -11295,13 +11596,6 @@ lel
},
/turf/simulated/floor,
/area/maintenance/groundbase/trashpit)
-"Ax" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
"Ay" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -11333,10 +11627,6 @@ lel
/obj/machinery/light{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"AC" = (
@@ -11379,17 +11669,12 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
"AH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"AI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -11421,7 +11706,7 @@ lel
/area/prison/cell_block/gb)
"AL" = (
/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"AM" = (
/obj/structure/cable{
@@ -11434,12 +11719,17 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
"AO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "2-4"
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"AP" = (
/obj/machinery/firealarm{
dir = 8
@@ -11468,12 +11758,14 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"AU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/alarm{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"AV" = (
/obj/machinery/light{
dir = 4
@@ -11505,6 +11797,17 @@ lel
"AZ" = (
/turf/simulated/mineral/cave,
/area/groundbase/level1/sw)
+"Ba" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/obj/random/mug,
+/obj/random/mug,
+/obj/random/mug,
+/obj/random/mug,
+/turf/simulated/floor/lino,
+/area/groundbase/civilian/cafe)
"Bb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -11573,13 +11876,14 @@ lel
},
/area/groundbase/level1/se)
"Bj" = (
-/obj/machinery/door/airlock{
- id_tag = "z1stall5";
- name = "Men's Restroom Stall"
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 12
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel_ridged,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"Bk" = (
/turf/simulated/floor/outdoors/newdirt_nograss{
@@ -11809,12 +12113,6 @@ lel
/obj/effect/landmark/vermin,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
-"BI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"BJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
@@ -11845,6 +12143,12 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
+"BM" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"BN" = (
/obj/machinery/alarm,
/turf/simulated/floor/tiled,
@@ -11856,8 +12160,6 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
-<<<<<<< HEAD
-=======
"BP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -11874,7 +12176,6 @@ lel
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"BQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -11906,20 +12207,6 @@ lel
},
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/iaa1)
-"BU" = (
-/obj/machinery/airlock_sensor{
- dir = 8;
- pixel_x = 25
- },
-/obj/effect/map_helper/airlock/sensor/chamber_sensor,
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1380;
- id_tag = "tcommsairlock";
- pixel_y = 24;
- req_one_access = list(61)
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"BV" = (
/obj/machinery/light{
dir = 8
@@ -12054,6 +12341,7 @@ lel
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
"Cn" = (
@@ -12115,13 +12403,14 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"Cu" = (
-/obj/machinery/telecomms/bus/preset_two/groundbase,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
-/area/groundbase/command/tcomms)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"Cv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -12261,20 +12550,12 @@ lel
},
/area/groundbase/level1/northspur)
"CN" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
-=======
/obj/machinery/light{
dir = 4
},
/obj/machinery/mineral/equipment_vendor/survey,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"CO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
dir = 9
@@ -12294,17 +12575,6 @@ lel
/obj/effect/landmark/start/bartender,
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
-"CQ" = (
-/obj/machinery/telecomms/bus/preset_three,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"CR" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
@@ -12371,18 +12641,12 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/command/tcomms/storage)
"CZ" = (
-<<<<<<< HEAD
-/obj/machinery/holoplant,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
-=======
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"Db" = (
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/level1/southeastspur)
@@ -12561,7 +12825,8 @@ lel
dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
@@ -12585,13 +12850,13 @@ lel
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/northspur)
"DB" = (
-/obj/machinery/door/airlock{
- id_tag = "z1stall4";
- name = "Men's Restroom Stall"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel_ridged,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/mensrestroom)
"DC" = (
/obj/structure/bookcase,
@@ -12607,6 +12872,13 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/hos)
+"DD" = (
+/obj/machinery/door/airlock{
+ id_tag = "z1stall5";
+ name = "Men's Restroom Stall"
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"DE" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -12624,14 +12896,11 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/substation/medcargo)
"DF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/cafe)
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"DG" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 6
@@ -12676,14 +12945,8 @@ lel
/area/groundbase/cargo/mining)
"DM" = (
/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
-"DN" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt_nograss/virgo3c,
-/area/groundbase/level1/centsquare)
"DO" = (
/obj/machinery/mineral/output,
/obj/effect/floor_decal/industrial/outline/red,
@@ -12714,11 +12977,15 @@ lel
/turf/simulated/wall,
/area/groundbase/medical/equipment)
"DR" = (
-/obj/machinery/firealarm{
- dir = 4
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"DS" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -12737,8 +13004,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
-<<<<<<< HEAD
-=======
"DU" = (
/obj/structure/sign/directions/stairs_up{
dir = 8;
@@ -12760,9 +13025,8 @@ lel
pixel_x = -32;
pixel_y = 2
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/northspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"DV" = (
/obj/machinery/vending/medical,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -12822,7 +13086,7 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
"Eb" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"Ec" = (
/obj/machinery/door/window/westleft{
@@ -12865,15 +13129,6 @@ lel
},
/turf/simulated/floor,
/area/groundbase/unexplored/outdoors)
-"Ei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"Ej" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -12929,9 +13184,11 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"Ep" = (
-/obj/effect/landmark/start,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Eq" = (
/obj/structure/table/rack{
dir = 8;
@@ -13011,21 +13268,10 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"Ez" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
-=======
/obj/machinery/suit_cycler/engineering,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/gateway)
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"EA" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light{
@@ -13094,16 +13340,21 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
-"EM" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/blast/gate/thin{
- dir = 8;
- id = "Cafe";
- layer = 3.3
+"EL" = (
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 24
},
-/turf/simulated/floor,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"EM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"EN" = (
/obj/machinery/camera/network/civilian{
@@ -13115,7 +13366,7 @@ lel
/area/groundbase/civilian/gateway)
"EO" = (
/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"EP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -13270,13 +13521,13 @@ lel
/turf/simulated/floor,
/area/groundbase/unexplored/outdoors)
"Fg" = (
-/obj/random/vendorall,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/obj/machinery/camera/network/civilian{
dir = 8
},
+/obj/machinery/vending/snack,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/apparel)
"Fh" = (
@@ -13299,12 +13550,15 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"Fj" = (
-/obj/structure/bed/chair/backed_red{
+/obj/effect/floor_decal/techfloor/orange{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/effect/landmark/arrivals,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Fk" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -13342,17 +13596,6 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/netunnel)
-"Fn" = (
-/obj/structure/table/woodentable,
-/obj/item/device/paicard,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
"Fp" = (
/obj/machinery/vending/wardrobe/virodrobe,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -13379,13 +13622,6 @@ lel
/obj/effect/landmark/start/engineer,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
-"Fs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"Ft" = (
/obj/structure/bed/chair/comfy/black,
/obj/effect/landmark/start/hos,
@@ -13400,7 +13636,7 @@ lel
/area/groundbase/engineering/storage)
"Fv" = (
/obj/machinery/door/airlock{
- name = "Gamatorium"
+ name = "Cryo/Teleporter"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -13410,26 +13646,35 @@ lel
dir = 4
},
/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/gameroom)
+/area/groundbase/civilian/arrivals)
"Fw" = (
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
"Fy" = (
-/obj/item/weapon/deck/cah,
-/obj/item/weapon/deck/cah/black,
-/obj/item/weapon/deck/cards,
-/obj/item/weapon/deck/wizoff,
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
+/obj/structure/cryofeed{
+ dir = 2
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/groundbase/civilian/arrivals)
"Fz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
/area/maintenance/groundbase/substation/aiciv)
+"FA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/gun/energy/laser/practice,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/goggles,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"FB" = (
/obj/item/weapon/stool/baystool/padded{
dir = 1
@@ -13494,25 +13739,17 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"FI" = (
-/obj/machinery/door/airlock/hatch{
- name = "Telecoms Control Room";
- req_access = list(61)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"FJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/groundbase/engineering/lobby)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"FK" = (
/obj/effect/floor_decal/industrial/danger,
/turf/simulated/floor/tiled,
@@ -13560,7 +13797,7 @@ lel
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/civilian/foodplace)
"FR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -13574,6 +13811,20 @@ lel
/obj/structure/window/reinforced/polarized/full,
/turf/simulated/floor,
/area/groundbase/engineering/ce)
+"FT" = (
+/obj/machinery/button/remote/airlock{
+ id = "z1stall5";
+ pixel_y = 26;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"FU" = (
/obj/machinery/light{
dir = 8
@@ -13617,13 +13868,15 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
"FZ" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/structure/flora/pottedplant/unusual,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/groundbase/command/tcomms)
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"Ga" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -13637,12 +13890,6 @@ lel
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet/bcarpet,
/area/groundbase/security/briefing)
-"Gd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
"Ge" = (
/obj/structure/bed/chair/sofa/bench/left{
dir = 8
@@ -13844,6 +14091,9 @@ lel
},
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
+"GB" = (
+/turf/simulated/floor/reinforced,
+/area/groundbase/civilian/toolstorage)
"GC" = (
/obj/item/weapon/circuitboard/telecomms/processor,
/obj/item/weapon/circuitboard/telecomms/processor,
@@ -14003,12 +14253,6 @@ lel
},
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/iaa2)
-"GW" = (
-/obj/structure/sign/painting/public{
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
"GX" = (
/obj/machinery/light{
dir = 8
@@ -14132,25 +14376,28 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-<<<<<<< HEAD
-=======
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/sign/painting/library_secure{
pixel_x = -30
},
->>>>>>> 8a68e2bd53... Merge pull request #12856 from Very-Soft/somequicktweaks
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"Hl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Hm" = (
/obj/structure/table/bench/steel,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -14225,11 +14472,8 @@ lel
/obj/structure/cable/yellow{
icon_state = "0-4"
},
-<<<<<<< HEAD
-=======
/obj/random/paicard,
/obj/item/device/ticket_printer,
->>>>>>> 58c370688b... Merge pull request #14119 from Very-Soft/ticket_printer
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/hos)
"Hw" = (
@@ -14261,27 +14505,6 @@ lel
name = "impassable rock"
},
/area/groundbase/level1/southeastspur)
-"HA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"HB" = (
/obj/structure/sign/double/barsign{
pixel_y = -32
@@ -14306,11 +14529,11 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
"HD" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/cryofeed{
+ dir = 2
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/turf/simulated/floor,
+/area/groundbase/civilian/arrivals)
"HE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
@@ -14327,10 +14550,15 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/engineering/techstorage)
"HF" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/effect/floor_decal/techfloor/orange,
+/obj/machinery/computer/cryopod/gateway{
+ pixel_y = -30
+ },
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"HG" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -14356,29 +14584,17 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/substation/aiciv)
"HI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Cafe"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/bmarble,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"HJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/level1/centsquare)
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/groundbase/civilian/gameroom)
"HK" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 32
@@ -14437,7 +14653,7 @@ lel
/obj/effect/mouse_hole_spawner{
dir = 8
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"HR" = (
/obj/structure/cable/yellow{
@@ -14453,10 +14669,15 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
"HT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/white,
+/area/groundbase/medical/equipment)
"HU" = (
/obj/structure/dispenser{
phorontanks = 0
@@ -14466,6 +14687,9 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
+"HV" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark/notrees_nomobs_nosnow,
+/area/groundbase/level1/eastspur)
"HW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -14573,6 +14797,10 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"Ig" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/halle)
"Ih" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -14580,6 +14808,11 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"Ii" = (
+/obj/structure/table/woodentable,
+/obj/random/coin/sometimes,
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"Ij" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/analyzer,
@@ -14603,9 +14836,11 @@ lel
},
/area/groundbase/level1/eastspur)
"Im" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"In" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal{
name = "Air to Distro"
@@ -14692,6 +14927,7 @@ lel
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/random/paicard,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/ce)
"Iy" = (
@@ -14744,8 +14980,20 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
+/obj/machinery/power/thermoregulator,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
+"IE" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/lino,
+/area/groundbase/civilian/cafe)
"IF" = (
/obj/machinery/suit_cycler/engineering,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -14791,7 +15039,7 @@ lel
frequency = 1443;
level = 3;
name = "Distribution and Waste Monitor";
- sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")
+ sensors = list("dist_main_meter"="Surface - Distribution Loop","scrub_main_meter"="Surface - Scrubbers Loop","mair_main_meter"="Surface - Mixed Air Tank","dist_aux_meter"="Station - Distribution Loop","scrub_aux_meter"="Station - Scrubbers Loop","mair_aux_meter"="Station - Mixed Air Tank","mair_mining_meter"="Mining Outpost - Mixed Air Tank")
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -14807,10 +15055,6 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
-"IL" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/ai/upload)
"IM" = (
/obj/structure/sign/painting/public{
pixel_y = 30
@@ -14821,15 +15065,26 @@ lel
/obj/effect/floor_decal/industrial/danger,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
-"IP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
+"IO" = (
+/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
-/turf/simulated/floor,
-/area/groundbase/engineering/lobby)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
+"IP" = (
+/obj/machinery/vending/wallmed1/public{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"IQ" = (
/obj/structure/bed/chair/comfy/orange{
dir = 8
@@ -14983,11 +15238,13 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
"Jl" = (
-/obj/structure/sign/painting/public{
- pixel_y = -30
+/obj/effect/floor_decal/techfloor/orange,
+/obj/machinery/light,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Jm" = (
/obj/machinery/camera/network/civilian{
dir = 1
@@ -15059,9 +15316,6 @@ lel
/obj/machinery/clonepod/transhuman,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
-"Jw" = (
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"Jx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -15105,8 +15359,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
-<<<<<<< HEAD
-=======
"JB" = (
/obj/structure/stairs/spawner/west,
/obj/structure/railing/grey{
@@ -15115,7 +15367,6 @@ lel
/obj/structure/railing/grey,
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/eastspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"JC" = (
/turf/simulated/floor/tiled,
/area/groundbase/command/tcomms/foyer)
@@ -15161,42 +15412,37 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/stunnel)
+"JH" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"JI" = (
/turf/simulated/wall/durasteel,
/area/groundbase/command/ai/chamber)
"JJ" = (
/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/medical{
id_tag = "Resleeving";
name = "Resleeving Lab";
req_access = list(5);
req_one_access = null
},
+/turf/simulated/floor/tiled/steel_ridged,
+/area/groundbase/medical/resleeving)
+"JL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/resleeving)
-"JK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- icon_state = "map_vent_out";
- pressure_checks = 0;
- pressure_checks_default = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"JM" = (
/turf/simulated/wall/r_wall,
/area/groundbase/engineering/storage)
@@ -15294,7 +15540,7 @@ lel
dir = 1;
pixel_y = 43
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
"JX" = (
/obj/structure/cable/yellow{
@@ -15347,7 +15593,7 @@ lel
dir = 10;
pixel_y = 24
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"Kb" = (
/obj/structure/table/reinforced,
@@ -15380,14 +15626,9 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/cargo/mining)
"Kd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15398,7 +15639,6 @@ lel
icon_state = "4-8"
},
/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/level1/centsquare)
"Ke" = (
/obj/structure/table/reinforced,
@@ -15467,6 +15707,16 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
+"Kk" = (
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/structure/closet/walllocker_double{
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Kl" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/circuitboard/algae_farm{
@@ -15498,17 +15748,6 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/autoresleeving)
-"Kp" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"Kq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
@@ -15723,22 +15962,8 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
-"KV" = (
-/obj/machinery/telecomms/server/presets/service/groundbase,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"KW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"KX" = (
/obj/machinery/door/firedoor,
@@ -15793,20 +16018,6 @@ lel
outdoors = 0
},
/area/groundbase/level1/eastspur)
-"Lc" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- id_tag = null
- },
-/obj/effect/map_helper/airlock/atmos/chamber_pump,
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"Ld" = (
/obj/structure/table/steel_reinforced,
/obj/structure/cable/yellow{
@@ -15838,13 +16049,20 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/toolstorage)
"Lf" = (
-/obj/machinery/power/apc{
- dir = 1
+/obj/machinery/button/remote/blast_door{
+ id = "Cafe";
+ name = "Cafe shutters";
+ pixel_x = -3;
+ pixel_y = 26
},
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+/obj/machinery/light_switch{
+ pixel_x = 5;
+ pixel_y = 30
},
-/turf/simulated/floor/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"Lg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15862,10 +16080,6 @@ lel
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/hos)
"Li" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
-=======
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -15878,13 +16092,13 @@ lel
"Lj" = (
/obj/structure/bed/chair/backed_red{
dir = 4
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
},
-/obj/machinery/alarm{
- dir = 8
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -30
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Lk" = (
/turf/simulated/floor/outdoors/newdirt_nograss,
/area/groundbase/level1/centsquare)
@@ -16060,29 +16274,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
-<<<<<<< HEAD
-"LE" = (
-/obj/item/weapon/storage/box/nifsofts_mining,
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/mining)
-"LF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
-=======
"LF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16092,7 +16283,6 @@ lel
outdoors = 1
},
/area/groundbase/security/lobby)
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
"LG" = (
/obj/machinery/computer/power_monitor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16143,11 +16333,7 @@ lel
/area/maintenance/groundbase/substation/medcargo)
"LM" = (
/obj/effect/map_effect/portal/master/side_a/gb_wilds/north,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/nw)
"LN" = (
/obj/machinery/firealarm{
@@ -16219,13 +16405,6 @@ lel
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
-"LW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"LX" = (
/obj/machinery/alarm,
/turf/simulated/floor/tiled/white,
@@ -16238,6 +16417,12 @@ lel
},
/turf/simulated/floor,
/area/groundbase/medical/office)
+"LZ" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/detective)
"Ma" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -16277,14 +16462,21 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"Me" = (
-/obj/machinery/power/apc{
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor,
+/area/groundbase/civilian/arrivals)
"Mf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -16325,17 +16517,8 @@ lel
/turf/simulated/floor/tiled,
/area/holodeck_control)
"Mi" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/wall,
+/area/groundbase/civilian/gameroom)
"Mj" = (
/obj/structure/railing/grey,
/turf/simulated/floor/outdoors/sidewalk/slab,
@@ -16437,6 +16620,12 @@ lel
dir = 8
},
/obj/machinery/light/small,
+/obj/machinery/button/remote/airlock{
+ id = "z1barstall1";
+ pixel_x = -10;
+ pixel_y = 27;
+ specialfunctions = 4
+ },
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/bar)
"Mw" = (
@@ -16551,7 +16740,7 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/or1)
"MK" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/eastspur)
"ML" = (
/obj/structure/closet/walllocker_double/west{
@@ -16585,16 +16774,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
-"MN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"MO" = (
/turf/simulated/mineral/cave,
/area/groundbase/level1/nw)
@@ -16617,6 +16796,10 @@ lel
icon_state = "0-4"
},
/obj/item/device/ticket_printer,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"MS" = (
@@ -16627,12 +16810,17 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/cargo/mining)
"MT" = (
-/obj/effect/landmark/arrivals,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/gate/thin{
+ id = "Cafe";
+ layer = 3.3
},
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/groundbase/civilian/cafe)
"MU" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -16660,12 +16848,37 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/iaa1)
+"MY" = (
+/obj/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/flora/pottedplant/unusual,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/paleblue/full,
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"MZ" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
+"Na" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"Nb" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_switch{
@@ -16715,6 +16928,11 @@ lel
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/robot)
+"Nf" = (
+/obj/structure/target_stake,
+/obj/item/target/alien,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"Ng" = (
/obj/structure/table/marble,
/obj/item/device/retail_scanner/civilian,
@@ -16724,6 +16942,8 @@ lel
pixel_x = -3;
pixel_y = 26
},
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/reagent_containers/glass/rag,
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
"Nh" = (
@@ -16776,6 +16996,12 @@ lel
},
/turf/simulated/wall/r_wall,
/area/groundbase/engineering/eva)
+"Nn" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/warden)
"No" = (
/obj/machinery/computer/med_data/laptop{
dir = 8
@@ -16796,11 +17022,8 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/upload)
"Nr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Ns" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
@@ -16815,32 +17038,13 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
"Nu" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/exonet_node{
- anchored = 1
- },
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
-=======
/obj/effect/mouse_hole_spawner{
dir = 4
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"Nv" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/centsquare)
"Nw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16851,6 +17055,16 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"Nx" = (
+/obj/machinery/door/window/westright,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"Ny" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/space/void/mining,
@@ -16988,7 +17202,7 @@ lel
/area/groundbase/level1/northspur)
"NM" = (
/obj/effect/mouse_hole_spawner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/westspur)
"NN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17025,27 +17239,6 @@ lel
/obj/effect/landmark/start/security,
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
-"NR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1380;
- master_tag = "tcommsairlock";
- pixel_x = 32;
- req_one_access = list(61)
- },
-/obj/effect/map_helper/airlock/door/int_door,
-/obj/machinery/door/airlock/maintenance_hatch{
- frequency = null;
- icon_state = "door_locked";
- id_tag = null;
- locked = 1;
- name = "Telecoms Server Access";
- req_access = list(61)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/tcomms)
"NS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
@@ -17059,6 +17252,10 @@ lel
},
/turf/simulated/wall,
/area/groundbase/cargo/mining)
+"NU" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"NV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/industrial/danger,
@@ -17202,6 +17399,10 @@ lel
req_access = list(43)
},
/obj/item/device/mapping_unit,
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer/compact,
+/obj/item/device/cataloguer/compact,
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/gateway)
"Oj" = (
@@ -17230,21 +17431,16 @@ lel
/turf/simulated/floor,
/area/maintenance/groundbase/substation/secsci)
"Om" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/gate/thin{
+ dir = 8;
+ id = "Cafe";
+ layer = 3.3
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/level1/centsquare)
+/turf/simulated/floor,
+/area/groundbase/civilian/cafe)
"On" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -17272,14 +17468,11 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
"Oq" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/bed/chair/backed_red{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"Or" = (
/obj/machinery/station_map{
dir = 4;
@@ -17302,7 +17495,7 @@ lel
/obj/effect/mouse_hole_spawner{
dir = 4
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southeastspur)
"Ow" = (
/obj/structure/railing/grey{
@@ -17339,8 +17532,14 @@ lel
/turf/simulated/floor/outdoors/sidewalk,
/area/groundbase/level1/centsquare)
"OA" = (
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/level1/centsquare)
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"OB" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/space/void/mining,
@@ -17365,6 +17564,21 @@ lel
},
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/cargo/mining)
+"OE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Gamatorium"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bmarble,
+/area/groundbase/civilian/gameroom)
"OG" = (
/obj/machinery/alarm,
/turf/simulated/floor/bluegrid,
@@ -17386,19 +17600,8 @@ lel
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
"OL" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock{
- start_pressure = 4559.63
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
-=======
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_nosnow,
/area/groundbase/level1/westspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"OM" = (
/obj/machinery/transhuman/resleever,
/obj/machinery/light{
@@ -17529,11 +17732,7 @@ lel
/area/groundbase/security/halle)
"Pg" = (
/obj/effect/landmark/vines,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/centsquare)
"Ph" = (
/obj/structure/cable{
@@ -17567,6 +17766,21 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
+"Pk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/disposal/wall/cleaner{
+ desc = "Automatically cleans and transports items to the local auto-resleeving facilities.";
+ dir = 8;
+ name = "auto-resleeving equipment deposit"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"Pl" = (
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/warden)
@@ -17582,14 +17796,16 @@ lel
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Pp" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/southeastspur)
"Pq" = (
/obj/structure/table/rack/shelf,
@@ -17639,6 +17855,15 @@ lel
},
/turf/simulated/floor,
/area/maintenance/groundbase/substation/aiciv)
+"Pt" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Pv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -17666,12 +17891,16 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/foodplace)
"Pz" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
},
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/station_map{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"PA" = (
/obj/machinery/camera/network/command{
dir = 1
@@ -17698,15 +17927,18 @@ lel
},
/area/maintenance/groundbase/level1/swtunnel)
"PD" = (
-/obj/machinery/computer/telecomms/monitor{
- dir = 8;
- network = "tcommsat"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -30
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"PE" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
@@ -17734,17 +17966,18 @@ lel
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/centsquare)
"PH" = (
-/obj/machinery/light,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/cafe)
-"PI" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/structure/table/marble,
+/obj/machinery/power/apc{
+ dir = 1
},
-/area/groundbase/command/tcomms)
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"PJ" = (
/obj/structure/table/standard,
/obj/item/device/healthanalyzer,
@@ -17769,7 +18002,7 @@ lel
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor,
-/area/groundbase/civilian/gameroom)
+/area/groundbase/civilian/arrivals)
"PN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -17796,18 +18029,9 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"PQ" = (
-/obj/effect/landmark/arrivals,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/bed/chair/backed_red,
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"PS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple,
/obj/structure/cable/yellow{
@@ -17879,14 +18103,6 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
-"PZ" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"Qa" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -17995,19 +18211,21 @@ lel
"Qq" = (
/turf/simulated/wall/r_wall,
/area/maintenance/groundbase/level1/swtunnel)
-"Qs" = (
-/obj/machinery/pda_multicaster/prebuilt,
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+"Qr" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"Qt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-<<<<<<< HEAD
-/area/groundbase/command/tcomms)
-=======
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/centsquare)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"Qu" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/clothing/suit/storage/vest/heavy/officer{
@@ -18037,6 +18255,13 @@ lel
outdoors = 0
},
/area/groundbase/security/lobby)
+"Qw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/sidewalk,
+/area/groundbase/level1/centsquare)
"Qx" = (
/obj/machinery/conveyor{
dir = 4;
@@ -18097,52 +18322,23 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/equipment)
"QD" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/westspur)
-"QE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Crew Apparel Care"
- },
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "engineaccess";
- name = "Engine Access Shutters"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/engineering/engine)
"QF" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
},
-/obj/structure/sign/painting/public{
- pixel_x = -30
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-<<<<<<< HEAD
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
-"QG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
-=======
/obj/machinery/camera/network/civilian{
dir = 1
},
+/obj/machinery/firealarm{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/groundbase/civilian/arrivals)
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"QH" = (
/obj/structure/table/reinforced,
/obj/item/device/sleevemate,
@@ -18231,6 +18427,13 @@ lel
/obj/machinery/pipedispenser/disposal,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
+"QU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"QV" = (
/obj/structure/toilet,
/obj/machinery/button/remote/airlock{
@@ -18242,30 +18445,21 @@ lel
/obj/machinery/light/small,
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
-"QW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/aiciv)
"QX" = (
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"QY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
"QZ" = (
@@ -18341,6 +18535,15 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/netunnel)
+"Ri" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Rj" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black,
/turf/simulated/floor/tiled/techmaint,
@@ -18426,13 +18629,13 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"Rs" = (
-/obj/machinery/door/window/brigdoor/northleft{
- dir = 8;
- name = "Cafe";
- req_access = list(25)
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "z1barstall3";
+ name = "Restroom Stall"
},
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/cafe)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/bar)
"Rt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
@@ -18464,29 +18667,18 @@ lel
name = "Station Intercom (General)";
pixel_y = 24
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/engine)
"Rx" = (
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/sortjunction{
dir = 4;
name = "Engineering";
sortType = "Engineering"
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -18494,7 +18686,6 @@ lel
dir = 10
},
/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/level1/centsquare)
"Ry" = (
/obj/structure/table/reinforced,
@@ -18515,26 +18706,18 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/office)
"RA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
+"RB" = (
+/obj/effect/landmark{
+ name = "carpspawn"
},
-<<<<<<< HEAD
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/level1/centsquare)
-=======
-/turf/simulated/floor/water/deep,
-=======
/turf/simulated/floor/water/deep/seasonal,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/eastspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"RC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
@@ -18550,7 +18733,7 @@ lel
dir = 4;
trader_type = /obj/trader/general
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/eastspur)
"RE" = (
/obj/machinery/vending/security,
@@ -18591,20 +18774,19 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/storage)
"RI" = (
-/obj/item/weapon/stool/baystool/padded{
- dir = 8
+/obj/machinery/door/window/brigdoor/northleft{
+ dir = 8;
+ name = "Cafe";
+ req_access = list(25)
},
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
-<<<<<<< HEAD
-=======
"RJ" = (
/obj/structure/stairs/spawner/north,
/turf/simulated/floor/outdoors/newdirt_nograss{
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"RK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18613,14 +18795,10 @@ lel
/obj/structure/disposalpipe/segment{
dir = 4
},
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
/area/groundbase/level1/centsquare)
"RL" = (
/obj/structure/filingcabinet/chestdrawer,
@@ -18729,20 +18907,11 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"RY" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
-"RZ" = (
-/obj/machinery/camera/network/command{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"Sa" = (
/obj/structure/table/marble,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -18754,6 +18923,12 @@ lel
/obj/effect/landmark/vermin,
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
+"Sb" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/briefing)
"Sc" = (
/obj/machinery/camera/network/command{
dir = 4
@@ -18855,15 +19030,6 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
-"Sn" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"So" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -18885,6 +19051,7 @@ lel
/area/groundbase/engineering/atmos)
"Sq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/radiation,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/eva)
"Sr" = (
@@ -18892,6 +19059,9 @@ lel
/obj/item/device/taperecorder,
/obj/item/device/retail_scanner/security,
/obj/item/device/camera,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -29
+ },
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
"Ss" = (
@@ -18931,6 +19101,13 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/command/tcomms/foyer)
+"Sx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"Sy" = (
/obj/machinery/cryopod/robot,
/obj/machinery/power/apc{
@@ -19091,13 +19268,7 @@ lel
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/security/halls)
"SO" = (
-/obj/structure/table/marble,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/sign/painting/library_secure{
- pixel_y = -30
- },
+/obj/machinery/media/jukebox,
/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"SP" = (
@@ -19139,17 +19310,17 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/chamber)
"SU" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 9
+/obj/structure/closet/walllocker_double{
+ pixel_y = 28
},
-/obj/machinery/computer/cryopod/gateway{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/item/instrument/guitar,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"SV" = (
/obj/effect/map_effect/portal/line/side_a,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/nw)
"SW" = (
/obj/structure/cable/yellow{
@@ -19158,9 +19329,12 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/hos)
"SX" = (
-/obj/effect/floor_decal/techfloor/orange,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"SY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -19481,6 +19655,16 @@ lel
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/hall)
+"TH" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"TI" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -19592,13 +19776,10 @@ lel
dir = 1
},
/obj/effect/floor_decal/corner/pink/full,
-<<<<<<< HEAD
-=======
/obj/machinery/vending/wallmed1/public{
dir = 1;
pixel_y = -28
},
->>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
"TW" = (
@@ -19790,9 +19971,6 @@ lel
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/robot)
-"Uv" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/tcomms)
"Uw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -19827,17 +20005,13 @@ lel
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lhallway)
"UC" = (
/obj/machinery/light/small{
dir = 8
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"UD" = (
/obj/effect/floor_decal/industrial/danger/corner{
@@ -19851,11 +20025,11 @@ lel
},
/area/maintenance/groundbase/level1/netunnel)
"UF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/turf/simulated/floor/tiled,
-/area/groundbase/engineering/lobby)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"UG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
@@ -19915,18 +20089,18 @@ lel
/turf/simulated/floor/carpet/gaycarpet,
/area/groundbase/civilian/clown)
"UO" = (
-/obj/machinery/button/remote/blast_door{
- id = "Cafe";
- name = "Cafe shutters";
- pixel_x = -3;
- pixel_y = 26
+/obj/structure/toilet{
+ dir = 8
},
-/obj/machinery/light_switch{
- pixel_x = 5;
- pixel_y = 30
+/obj/machinery/light/small,
+/obj/machinery/button/remote/airlock{
+ id = "z1barstall3";
+ pixel_x = -10;
+ pixel_y = 27;
+ specialfunctions = 4
},
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/cafe)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/bar)
"UP" = (
/obj/structure/table/rack/steel,
/obj/item/clothing/gloves/arm_guard/laserproof,
@@ -19945,13 +20119,6 @@ lel
"UQ" = (
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/morgue)
-"UR" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"US" = (
/obj/structure/bed/chair/sofa/bench,
/obj/effect/landmark/start/visitor,
@@ -19967,12 +20134,12 @@ lel
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
+"UW" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"UX" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/northspur)
"UY" = (
/obj/structure/disposalpipe/segment,
@@ -20064,6 +20231,12 @@ lel
},
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/engineering/lobby)
+"Vk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/groundbase/medical/resleeving)
"Vl" = (
/obj/item/weapon/book/manual/rotary_electric_generator,
/obj/structure/table/reinforced,
@@ -20081,6 +20254,21 @@ lel
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/holodeck_control)
+"Vn" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/equipment)
"Vo" = (
/obj/machinery/computer/security{
dir = 1
@@ -20143,6 +20331,20 @@ lel
/obj/structure/cable/yellow,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/toolstorage)
+"Vw" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/gate/thin{
+ id = "Cafe";
+ layer = 3.3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/lino,
+/area/groundbase/civilian/cafe)
"Vx" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -20201,12 +20403,11 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"VD" = (
-/obj/effect/landmark{
- name = "JoinLateGateway"
+/obj/machinery/firealarm{
+ dir = 4
},
-/obj/effect/landmark/start,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"VE" = (
/obj/structure/morgue{
dir = 8
@@ -20234,17 +20435,12 @@ lel
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
"VH" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/gatslug{
- ghostjoin = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/weapon/stool/baystool/padded{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/security/lobby)
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"VI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20401,11 +20597,13 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/robot)
"Wb" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/gate/thin{
+ dir = 8;
+ id = "Cafe";
+ layer = 3.3
},
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"Wc" = (
/obj/machinery/vending/tool,
@@ -20420,14 +20618,10 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/armory)
"Wg" = (
-/obj/item/weapon/stool/padded{
- dir = 8
+/obj/item/weapon/stool/baystool/padded{
+ dir = 1
},
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/groundbase/civilian/cafe)
"Wh" = (
/obj/machinery/button/remote/blast_door{
@@ -20480,6 +20674,18 @@ lel
},
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/southwestspur)
+"Wn" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = -2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"Wo" = (
/obj/machinery/light/floortube{
dir = 8;
@@ -20487,6 +20693,15 @@ lel
},
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
+"Wp" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor{
+ edge_blending_priority = -1
+ },
+/area/groundbase/level1/centsquare)
"Wq" = (
/obj/machinery/button/remote/blast_door{
dir = 8;
@@ -20503,7 +20718,6 @@ lel
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/groundbase/medical/resleeving)
"Ws" = (
@@ -20556,6 +20770,9 @@ lel
outdoors = 0
},
/area/groundbase/level1/nw)
+"Wy" = (
+/turf/simulated/wall/r_wall,
+/area/security/range)
"Wz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -20568,17 +20785,6 @@ lel
},
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/bar)
-"WA" = (
-/obj/machinery/telecomms/bus/preset_one,
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark{
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/command/tcomms)
"WB" = (
/turf/simulated/floor/outdoors/newdirt{
outdoors = 0
@@ -20612,6 +20818,21 @@ lel
},
/turf/simulated/floor,
/area/groundbase/security/warden)
+"WF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/item/weapon/stool/baystool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"WG" = (
/obj/machinery/light_switch{
dir = 8;
@@ -20632,9 +20853,8 @@ lel
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
},
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
@@ -20680,22 +20900,17 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos)
"WL" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs{
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow{
outdoors = 0
},
/area/groundbase/level1/northspur)
"WM" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
+/obj/structure/table/woodentable,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/machinery/cryopod{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"WN" = (
/obj/structure/table/rack,
/obj/item/device/suit_cooling_unit,
@@ -20958,6 +21173,21 @@ lel
/obj/random/tech_supply/component/nofail,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/techstorage)
+"Xq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"Xr" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell C"
@@ -21016,6 +21246,20 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
+"Xx" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/vending/wallmed1/public{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Xz" = (
/obj/structure/table/reinforced,
/obj/random/tech_supply,
@@ -21061,6 +21305,7 @@ lel
name = "Engineering"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/bmarble,
/area/groundbase/engineering/lobby)
"XE" = (
@@ -21198,14 +21443,12 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/security/processing)
"Ya" = (
-/obj/effect/landmark/arrivals,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/turf/simulated/floor/carpet/turcarpet,
+/area/groundbase/civilian/gameroom)
"Yb" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
@@ -21247,18 +21490,24 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/atmos/monitoring)
-"Ye" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/command/tcomms)
"Yf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level1/westspur)
+"Yg" = (
+/obj/item/weapon/stool/baystool/padded{
+ dir = 1
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/cafe)
"Yh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -21268,6 +21517,11 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/lobby)
+"Yi" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark/notrees_nomobs_nosnow{
+ outdoors = 0
+ },
+/area/groundbase/level1/northspur)
"Yj" = (
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/level1/sw)
@@ -21278,8 +21532,21 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/engineering/atmos)
"Yl" = (
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/groundbase/civilian/arrivals)
"Ym" = (
/obj/structure/railing/grey{
dir = 1
@@ -21335,7 +21602,7 @@ lel
/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"Yu" = (
/obj/machinery/atmospherics/portables_connector{
@@ -21374,7 +21641,10 @@ lel
/obj/item/device/radio/intercom{
pixel_y = -24
},
-/turf/simulated/floor/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/lino,
/area/groundbase/civilian/cafe)
"Yy" = (
/obj/structure/cable/yellow{
@@ -21400,14 +21670,11 @@ lel
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/level1/centsquare)
"YD" = (
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
},
-/area/groundbase/command/tcomms)
+/turf/simulated/floor/tiled/white,
+/area/groundbase/civilian/mensrestroom)
"YE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor/southleft{
@@ -21451,8 +21718,6 @@ lel
/obj/structure/cable/yellow,
/turf/simulated/floor/reinforced,
/area/groundbase/engineering/engine)
-<<<<<<< HEAD
-=======
"YI" = (
/obj/structure/railing/grey{
dir = 1
@@ -21460,7 +21725,6 @@ lel
/obj/structure/railing/grey,
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/eastspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
"YJ" = (
/obj/structure/closet{
name = "Evidence Closet"
@@ -21504,12 +21768,14 @@ lel
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/detective)
"YO" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
+/obj/machinery/alarm{
+ pixel_y = 28
},
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled/techfloor,
-/area/groundbase/civilian/arrivals)
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"YQ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
@@ -21548,22 +21814,21 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"YW" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "Resleeving";
- sortType = "Resleeving"
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
"YX" = (
@@ -21629,23 +21894,23 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"Zb" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
+/obj/machinery/light{
+ dir = 1
},
-/obj/item/weapon/tank/jetpack/carbondioxide,
/turf/simulated/floor/tiled/dark,
-/area/groundbase/security/equipment)
+/area/security/range)
"Zc" = (
-/obj/structure/table/woodentable,
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/simulated/floor/carpet/turcarpet,
-/area/groundbase/civilian/gameroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
"Zd" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -21691,7 +21956,7 @@ lel
/obj/effect/map_effect/portal/master/side_a/gb_wilds/south{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/southwestspur)
"Zj" = (
/obj/machinery/blackbox_recorder,
@@ -21705,7 +21970,7 @@ lel
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/centsquare)
"Zn" = (
/obj/structure/table/rack,
@@ -21727,6 +21992,18 @@ lel
},
/turf/simulated/floor/tiled,
/area/groundbase/engineering/ce)
+"Zq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/security/lobby)
"Zr" = (
/obj/structure/closet/secure_closet/medical2,
/obj/machinery/light_switch{
@@ -21777,10 +22054,12 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/robot)
"Zz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/level1/centsquare)
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/gameroom)
"ZA" = (
/obj/structure/sign/directions/stairs_up{
dir = 1;
@@ -21790,7 +22069,7 @@ lel
dir = 1;
pixel_y = 26
},
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level1/northspur)
"ZB" = (
/turf/simulated/floor/reinforced,
@@ -21883,9 +22162,14 @@ lel
/turf/simulated/floor/bluegrid,
/area/groundbase/command/ai/chamber)
"ZN" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/equipment)
@@ -21922,7 +22206,7 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/civilian/foodplace)
"ZT" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/civilian/foodplace)
"ZU" = (
/obj/machinery/power/terminal{
@@ -21937,16 +22221,19 @@ lel
/turf/simulated/floor,
/area/groundbase/engineering/storage)
"ZV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/medical{
id_tag = "Resleeving Shower";
name = "Resleeving Lab";
req_one_access = null
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/steel_ridged,
/area/groundbase/medical/resleeving)
+"ZW" = (
+/obj/machinery/door/window/westright,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"ZX" = (
/obj/machinery/mineral/unloading_machine,
/turf/simulated/floor/tiled,
@@ -22426,9 +22713,9 @@ MO
MO
MO
MO
-MO
-MO
-MO
+RJ
+FF
+FF
MO
MO
MO
@@ -22510,8 +22797,8 @@ ce
ce
ce
ce
-ce
-ce
+Bk
+Bk
ce
Bk
Bk
@@ -22568,11 +22855,11 @@ MO
MO
MO
MO
-MO
-MO
-MO
-MO
-MO
+RJ
+FF
+FF
+FF
+FF
FF
FF
FF
@@ -22653,7 +22940,7 @@ ce
ce
ce
ce
-ce
+Bk
Bk
Bk
ce
@@ -22712,7 +22999,7 @@ MO
MO
MO
MO
-MO
+FF
FF
FF
FF
@@ -22771,25 +23058,25 @@ ce
ce
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Bk
+Bk
ce
ce
Bk
+Bk
+Bk
+ce
+Bk
+Bk
+Bk
+Bk
+ce
+ce
+ce
+ce
+ce
+ce
+ce
ce
ce
ce
@@ -22819,22 +23106,22 @@ MO
MO
MO
MO
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
MO
MO
MO
@@ -22912,30 +23199,30 @@ ce
ce
ce
ce
-ce
-ce
-ce
-ce
-ce
-Bk
-ce
-ce
-ce
-ce
-ce
-Bk
-Bk
-ce
-Bk
-Bk
-ce
-ce
Bk
Bk
Bk
-ce
-ce
-ce
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
Bk
Bk
Bk
@@ -22961,22 +23248,22 @@ MO
MO
MO
MO
-Uv
-cX
-za
-HA
-Kp
-za
-JK
-cX
-Uv
-CZ
-nW
-Ye
-Sn
-eo
-CZ
-Uv
+an
+bI
+bK
+ct
+de
+bK
+ez
+bI
+an
+gd
+gY
+ix
+iX
+kD
+gd
+an
Dc
Dc
Dc
@@ -23000,9 +23287,9 @@ FF
FF
FF
FF
-MO
-MO
-MO
+ce
+ce
+ce
FF
FF
FF
@@ -23054,30 +23341,30 @@ ce
ce
ce
ce
-ce
-ce
-ce
-Bk
-Bk
-Bk
-ce
-ce
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
Bk
Bk
+tk
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+sz
+ei
Bk
Bk
Bk
@@ -23103,22 +23390,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-QG
-za
-za
-QG
-za
-tQ
-Jw
-CN
-ct
-AO
-fu
-mQ
-Uv
+an
+bK
+bK
+cy
+bK
+bK
+cy
+bK
+fO
+gw
+gZ
+iL
+je
+kN
+kZ
+an
Ij
uv
Hu
@@ -23141,11 +23428,11 @@ nC
nC
NC
ce
-Bk
+FF
ce
ce
ce
-Bk
+FF
FF
FF
MO
@@ -23197,9 +23484,8 @@ ce
ce
ce
ce
-ce
-ce
-Bk
+Bk
+PC
Bk
Bk
Bk
@@ -23220,6 +23506,7 @@ Bk
Bk
Bk
Bk
+PC
Bk
Bk
Bk
@@ -23245,22 +23532,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-kf
-sT
-za
-QG
-za
-tQ
-Jw
-Jw
-Jw
-me
-Jw
-MN
-Uv
+an
+bK
+bK
+cM
+di
+bK
+cy
+bK
+fO
+gw
+gw
+gw
+jk
+gw
+le
+an
KK
Rt
By
@@ -23287,7 +23574,7 @@ ce
ce
ce
ce
-Bk
+FF
FF
FF
FF
@@ -23339,29 +23626,29 @@ Bk
ce
ce
ce
-ce
-tk
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-sz
-ei
+Bk
+PC
+Bk
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+PC
ce
Bk
Bk
@@ -23387,22 +23674,22 @@ MO
MO
MO
MO
-Uv
-za
-gZ
-QG
-za
-KV
-vG
-za
-tQ
-Jw
-Jw
-Jw
-me
-Jw
-oq
-Uv
+an
+bK
+bT
+cy
+bK
+dv
+eD
+bK
+fO
+gw
+gw
+gw
+jk
+gw
+lm
+an
Hs
gT
DP
@@ -23424,7 +23711,7 @@ MO
MO
MO
Fi
-Bk
+FF
ce
ce
ce
@@ -23484,14 +23771,14 @@ ce
Bk
PC
Bk
-Bk
-Bk
-Bk
-ce
-Bk
-ce
-Bk
-Bk
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
+Wy
Bk
Bk
ce
@@ -23529,22 +23816,22 @@ MO
MO
MO
MO
-Uv
-YD
-za
-QG
-za
-za
-QG
-za
-tQ
-Jw
-Jw
-Jw
-me
-Jw
-oq
-Uv
+an
+bN
+bK
+cy
+bK
+bK
+cy
+bK
+fO
+gw
+gw
+gw
+jk
+gw
+lm
+an
bd
gT
Xs
@@ -23626,14 +23913,14 @@ sz
sz
hZ
Bk
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Zb
+Nf
+Qr
+Qr
+Nf
+UW
+Wy
ce
ce
ce
@@ -23671,22 +23958,22 @@ MO
MO
MO
MO
-Uv
-za
-cX
-QG
-za
-PI
-sU
-za
-Uv
-Jw
-kU
-Jw
-me
-Jw
-oq
-Uv
+an
+bK
+bI
+cy
+bK
+dy
+eQ
+bK
+an
+gw
+hc
+gw
+jk
+gw
+lm
+an
lp
cC
lc
@@ -23768,14 +24055,14 @@ dM
Bk
Bk
Bk
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Wy
ce
ce
ce
@@ -23801,7 +24088,7 @@ ce
ce
ce
Bk
-ce
+Bk
ce
ce
ce
@@ -23813,22 +24100,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-QG
-za
-Cu
-WA
-Ez
-yt
-yt
-yt
-yt
-fJ
-Jw
-oq
-Uv
+an
+bK
+bK
+cy
+bK
+dT
+eS
+fM
+fW
+fW
+fW
+fW
+jl
+gw
+lm
+an
Dc
Dc
PT
@@ -23910,14 +24197,14 @@ dM
Bk
Bk
Bk
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Qr
+DF
+Qr
+Qr
+Qr
+rk
+Wy
ce
ce
ce
@@ -23955,22 +24242,22 @@ MO
MO
MO
MO
-Uv
-za
-le
-QG
-za
-za
-xG
-za
-Uv
-bB
-OL
-Uv
-ch
-Jw
-pI
-Uv
+an
+bK
+cc
+cy
+bK
+bK
+fa
+bK
+an
+gw
+hn
+an
+ju
+gw
+ls
+an
kG
au
zz
@@ -24052,14 +24339,14 @@ dM
Bk
Bk
Bk
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Qr
+xY
+FI
+Qr
+Qr
+Qr
+Wy
ce
ce
ce
@@ -24097,22 +24384,22 @@ MO
MO
MO
MO
-Uv
-gY
-Qs
-dy
-zm
-xl
-cy
-za
-st
-Jw
-gU
-NR
-LW
-zL
-LF
-FI
+an
+bR
+ch
+cR
+do
+dY
+fd
+bK
+fZ
+gw
+hy
+iP
+jy
+kO
+lu
+me
FC
DX
Bn
@@ -24194,14 +24481,14 @@ dM
Bk
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Zb
+Cu
+Qr
+Qr
+Qr
+UW
+Wy
ce
ce
ce
@@ -24239,22 +24526,22 @@ MO
MO
MO
MO
-Uv
-za
-rk
-QG
-za
-za
-zA
-za
-Uv
-BU
-Lc
-Uv
-cR
-Jw
-uY
-Uv
+an
+bK
+cm
+cy
+bK
+bK
+fi
+bK
+an
+gP
+hS
+an
+jN
+gw
+lv
+an
KC
Sv
zz
@@ -24336,14 +24623,14 @@ dM
Bk
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Qr
+Cu
+Qr
+Qr
+Qr
+Qr
+Wy
ce
ce
ce
@@ -24381,22 +24668,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-QG
-za
-PZ
-CQ
-za
-Uv
-Uv
-Uv
-Uv
-Fs
-Jw
-zy
-Uv
+an
+bK
+bK
+cy
+bK
+eo
+fu
+bK
+an
+an
+an
+an
+kf
+gw
+lK
+an
SS
SS
Hf
@@ -24478,14 +24765,14 @@ dM
ce
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+Xq
+Nx
+FA
+FA
+ZW
+tA
+Wy
ce
ce
ce
@@ -24523,22 +24810,22 @@ MO
MO
MO
MO
-Uv
-za
-cX
-QG
-za
-fi
-Nu
-za
-Uv
-UR
-RZ
-Jw
-CN
-ct
-AU
-Uv
+an
+bK
+bI
+cy
+bK
+eu
+fF
+bK
+an
+gU
+hY
+gw
+gZ
+iL
+lM
+an
Pm
zS
lC
@@ -24620,14 +24907,14 @@ dM
ce
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+EL
+nW
+FI
+Qr
+Qr
+UW
+Wy
ce
ce
ce
@@ -24665,22 +24952,22 @@ MO
MO
MO
MO
-Uv
-YD
-za
-QG
-za
-za
-QG
-za
-tQ
-Jw
-Jw
-Jw
-Jw
-Jw
-oq
-Uv
+an
+bN
+bK
+cy
+bK
+bK
+cy
+bK
+fO
+gw
+gw
+gw
+gw
+gw
+lm
+an
PL
Ne
zt
@@ -24762,14 +25049,14 @@ dM
ce
ce
ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
+Wy
+oK
+AO
+Wn
+yy
+JL
+qT
+Wy
ce
ce
ce
@@ -24807,22 +25094,22 @@ MO
MO
MO
MO
-Uv
-za
-hY
-QG
-za
-xQ
-vG
-za
-tQ
-Jw
-Jw
-Jw
-Jw
-Jw
-MN
-Uv
+an
+bK
+cr
+cy
+bK
+ev
+eD
+bK
+fO
+gw
+gw
+gw
+gw
+gw
+le
+an
Qg
hN
lC
@@ -24906,7 +25193,7 @@ AZ
hC
hC
hC
-hC
+Vn
hC
hC
hC
@@ -24949,22 +25236,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-rG
-FZ
-za
-QG
-za
-tQ
-Jw
an
-eD
-eD
-iP
-Ei
-Uv
+bK
+bK
+cX
+dr
+bK
+cy
+bK
+fO
+gw
+ia
+iQ
+iQ
+kS
+mc
+an
Rr
Ui
ZJ
@@ -24980,7 +25267,7 @@ yJ
XU
xA
rM
-IL
+mB
XY
MO
FF
@@ -25091,22 +25378,22 @@ MO
MO
MO
MO
-Uv
-za
-za
-QG
-za
-za
-QG
-za
-tQ
-Jw
-cc
-Jw
-Jw
-lv
-Jw
-Uv
+an
+bK
+bK
+cy
+bK
+bK
+cy
+bK
+fO
+gw
+is
+gw
+gw
+kT
+gw
+an
Sy
Uu
SI
@@ -25233,22 +25520,22 @@ MO
MO
MO
MO
-Uv
-cX
-za
-bT
-qh
-za
-qq
-cX
-Uv
-CZ
-BI
-PD
-kT
-Li
-CZ
-Uv
+an
+bI
+bK
+cZ
+dt
+bK
+fJ
+bI
+an
+gd
+it
+iT
+kr
+kU
+gd
+an
TQ
YT
lC
@@ -25336,7 +25623,7 @@ gQ
hx
eF
UV
-Zb
+nj
hC
nA
CC
@@ -25375,22 +25662,22 @@ MO
MO
MO
MO
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
-Uv
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
el
el
Kq
@@ -25972,10 +26259,10 @@ WG
WP
WP
Qi
-sI
+ag
rq
pq
-QW
+aN
fk
GJ
Fi
@@ -25991,7 +26278,7 @@ ht
ht
KR
GF
-GF
+kP
oQ
uF
pj
@@ -26843,7 +27130,7 @@ oe
gF
FB
JX
-vF
+dS
Cy
cN
Bo
@@ -27035,7 +27322,7 @@ Nu
AZ
cv
px
-AN
+Sb
fY
SR
AN
@@ -27476,7 +27763,7 @@ Jp
zg
mi
VV
-Pl
+Nn
qa
zK
uc
@@ -27744,7 +28031,7 @@ yc
EG
fm
wl
-nx
+oi
nT
nx
mM
@@ -27889,8 +28176,8 @@ wl
wl
wl
tL
-VH
-Np
+aY
+Zq
TC
ti
mZ
@@ -28547,9 +28834,9 @@ Wz
pj
db
pj
-db
+cw
pj
-db
+Rs
pj
MO
Wx
@@ -28689,9 +28976,9 @@ yh
pj
Mv
pj
-Mv
+fj
pj
-Mv
+UO
pj
MO
MO
@@ -29309,7 +29596,7 @@ Hc
id
gv
pn
-vd
+Ig
ma
rT
rT
@@ -30106,12 +30393,12 @@ MO
MO
MO
hq
-GW
+HD
Me
Hl
AH
-Yl
-Yl
+dd
+Xx
QF
hq
lE
@@ -30153,7 +30440,7 @@ cB
cB
yb
FD
-Uz
+LZ
vR
yL
tg
@@ -30254,7 +30541,7 @@ oI
pO
Fj
wr
-mc
+uS
hq
lE
hb
@@ -30296,7 +30583,7 @@ AZ
yb
Bp
Uz
-jN
+bk
jL
dq
cz
@@ -30390,12 +30677,12 @@ MO
MO
MO
hq
-xk
+HD
uJ
-oI
-kr
+tb
+Zc
kC
-Yl
+NU
sH
hq
lE
@@ -30417,10 +30704,10 @@ PP
xJ
EN
lE
-Eb
-Eb
-Eb
-HQ
+GB
+GB
+GB
+sF
Eb
Eb
Eb
@@ -30527,7 +30814,7 @@ OJ
dL
ZR
Rn
-MO
+vL
or
gt
oP
@@ -30535,9 +30822,9 @@ hq
Fy
uJ
tb
-Fn
-kC
-Yl
+Zc
+Fj
+wr
Jl
hq
lE
@@ -30559,14 +30846,14 @@ XS
WC
KQ
lE
-Eb
-Eb
-Eb
-Nv
-Nv
-Eb
-Eb
-tP
+GB
+nz
+GB
+wy
+Vs
+Vs
+Vs
+JY
eR
eR
eR
@@ -30669,18 +30956,18 @@ OJ
dL
ZR
tG
-tG
+DU
Ym
oS
-vL
+tG
hq
-rS
+HD
uJ
-oI
-kr
+tb
+Zc
kC
-Yl
-cr
+NU
+sH
hq
lE
lE
@@ -30701,12 +30988,12 @@ XS
WC
uz
lE
+GB
+GB
+GB
+sF
Eb
Eb
-Nv
-Nv
-Nv
-Eb
Eb
tP
eR
@@ -30818,10 +31105,10 @@ tG
hq
HD
uJ
-bD
+tb
Zc
-kC
-Yl
+Fj
+wr
HF
hq
MO
@@ -30843,10 +31130,10 @@ nO
Li
CZ
lE
-Eb
-Eb
-Nv
-Eb
+Dt
+Dt
+Dt
+Dt
Eb
Eb
Eb
@@ -30958,13 +31245,13 @@ ZR
tG
tG
hq
-zP
+HD
Yl
DR
Po
Pz
-Yl
-sH
+IO
+oF
hq
MO
MO
@@ -30986,7 +31273,7 @@ lE
lE
lE
Eb
-Eb
+HQ
Eb
Eb
Eb
@@ -31102,7 +31389,7 @@ tG
hq
PM
PM
-hq
+jY
jC
hq
PM
@@ -31239,7 +31526,7 @@ ZR
tG
tG
ZR
-tG
+GK
tG
tG
tG
@@ -31389,8 +31676,8 @@ ng
Dg
Iy
Eb
-Eb
-Eb
+Nv
+Nv
Eb
Eb
Eb
@@ -31523,25 +31810,25 @@ OJ
tG
tG
tG
-UX
+tG
tG
tG
GK
hW
+YC
+Eb
+Eb
+Eb
+Eb
+Eb
+Eb
+Eb
Eb
Eb
Eb
-Nv
-Nv
-Nv
-Nv
Eb
Eb
Eb
-Nv
-Nv
-Nv
-Nv
Eb
Eb
Eb
@@ -31659,9 +31946,9 @@ UX
UX
UX
UX
-OJ
-dL
-OJ
+UX
+Yi
+UX
UX
UX
UX
@@ -31669,26 +31956,26 @@ UX
tG
tG
tG
-hW
-Eb
-Eb
-Nv
-Nv
-Nv
-Nv
-Eb
-Eb
-Eb
-Nv
-Nv
-Nv
-Eb
-Eb
-Eb
-Eb
-Eb
-Eb
-Vh
+bV
+Gx
+Gx
+Gx
+Gx
+Gx
+BP
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+Gx
+oa
Eb
Eb
Eb
@@ -31801,9 +32088,9 @@ UX
UX
UX
UX
-OJ
-dL
-OJ
+UX
+Yi
+UX
UX
tG
tG
@@ -31811,17 +32098,17 @@ UX
tG
tG
tG
-hW
+NL
+YC
+Eb
+Yt
+Eb
+YC
+Qt
YC
Eb
Eb
-Eb
-Eb
-Eb
-Eb
-Eb
-Eb
-Eb
+Yt
Eb
Eb
Eb
@@ -31838,7 +32125,7 @@ Eb
Eb
Eb
Eb
-Eb
+YC
uB
Eb
Eb
@@ -31944,7 +32231,7 @@ tG
tG
UX
OJ
-dL
+Yi
OJ
tG
tG
@@ -31954,24 +32241,24 @@ tG
gM
tG
gB
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
+Eb
+hr
+hr
Om
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
-Gx
+Om
+gg
+Om
+Om
+Om
+hr
+hr
+Eb
+Eb
+Nv
+Nv
+Nv
+Eb
+Eb
YW
ay
ay
@@ -32096,24 +32383,24 @@ bb
ZA
GK
NL
-YC
-Eb
-Eb
-Eb
-Eb
-Yt
Eb
+hr
+gW
+Wg
+xt
+pW
+bW
RA
-Eb
-Eb
-Yt
+oX
+QU
+hr
Eb
Eb
Eb
Eb
Eb
jD
-YC
+Eb
Vh
mG
eR
@@ -32122,7 +32409,7 @@ eR
eR
eR
eR
-Eb
+YC
TK
Eb
Eb
@@ -32239,15 +32526,15 @@ Mw
ED
uu
Eb
-Eb
-Eb
-Eb
-Eb
-hr
+gb
+hF
+Wg
+xt
+Na
EM
HI
-EM
-EM
+xt
+BM
hr
dk
uR
@@ -32381,12 +32668,12 @@ kz
ED
xH
Lk
-Eb
-Eb
-qE
-qE
-hr
-qX
+gb
+vo
+Wg
+te
+WF
+xR
xR
xt
SO
@@ -32401,8 +32688,8 @@ yd
Vh
eR
eR
-eR
-eR
+pc
+pc
eR
eR
eR
@@ -32523,15 +32810,15 @@ Pi
Pi
kx
kd
-Lk
-qE
-qE
-qE
-hr
+gb
+zu
+VH
+Sx
+MT
+Wb
Wb
-DF
RI
-np
+Wb
hr
Oa
Pb
@@ -32543,8 +32830,8 @@ Eb
Vh
eR
eR
-eR
-eR
+pc
+pc
pc
eR
eR
@@ -32665,13 +32952,13 @@ qE
mI
Bs
mI
-qE
-qE
-qE
-qE
hr
+PH
+Yg
+ro
+Vw
mb
-DF
+IE
vi
Yx
hr
@@ -32797,8 +33084,8 @@ qE
jn
jT
uU
-jn
-jn
+vY
+Vk
jn
jn
jn
@@ -32814,8 +33101,8 @@ yu
hr
Lf
KW
-pZ
-vi
+KW
+dV
hr
jS
BL
@@ -32837,9 +33124,9 @@ qI
Gv
Ge
Eb
-Eb
+YC
Qy
-Eb
+YC
Eb
qI
Gv
@@ -32949,14 +33236,14 @@ jn
in
Nz
HN
-Dz
+eI
Is
Ko
Mu
hr
qV
cH
-vi
+Ba
mL
hr
zT
@@ -32966,7 +33253,7 @@ BS
Pb
dk
ii
-wx
+Vh
eR
eR
pc
@@ -33084,38 +33371,38 @@ jn
jn
pP
wB
-eI
+wB
wB
Ap
jn
IY
Dy
qO
-nb
+Dz
ZG
pK
hM
hr
-gb
-zu
-Rs
-gb
+hr
+hr
+hr
+hr
hr
bL
Pb
-BS
+rG
BS
zj
dk
Eb
-wx
+Vh
eR
eR
pc
pc
pc
-eR
-eR
+pc
+pc
eR
eR
eR
@@ -33230,19 +33517,19 @@ Aa
Wr
kE
JJ
-gu
+Fc
UA
WS
ZO
Kg
XB
bl
-hr
-UO
-Wg
-gW
-gW
-hr
+nb
+qE
+qE
+qE
+qE
+dk
mV
Pb
Cr
@@ -33357,7 +33644,7 @@ Qb
Qb
ub
kn
-pM
+bB
RM
pM
GL
@@ -33379,12 +33666,12 @@ nb
to
EV
KA
-hr
-bV
-gW
-gW
-PH
-hr
+nb
+qE
+qE
+qE
+qE
+dk
Vb
Pb
ll
@@ -33392,7 +33679,7 @@ ye
CD
dk
Zm
-wx
+Vh
eR
eR
pc
@@ -33403,12 +33690,12 @@ pc
pc
pc
pc
-pc
+eR
eR
eR
Qy
Eb
-Nv
+Eb
Nv
Nv
Nv
@@ -33488,7 +33775,7 @@ fo
Qh
sQ
VI
-LE
+mU
xo
Ny
OB
@@ -33521,12 +33808,12 @@ nb
rF
Tc
Te
-hr
-vo
-hF
-cw
-fj
-hr
+nb
+qE
+qE
+qE
+qE
+dk
mw
Pb
CL
@@ -33534,7 +33821,7 @@ Pb
Ok
dk
Eb
-wx
+Vh
eR
eR
pc
@@ -33543,17 +33830,17 @@ pc
pc
pc
pc
-pc
-pc
+eR
+eR
eR
eR
eR
Qy
Eb
Eb
-Nv
Eb
-Nv
+Eb
+Eb
Nv
Eb
Eb
@@ -33666,8 +33953,8 @@ DQ
DQ
DQ
DQ
-bb
-bb
+qE
+qE
dk
dk
kB
@@ -33676,26 +33963,26 @@ kX
dk
dk
Eb
-wx
-eR
+Vh
eR
eR
pc
pc
pc
+pc
+eR
eR
eR
-pc
nN
-Bv
-Bv
-Bv
+sU
+sU
+sU
WH
Ku
Gx
Gx
Gj
-Nv
+Eb
Eb
Eb
Eb
@@ -33818,19 +34105,19 @@ dk
dk
Eb
Eb
-wx
-eR
+Vh
eR
eR
pc
pc
pc
pc
+pc
eR
+Yt
+Qy
Eb
-TK
-Eb
-Eb
+Yt
aD
GQ
Mj
@@ -33960,20 +34247,20 @@ HQ
Eb
Eb
Eb
-wx
+Vh
eR
eR
-eR
-eR
-eR
-eR
-eR
-eR
-Yt
-TK
-Lt
-Lt
-ua
+pc
+pc
+tj
+tj
+tj
+tj
+tj
+aZ
+tj
+tj
+tj
IS
IS
bg
@@ -34092,29 +34379,29 @@ wf
QC
wO
DQ
-wH
-wH
-wH
-wH
-wH
-wH
+qE
+qE
+qE
+qE
+qE
Eb
Eb
Eb
Eb
-wx
-eR
-eR
-eR
-eR
+Eb
+Vh
eR
eR
eR
eR
tj
+FZ
+IP
+AU
+PD
ue
-tj
-tj
+tZ
+MY
tj
ua
ua
@@ -34228,32 +34515,32 @@ wA
EU
jg
DQ
-Ay
+HT
QC
GD
QC
wO
DQ
-oi
-ow
Mi
-fZ
-qS
-wH
-DN
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
Eb
Eb
-Eb
-wx
-eR
-eR
-eR
-eR
+Vh
eR
eR
eR
eR
tj
+YD
+FJ
+FJ
+Pk
vI
DB
vl
@@ -34376,29 +34663,29 @@ QH
QC
wO
DQ
-oi
+JH
mf
RY
Ep
-is
+Nr
bU
OA
+Mi
Eb
Eb
-YC
-wx
-Eb
-Eb
-Eb
-Eb
+Vh
Eb
Eb
Eb
Eb
tj
+oq
+tj
+DD
+tj
sk
-tj
-tj
+zP
+UF
tj
Lt
Lt
@@ -34518,25 +34805,25 @@ gE
QC
wO
DQ
-cZ
-mf
+ex
+PQ
uN
-Gd
-HT
+WM
+Oq
Nr
Zz
-Sj
-Sj
-Sj
+HJ
+Eb
+Eb
Kd
Eb
Eb
Eb
Eb
-Eb
-FE
-lZ
-lZ
+tj
+gu
+tj
+FT
tj
cp
Bj
@@ -34660,25 +34947,25 @@ Dx
QC
iO
DQ
-oi
-ze
-uq
+Kk
+PQ
+uN
WM
-gP
-wH
-Lk
-Eb
-Eb
+Oq
+Nr
+Pt
+Mi
+Zm
YC
-wx
+Vh
Eb
Eb
Eb
FE
Wl
Wl
-IP
-IP
+Wl
+Wl
Wl
Wl
Wl
@@ -34705,9 +34992,9 @@ aw
aw
aw
aw
-xN
-QE
-xN
+iN
+mp
+iN
aw
aw
Lt
@@ -34803,24 +35090,24 @@ cl
sh
DQ
wH
-wH
-wH
-wH
-wH
-wH
+PQ
+Ii
+sq
+TH
+xX
kY
-Eb
-Eb
-Eb
+OE
+Bv
+Bv
wx
YC
Eb
-Eb
-AL
+lZ
+Wp
Qc
Tx
-UF
-UF
+BW
+BW
ld
Hw
Xw
@@ -34850,7 +35137,7 @@ xD
ME
ME
ME
-iN
+mu
aw
Lt
Lt
@@ -34945,24 +35232,24 @@ nG
cu
DQ
SU
-fW
-de
+PQ
+uN
wQ
-xY
-wH
-Eb
-Eb
-Eb
+Oq
+Nr
+Lj
+Mi
+Zm
YC
wv
lT
lT
-lT
-lT
+Qw
+pI
XD
Cm
-aZ
-FJ
+Eu
+Eu
Eu
Eu
yK
@@ -35091,11 +35378,11 @@ PQ
QX
Ya
Oq
-bw
+Nr
yM
HJ
-HJ
-HJ
+Eb
+Eb
Rx
CH
CH
@@ -35229,15 +35516,15 @@ QC
qA
DQ
YO
-MT
+Nr
VD
-vJ
+Nr
SX
Im
-OA
+Ri
+Mi
Eb
Eb
-YC
PG
YC
Eb
@@ -35370,14 +35657,14 @@ DQ
Ju
XR
DQ
-zO
-bH
-Ax
-kP
-wy
-wH
-Zm
-Eb
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
Eb
Eb
PG
@@ -35512,12 +35799,12 @@ DQ
xa
QC
DQ
-wH
-wH
-wH
-wH
-wH
-wH
+qE
+qE
+qE
+qE
+qE
+qE
MK
Ah
Nv
@@ -35672,7 +35959,7 @@ MK
Wl
fv
ga
-pp
+aU
Cq
Cq
Cq
@@ -36346,7 +36633,7 @@ Ro
MK
MK
MK
-MK
+JB
qE
sm
my
@@ -36488,7 +36775,7 @@ KT
MK
MK
MK
-MK
+YI
MK
MK
MK
@@ -36628,10 +36915,10 @@ iG
MK
KT
MK
-MK
-MK
-MK
Ah
+MK
+Os
+MK
Ah
MK
MK
@@ -36770,6 +37057,9 @@ MK
MK
KT
MK
+Ah
+MK
+Os
MK
Ah
Ah
@@ -36782,18 +37072,9 @@ Ah
Ah
Ah
Ah
-<<<<<<< HEAD
-Ah
-Ah
-Ah
-MK
-sF
-MK
-=======
LK
Il
LK
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
MK
MK
MK
@@ -36919,9 +37200,9 @@ eR
KT
MK
Ah
-Ah
-Ah
-Ah
+MK
+Os
+MK
Ah
Ah
Ah
@@ -37062,7 +37343,7 @@ KT
XX
MK
MK
-MK
+Os
MK
MK
MK
@@ -37204,7 +37485,7 @@ HG
ho
ho
ho
-ho
+hG
ho
ho
ho
@@ -37254,7 +37535,7 @@ hA
LQ
cL
zx
-RW
+vC
sl
AJ
rJ
@@ -37643,9 +37924,9 @@ Ah
MK
Ah
MK
-LK
+HV
Il
-LK
+HV
Ah
Ah
MK
@@ -37785,9 +38066,9 @@ Ah
Ah
Ah
Ah
-LK
-Il
-LK
+HV
+xQ
+HV
Ah
Ah
Ah
@@ -37927,9 +38208,9 @@ Ah
Ah
Ah
Ah
-LK
-Il
-LK
+HV
+xQ
+HV
Ah
Ah
Ah
@@ -38033,7 +38314,7 @@ Bk
Bk
ce
Bk
-ce
+Bk
ce
Bk
ce
@@ -38069,9 +38350,9 @@ Ah
Ah
MK
MK
-LK
-Il
-LK
+HV
+xQ
+HV
Ah
Ah
Ah
@@ -38167,7 +38448,7 @@ Bk
Bk
Bk
Bk
-ce
+Bk
ce
Bk
Bk
@@ -38211,9 +38492,9 @@ MK
MK
MK
Ah
-LK
-Il
-LK
+HV
+xQ
+HV
Ah
MK
MK
@@ -38353,9 +38634,9 @@ MK
MK
MK
MK
-LK
+HV
Il
-LK
+HV
Ah
MK
MK
@@ -38934,8 +39215,8 @@ ce
ce
ce
ce
-ce
-ce
+Bk
+Bk
Bk
Cw
vu
@@ -39748,7 +40029,7 @@ df
uH
uH
eW
-eW
+RB
eW
uH
uH
@@ -40301,7 +40582,7 @@ eW
eW
eW
eW
-eW
+RB
eW
eW
eW
@@ -40332,11 +40613,11 @@ eW
eW
eW
eW
+RB
eW
eW
eW
-eW
-eW
+RB
eW
eW
eW
@@ -40491,7 +40772,7 @@ qE
qE
qE
ce
-ce
+Bk
ce
ce
ce
@@ -40504,11 +40785,7 @@ Bk
Bk
ce
ce
-<<<<<<< HEAD
-ce
-=======
Bk
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
Cw
jF
vu
@@ -40607,13 +40884,13 @@ eW
eW
eW
eW
+RB
eW
eW
eW
eW
eW
-eW
-eW
+RB
eW
eW
eW
@@ -40637,8 +40914,8 @@ Lb
qE
qE
ce
-ce
-ce
+Bk
+Bk
Bk
ce
ce
@@ -40650,15 +40927,9 @@ Bk
ce
ce
ce
-<<<<<<< HEAD
-ce
-iW
-iW
-=======
Bk
Bk
Bk
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
zf
ce
ce
@@ -40798,15 +41069,9 @@ Bk
ce
ce
ce
-<<<<<<< HEAD
-ce
-iW
-iW
-=======
Bk
Bk
Bk
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
zf
Bk
ce
@@ -40834,9 +41099,9 @@ ce
ce
ce
ce
-ce
-ce
-ce
+Bk
+Bk
+Bk
Bk
Bk
ce
@@ -40896,7 +41161,7 @@ uH
uH
uH
eW
-eW
+RB
eW
eW
eW
@@ -40947,13 +41212,8 @@ ce
ce
ce
ce
-<<<<<<< HEAD
-ce
-ce
-=======
Bk
vj
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
Cw
jF
jF
@@ -41094,21 +41354,13 @@ ce
ce
ce
ce
-<<<<<<< HEAD
-=======
Bk
vj
vj
uh
dA
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
ce
ce
-iW
-iW
-iW
-iW
-iW
ce
ce
ce
@@ -41245,11 +41497,11 @@ ce
ce
ce
ce
+vj
+vj
+uh
+dA
ce
-iW
-iW
-iW
-iW
ce
ce
ce
@@ -41387,10 +41639,10 @@ ce
ce
ce
ce
-ce
-ce
-ce
-ce
+dA
+dA
+dA
+dA
ce
ce
ce
@@ -41876,4 +42128,3 @@ Bh
Bh
Bh
"}
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm
index 19a6712288..4b8ee8afa3 100644
--- a/maps/groundbase/gb-z2.dmm
+++ b/maps/groundbase/gb-z2.dmm
@@ -1,6 +1,3 @@
-<<<<<<< HEAD
-lol bye
-=======
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/structure/grille,
@@ -188,6 +185,7 @@ lol bye
/obj/machinery/camera/network/medbay{
dir = 1
},
+/obj/machinery/iv_drip,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
"au" = (
@@ -211,10 +209,6 @@ lol bye
},
/turf/simulated/floor/tiled,
/area/groundbase/science/robotics)
-"aw" = (
-/obj/machinery/firework_launcher,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
"ax" = (
/obj/structure/closet/secure_closet/personal,
/obj/item/weapon/towel/random,
@@ -338,17 +332,6 @@ lol bye
"aQ" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -359,6 +342,16 @@ lol bye
name = "Pen 5 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"aR" = (
@@ -466,11 +459,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
@@ -535,11 +527,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
@@ -806,6 +797,7 @@ lol bye
name = "Privacy Shutter Control";
pixel_y = 30
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled,
/area/groundbase/science/rnd)
"ca" = (
@@ -938,11 +930,9 @@ lol bye
dir = 8;
icon_state = "pipe-c"
},
-/obj/structure/table/standard,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/item/device/retail_scanner/cargo,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"cs" = (
@@ -1289,6 +1279,10 @@ lol bye
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
+"du" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled,
+/area/groundbase/science/circuits)
"dv" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/belt/utility,
@@ -1472,6 +1466,24 @@ lol bye
},
/turf/simulated/floor/tiled,
/area/groundbase/command/hop)
+"ed" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/dorms)
"ee" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 1
@@ -1792,7 +1804,18 @@ lol bye
/turf/simulated/floor/wood,
/area/groundbase/dorms/room1)
"eV" = (
-/obj/machinery/light,
+/obj/machinery/computer/supplycomp/control{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"eX" = (
@@ -2208,14 +2231,16 @@ lol bye
/area/groundbase/science/xenobot)
"gf" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled,
/area/groundbase/science/xenohall)
"gk" = (
-/obj/structure/table/standard,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"gm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -2285,7 +2310,7 @@ lol bye
name = "box of measuring cups";
pixel_x = 2;
pixel_y = 3;
- starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)
+ starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup=7)
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -2470,12 +2495,13 @@ lol bye
/turf/simulated/floor/wood,
/area/groundbase/dorms/room7)
"gX" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "qm_office"
+/obj/structure/table/standard,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/qm,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor,
+/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"gY" = (
/obj/structure/bed/chair/sofa/corner/black,
@@ -2521,12 +2547,6 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/science/hall)
-"he" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
"hh" = (
/obj/structure/table/steel,
/obj/machinery/recharger,
@@ -2563,11 +2583,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1
@@ -2666,6 +2685,7 @@ lol bye
/obj/machinery/light{
dir = 8
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/chapel)
"hz" = (
@@ -2743,8 +2763,15 @@ lol bye
/obj/machinery/light{
dir = 8
},
-/obj/machinery/injector_maker{
- pixel_x = -29
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -11;
+ pixel_y = 14
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "chem_room";
+ pixel_x = -25
},
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/Chemistry)
@@ -2826,17 +2853,6 @@ lol bye
"hX" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -2847,6 +2863,16 @@ lol bye
name = "Pen 2 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"hY" = (
@@ -3092,12 +3118,6 @@ lol bye
},
/turf/simulated/floor/tiled/white,
/area/medical/virology)
-"iH" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/westspur)
"iI" = (
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
/area/groundbase/civilian/hydroponics/out)
@@ -3197,6 +3217,9 @@ lol bye
pixel_x = -30;
pixel_y = 16
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"iW" = (
@@ -3643,6 +3666,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ id = "chem_room";
+ name = "Chemistry Shutters"
+ },
/turf/simulated/floor,
/area/groundbase/medical/Chemistry)
"kj" = (
@@ -3728,6 +3755,11 @@ lol bye
},
/turf/simulated/floor/tiled,
/area/groundbase/science/server)
+"kv" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/item/weapon/storage/backpack/dufflebag,
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"ky" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3746,11 +3778,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
@@ -3793,6 +3824,7 @@ lol bye
pixel_x = -32;
pixel_y = -1
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"kL" = (
@@ -3840,6 +3872,7 @@ lol bye
/obj/machinery/camera/network/medbay{
dir = 8
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/Chemistry)
"kQ" = (
@@ -4075,6 +4108,19 @@ lol bye
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/groundbase/dorms/room2)
+"ly" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"lz" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
@@ -4096,6 +4142,10 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/chapel)
+"lB" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/office)
"lC" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4237,14 +4287,15 @@ lol bye
/turf/simulated/wall,
/area/groundbase/medical/triage)
"lU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/obj/machinery/alarm{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"lV" = (
/turf/simulated/wall/r_wall,
/area/groundbase/science/xenobot)
@@ -4329,14 +4380,11 @@ lol bye
/turf/simulated/floor/tiled/dark,
/area/groundbase/command/bridge)
"mj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/light_switch{
+ pixel_y = 30
},
-/turf/simulated/floor,
-/area/groundbase/cargo/office)
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"mk" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -4768,8 +4816,7 @@ lol bye
/area/groundbase/dorms/room8)
"nD" = (
/obj/machinery/disposal/wall{
- dir = 8;
- name = "auto-resleeving equipment deposit"
+ dir = 8
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -4824,6 +4871,16 @@ lol bye
},
/turf/simulated/floor/tiled,
/area/groundbase/science/hall)
+"nL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ name = "package tagger - Resleeving";
+ sort_tag = "Resleeving"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/dorms)
"nM" = (
/obj/structure/bed/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -5020,20 +5077,18 @@ lol bye
/turf/simulated/floor/tiled,
/area/groundbase/science/xenobot)
"ot" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/device/megaphone,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- dir = 8;
- pixel_x = 28
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
+"ou" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/office)
"ov" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
@@ -5146,11 +5201,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1
@@ -5169,6 +5223,18 @@ lol bye
"oO" = (
/turf/simulated/floor/wood,
/area/groundbase/command/captain)
+"oR" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"oS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5337,17 +5403,6 @@ lol bye
"pq" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -5358,6 +5413,16 @@ lol bye
name = "Pen 7 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"pr" = (
@@ -5887,9 +5952,17 @@ lol bye
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/command/hop)
"qN" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/obj/machinery/button/windowtint{
+ id = "qm_office";
+ layer = 3.3;
+ pixel_x = -24;
+ pixel_y = 27
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"qP" = (
/obj/machinery/alarm{
dir = 4
@@ -6143,6 +6216,12 @@ lol bye
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
/area/groundbase/cargo/office)
+"rw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/groundbase/medical/triage)
"rx" = (
/obj/structure/table/standard,
/obj/machinery/microwave,
@@ -6524,6 +6603,10 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/command/meeting)
+"sE" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/white,
+/area/groundbase/medical/lobby)
"sF" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/outdoors/sidewalk,
@@ -6629,12 +6712,10 @@ lol bye
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level2/eastspur)
"sS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "qm_office"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
+/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"sT" = (
/obj/machinery/seed_storage/xenobotany,
@@ -6801,6 +6882,9 @@ lol bye
dir = 4;
pixel_x = -32
},
+/obj/structure/bed/chair{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lobby)
"tA" = (
@@ -6821,11 +6905,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1
@@ -6850,6 +6933,11 @@ lol bye
/obj/machinery/door/firedoor,
/turf/simulated/floor,
/area/groundbase/civilian/kitchen)
+"tE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/office)
"tF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -7168,6 +7256,16 @@ lol bye
/obj/structure/bookcase,
/turf/simulated/floor/wood,
/area/groundbase/civilian/library)
+"uA" = (
+/obj/structure/table/standard,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"uC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -7302,10 +7400,10 @@ lol bye
dir = 8
},
/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
+/obj/machinery/photocopier/faxmachine{
+ department = "Cargo";
+ pixel_y = 6
+ },
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"uT" = (
@@ -7335,6 +7433,10 @@ lol bye
/obj/random/donkpocketbox,
/turf/simulated/floor/tiled/eris/cafe,
/area/groundbase/civilian/kitchen)
+"uV" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled,
+/area/groundbase/science/hall)
"uX" = (
/obj/structure/fence,
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
@@ -7343,6 +7445,10 @@ lol bye
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
+"uZ" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/dorms)
"vb" = (
/obj/machinery/light/bigfloorlamp,
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
@@ -7351,6 +7457,14 @@ lol bye
/obj/structure/sign/department/chem,
/turf/simulated/wall,
/area/groundbase/medical/Chemistry)
+"ve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/office)
"vh" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
@@ -7491,6 +7605,16 @@ lol bye
},
/turf/simulated/floor/tiled,
/area/groundbase/science/hall)
+"vE" = (
+/obj/structure/table/standard,
+/obj/machinery/photocopier/faxmachine{
+ department = "Quartermaster-Office"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"vF" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -7640,6 +7764,17 @@ lol bye
outdoors = 0
},
/area/groundbase/level2/nw)
+"vU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "chem_room";
+ name = "Chemistry Shutters"
+ },
+/turf/simulated/floor,
+/area/groundbase/medical/Chemistry)
"vV" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -7649,16 +7784,14 @@ lol bye
/turf/simulated/floor/tiled,
/area/groundbase/civilian/hydroponics)
"vW" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/qm,
-/obj/machinery/button/windowtint{
- id = "qm_office";
- layer = 3.3;
- pixel_x = 16;
- pixel_y = -27
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/obj/machinery/firealarm{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"vY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -7682,9 +7815,6 @@ lol bye
dir = 1
},
/obj/machinery/disposal,
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/window/reinforced{
dir = 4
},
@@ -7733,6 +7863,10 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/command/meeting)
+"wi" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/wood,
+/area/groundbase/civilian/library)
"wj" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -8004,9 +8138,13 @@ lol bye
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
+/obj/structure/closet/walllocker_double/cargo/west,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"xd" = (
@@ -8370,6 +8508,12 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/dorms)
+"yd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"ye" = (
/obj/structure/table/bench/padded,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -8561,11 +8705,10 @@ lol bye
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
@@ -8718,6 +8861,7 @@ lol bye
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/item/device/retail_scanner/cargo,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"zg" = (
@@ -8798,17 +8942,6 @@ lol bye
"zB" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -8819,6 +8952,16 @@ lol bye
name = "Pen 4 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"zC" = (
@@ -8974,6 +9117,7 @@ lol bye
/area/rnd/xenobiology)
"zW" = (
/obj/machinery/light,
+/obj/machinery/iv_drip,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
"zX" = (
@@ -9023,6 +9167,10 @@ lol bye
},
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level2/nw)
+"Ae" = (
+/obj/machinery/vending/wardrobe/cargodrobe,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"Af" = (
/obj/machinery/photocopier,
/obj/machinery/light{
@@ -9129,6 +9277,7 @@ lol bye
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled,
/area/groundbase/science/hall)
"Aw" = (
@@ -9459,6 +9608,9 @@ lol bye
},
/turf/simulated/floor/wood,
/area/groundbase/dorms/room7)
+"Bk" = (
+/turf/simulated/wall,
+/area/groundbase/cargo/storage)
"Bl" = (
/turf/simulated/wall/r_wall,
/area/groundbase/science/picnic)
@@ -9976,17 +10128,6 @@ lol bye
"CS" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -9997,6 +10138,16 @@ lol bye
name = "Pen 6 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"CT" = (
@@ -10420,8 +10571,7 @@ lol bye
req_access = list(20)
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 8
},
/obj/item/clothing/head/helmet/space/void/captain,
/obj/item/clothing/suit/space/void/captain,
@@ -10444,7 +10594,6 @@ lol bye
"DX" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
-/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
@@ -10724,8 +10873,16 @@ lol bye
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/level2/ne)
"EQ" = (
-/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/walllocker_double/cargo/north,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/obj/item/weapon/cartridge/quartermaster,
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"ET" = (
@@ -10759,15 +10916,6 @@ lol bye
/obj/structure/bed/chair/sofa/right/black,
/turf/simulated/floor/carpet/geo,
/area/groundbase/civilian/kitchen/backroom)
-"EX" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/item/weapon/storage/backpack/dufflebag,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
"EY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -10990,6 +11138,14 @@ lol bye
},
/turf/simulated/wall,
/area/groundbase/cargo/office)
+"FE" = (
+/obj/machinery/light/small,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"FF" = (
/turf/simulated/wall,
/area/groundbase/civilian/bar)
@@ -11001,17 +11157,17 @@ lol bye
/area/groundbase/cargo/bay)
"FJ" = (
/obj/structure/table/standard,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = -4;
- pixel_y = 7
+/obj/item/clothing/head/soft,
+/obj/item/clothing/head/soft,
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = 6;
- pixel_y = 5
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/weapon/cartridge/quartermaster,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"FL" = (
/obj/machinery/light{
dir = 8
@@ -11031,12 +11187,14 @@ lol bye
"FO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 1
},
/turf/simulated/floor,
/area/rnd/xenobiology)
@@ -11333,16 +11491,12 @@ lol bye
/turf/simulated/floor/tiled,
/area/groundbase/command/hop)
"GD" = (
-/obj/machinery/computer/supplycomp/control{
- dir = 8
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "qm_office"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/status_display/supply_display{
- pixel_x = 32
- },
-/turf/simulated/floor/wood,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
/area/groundbase/cargo/qm)
"GE" = (
/obj/machinery/door/firedoor,
@@ -11360,19 +11514,6 @@ lol bye
/obj/machinery/microwave,
/turf/simulated/floor/wood,
/area/groundbase/dorms/room7)
-"GH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor,
-/area/rnd/xenobiology)
"GI" = (
/obj/effect/landmark{
name = "lightsout"
@@ -11418,6 +11559,7 @@ lol bye
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
"GO" = (
@@ -11918,6 +12060,15 @@ lol bye
/obj/random/vendorall,
/turf/simulated/floor/tiled/dark,
/area/groundbase/dorms)
+"If" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"Ig" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -12467,6 +12618,20 @@ lol bye
},
/turf/simulated/floor/wood,
/area/groundbase/civilian/library)
+"JG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Storage";
+ req_access = list(31);
+ req_one_access = null
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"JH" = (
/obj/effect/landmark{
name = "morphspawn"
@@ -12598,9 +12763,14 @@ lol bye
/area/groundbase/medical/triage)
"JW" = (
/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Quartermaster-Office"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/device/megaphone,
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"JX" = (
@@ -12662,22 +12832,14 @@ lol bye
/obj/machinery/light{
dir = 8
},
+/obj/machinery/injector_maker{
+ pixel_x = -29
+ },
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/Chemistry)
"Kg" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -12688,6 +12850,16 @@ lol bye
name = "Pen 8 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"Kh" = (
@@ -12720,13 +12892,6 @@ lol bye
/turf/simulated/floor/tiled,
/area/groundbase/civilian/hydroponics)
"Ki" = (
-/obj/structure/table/standard,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/camera/network/cargo,
/turf/simulated/floor/tiled,
@@ -12850,7 +13015,11 @@ lol bye
/turf/simulated/floor/outdoors/sidewalk/side,
/area/groundbase/level2/ne)
"KB" = (
-/obj/structure/flora/pottedplant/minitree,
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/qm,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"KC" = (
@@ -12957,13 +13126,10 @@ lol bye
/turf/simulated/floor,
/area/maintenance/groundbase/substation/command)
"KS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"KU" = (
@@ -13446,15 +13612,16 @@ lol bye
/turf/simulated/floor/tiled,
/area/groundbase/science/rnd)
"Mk" = (
-/obj/structure/table/standard,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
+/area/groundbase/cargo/storage)
"Ml" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/power/apc{
@@ -13502,10 +13669,9 @@ lol bye
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/lobby)
"Mq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/groundbase/dorms)
"Mr" = (
@@ -13537,6 +13703,13 @@ lol bye
/obj/effect/floor_decal/steeldecal/steel_decals10,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
+"Mv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/cargotech,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"Mw" = (
/obj/machinery/autolathe{
hacked = 1
@@ -13631,6 +13804,12 @@ lol bye
},
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
/area/groundbase/cargo/bay)
+"MI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/bar)
"MJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -13718,11 +13897,16 @@ lol bye
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
"MW" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "qm_office"
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/wall,
+/turf/simulated/floor,
/area/groundbase/cargo/qm)
"MX" = (
/obj/structure/closet/firecloset,
@@ -13881,12 +14065,12 @@ lol bye
},
/area/groundbase/level2/se)
"Ns" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
+/obj/structure/closet/secure_closet/cargotech,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/storage)
"Nv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -13911,18 +14095,6 @@ lol bye
/area/groundbase/civilian/chapel)
"NA" = (
/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -13933,6 +14105,17 @@ lol bye
name = "Pen 3 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"NC" = (
@@ -14171,15 +14354,7 @@ lol bye
/turf/simulated/floor/carpet/geo,
/area/groundbase/civilian/kitchen/backroom)
"Ok" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/structure/filingcabinet,
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"Ol" = (
@@ -14312,6 +14487,10 @@ lol bye
"OD" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/Chemistry)
"OE" = (
@@ -14482,11 +14661,6 @@ lol bye
name = "Trash";
sortType = "Trash"
},
-/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Cargo";
- pixel_y = 6
- },
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"Pc" = (
@@ -14556,6 +14730,9 @@ lol bye
departmentType = 2;
pixel_y = 30
},
+/obj/item/device/healthanalyzer/guide,
+/obj/item/device/healthanalyzer/guide,
+/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/groundbase/medical/triage)
"Po" = (
@@ -14737,6 +14914,7 @@ lol bye
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
"PR" = (
@@ -14944,11 +15122,11 @@ lol bye
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
/area/groundbase/unexplored/outdoors)
"Qv" = (
-/obj/machinery/vending/wardrobe/cargodrobe,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"Qw" = (
@@ -15043,6 +15221,9 @@ lol bye
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"QI" = (
@@ -15543,17 +15724,17 @@ lol bye
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
/turf/simulated/wall,
-/area/groundbase/cargo/office)
+/area/groundbase/cargo/qm)
"RY" = (
/obj/structure/noticeboard{
pixel_x = -32
@@ -15621,17 +15802,6 @@ lol bye
"Sj" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular{
@@ -15642,6 +15812,16 @@ lol bye
name = "Pen 1 Blast Doors";
opacity = 0
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"Sl" = (
@@ -15901,8 +16081,7 @@ lol bye
/area/groundbase/science/xenohall)
"SQ" = (
/obj/machinery/disposal/wall{
- dir = 1;
- name = "Auto-Resleeving Item Deposit"
+ dir = 1
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -15926,6 +16105,11 @@ lol bye
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
+"SS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/groundbase/cargo/office)
"ST" = (
/obj/machinery/camera/network/research/xenobio,
/turf/simulated/floor/reinforced,
@@ -16090,11 +16274,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
@@ -16202,6 +16385,12 @@ lol bye
/obj/effect/landmark/start/cargo,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
+"TR" = (
+/obj/machinery/firealarm{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/groundbase/cargo/qm)
"TS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -16508,11 +16697,10 @@ lol bye
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1
@@ -16639,14 +16827,12 @@ lol bye
/turf/simulated/wall/r_wall,
/area/groundbase/science/picnic)
"Vi" = (
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "qm_office"
},
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor,
/area/groundbase/cargo/qm)
"Vj" = (
/obj/structure/table/standard,
@@ -16884,6 +17070,12 @@ lol bye
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/groundbase/dorms/room4)
+"VU" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/groundbase/medical/lobby)
"VV" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -17058,6 +17250,10 @@ lol bye
},
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/level2/nw)
+"Ws" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/wall/r_wall,
+/area/groundbase/science/rnd)
"Wu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -17614,6 +17810,7 @@ lol bye
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/groundbase/cargo/office)
"Yd" = (
@@ -18007,6 +18204,20 @@ lol bye
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/command/meeting)
+"Zq" = (
+/obj/machinery/disposal/wall/cleaner{
+ desc = "Automatically cleans and transports items to the local auto-resleeving facilities.";
+ dir = 8;
+ name = "auto-resleeving equipment deposit"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/dorms)
"Zr" = (
/obj/structure/closet/secure_closet/hydroponics{
req_access = list(77)
@@ -18021,6 +18232,9 @@ lol bye
/turf/simulated/floor/carpet/blue,
/area/groundbase/medical/psych)
"Zt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"Zv" = (
@@ -18089,9 +18303,6 @@ lol bye
},
/area/groundbase/dorms/room6)
"ZD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/wood,
/area/groundbase/cargo/qm)
"ZE" = (
@@ -18138,16 +18349,13 @@ lol bye
"ZK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
+/obj/structure/window/reinforced,
/turf/simulated/floor,
/area/rnd/xenobiology)
"ZL" = (
@@ -19644,7 +19852,7 @@ ST
jA
jA
oM
-GH
+ZK
ls
iK
ls
@@ -20212,7 +20420,7 @@ ST
jA
jA
UQ
-GH
+ZK
ls
iK
ls
@@ -20780,7 +20988,7 @@ ST
jA
jA
tB
-GH
+ZK
ls
kN
ls
@@ -21348,11 +21556,11 @@ ST
jA
jA
hl
-GH
+ZK
ls
iK
ls
-ZK
+FO
bb
jA
jA
@@ -23392,7 +23600,7 @@ iE
fW
WY
MY
-MY
+wi
rP
xE
xE
@@ -23472,7 +23680,7 @@ Tl
UB
Tl
Ty
-Tl
+du
Rh
Fk
AZ
@@ -23624,7 +23832,7 @@ aB
PR
lw
Vr
-aw
+Vr
Bl
ag
ag
@@ -24112,7 +24320,7 @@ iB
LV
wd
YR
-YR
+MI
OC
sH
Uy
@@ -24476,7 +24684,7 @@ Vr
Vr
sz
Vr
-Vr
+uV
XX
xv
Fx
@@ -24499,8 +24707,8 @@ LN
Xb
BY
eC
-Mm
-Yp
+ed
+uZ
Ie
aF
Mm
@@ -24879,7 +25087,7 @@ eN
eN
jG
OY
-OY
+Ws
gm
rh
dN
@@ -24933,7 +25141,7 @@ Wu
RP
XK
As
-Mq
+bE
IX
yc
jW
@@ -25075,7 +25283,7 @@ jr
iP
Dw
Dw
-Yp
+Mq
Sy
Cu
bN
@@ -25217,7 +25425,7 @@ hZ
iA
aA
iA
-iA
+nL
Ca
sk
bN
@@ -25359,7 +25567,7 @@ pK
Yp
Ct
Ai
-Yp
+Zq
eM
Sq
jM
@@ -26699,11 +26907,11 @@ Yo
In
bY
bY
-iH
-eN
-eN
-eN
-eN
+OI
+OI
+OI
+OI
+OI
eN
eN
eN
@@ -26842,10 +27050,10 @@ Wl
bY
bY
bY
-eN
-eN
-eN
-eN
+OI
+OI
+OI
+OI
eN
eN
eN
@@ -26984,10 +27192,10 @@ Wl
bY
OI
OI
-eN
-eN
-eN
-eN
+OI
+OI
+OI
+OI
eN
eN
eN
@@ -27126,10 +27334,10 @@ bY
bY
OI
OI
-eN
-eN
-eN
-eN
+OI
+OI
+OI
+OI
eN
eN
eN
@@ -28917,11 +29125,11 @@ uP
uP
cK
cK
-cK
-cK
-cK
-uP
-to
+Cz
+Cz
+GD
+Vi
+Cz
RX
It
rv
@@ -29059,12 +29267,12 @@ uP
uP
cK
cK
-cK
-uP
-uP
-uP
-to
-mj
+Cz
+eV
+JW
+vE
+kv
+Ly
up
ea
Ln
@@ -29201,18 +29409,18 @@ to
to
iw
to
-to
-to
-to
-to
-to
+Cz
mj
+KB
+oR
+If
+Ly
FR
Lc
Oi
xK
uS
-qN
+Lc
FR
FR
Lc
@@ -29344,10 +29552,10 @@ to
to
to
Cz
-Cz
+qN
sS
gX
-Cz
+TR
Ly
Ef
yb
@@ -29373,9 +29581,9 @@ tw
Ia
yJ
HU
-Du
+VU
ty
-Ud
+sE
fy
ll
br
@@ -29487,9 +29695,9 @@ to
OM
Cz
EQ
-ZD
+sS
Zt
-EX
+ZD
MW
Wg
gB
@@ -29630,7 +29838,7 @@ to
Cz
Ok
KS
-QH
+ly
QH
Jp
Ug
@@ -29770,16 +29978,16 @@ ks
ks
ks
Cz
-Vi
-FJ
-JW
-eV
+Cz
+Cz
+Cz
+Cz
Cz
Ki
za
-za
+SS
Vu
-Lc
+lB
rj
dA
XU
@@ -29911,15 +30119,15 @@ ks
ks
ks
ks
-Cz
-Ns
+Bk
+Ae
vW
lU
-he
-gX
Mk
-Lc
-Lc
+JG
+ve
+ve
+ve
yH
gL
Lc
@@ -30053,19 +30261,19 @@ ks
ks
ks
ks
-Cz
-GD
+Bk
+yd
ot
gk
-KB
-Cz
+FE
+Bk
Qv
-zp
+tE
zp
Yc
eL
Lc
-FR
+ou
Ta
dv
Wj
@@ -30195,12 +30403,12 @@ UH
ks
ks
ks
-Cz
-Cz
-Cz
-Cz
-Cz
-Cz
+Bk
+FJ
+Ns
+Mv
+uA
+Bk
zX
zX
Lc
@@ -30248,12 +30456,12 @@ oH
oH
oH
oH
-oH
-oH
-oH
-oH
-oH
-oH
+QD
+QD
+QD
+QD
+QD
+QD
Bo
Bo
Bo
@@ -30337,12 +30545,12 @@ UH
ks
ks
ks
-ks
-ks
-ks
-ks
-ks
-Wj
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
dE
dE
Lc
@@ -30390,10 +30598,10 @@ oH
oH
oH
oH
-oH
-oH
-oH
-oH
+QD
+QD
+QD
+QD
QD
Bo
Bo
@@ -30484,7 +30692,7 @@ ks
ks
ks
ks
-Wj
+Bk
Wj
oa
oa
@@ -30532,10 +30740,10 @@ oH
oH
oH
oH
-oH
-oH
-oH
-oH
+QD
+QD
+QD
+QD
QD
Bo
Bo
@@ -30674,10 +30882,10 @@ oH
oH
oH
oH
-oH
-oH
-oH
-oH
+QD
+QD
+QD
+QD
Bo
Bo
Bo
@@ -30816,10 +31024,10 @@ oH
oH
oH
oH
-oH
+QD
Bo
-oH
-oH
+QD
+QD
Bo
Bo
Bo
@@ -30929,7 +31137,7 @@ NC
to
to
to
-ki
+vU
nS
Ur
Yu
@@ -31071,7 +31279,7 @@ NC
to
to
to
-ki
+vU
xo
UV
Yu
@@ -31639,7 +31847,7 @@ NC
to
to
to
-ki
+vU
tt
bx
Yu
@@ -31781,7 +31989,7 @@ NC
to
to
to
-ki
+vU
ua
Ur
Yu
@@ -31931,7 +32139,7 @@ OD
HR
sW
dr
-dr
+rw
SH
Fy
fF
@@ -38124,4 +38332,3 @@ je
je
je
"}
->>>>>>> ad7ceda4db... Merge pull request #14481 from Runa-Dacino/Industrial-AutoInjectors
diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm
index 9b669ed723..a07d8ee7c7 100644
--- a/maps/groundbase/groundbase_defines.dm
+++ b/maps/groundbase/groundbase_defines.dm
@@ -18,6 +18,7 @@
#define Z_LEVEL_OFFMAP1 17
#define Z_LEVEL_GATEWAY 18
#define Z_LEVEL_OM_ADVENTURE 19
+#define Z_LEVEL_REDGATE 20
//Camera networks
#define NETWORK_HALLS "Halls"
@@ -228,6 +229,13 @@
list("Grass Cave")
)
+ lateload_redgate = list(
+ list("Teppi Ranch"),
+ list("Innland"),
+ list("Abandoned Island"),
+ list("Dark Adventure")
+ )
+
lateload_gb_north = list(
list("Northern Wilds 1"),
list("Northern Wilds 2")
diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm
index 00e2440c1d..69567512a2 100644
--- a/maps/offmap_vr/common_offmaps.dm
+++ b/maps/offmap_vr/common_offmaps.dm
@@ -248,6 +248,43 @@
new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4)
new /datum/random_map/noise/ore/grasscave(null, 1, 1, z, 64, 64)
+//////////////////////////////////////////////////////////////////////////////////////
+
+/datum/map_template/common_lateload/redgate
+ name = "Redgate Submap"
+ desc = "Please do not use this."
+ mappath = null
+ associated_map_datum = /datum/map_z_level/common_lateload/redgate_destination
+
+/datum/map_z_level/common_lateload/redgate_destination
+ name = "Redgate Destination"
+ z = Z_LEVEL_REDGATE
+
+/datum/map_template/common_lateload/redgate/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_REDGATE, world.maxx, world.maxy)
+ new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_REDGATE, 64, 64)
+
+/datum/map_template/common_lateload/redgate/teppi_ranch
+ name = "Teppi Ranch"
+ desc = "An abandoned teppi ranch!"
+ mappath = 'maps/redgate/teppiranch.dmm'
+
+/datum/map_template/common_lateload/redgate/innland
+ name = "Innland"
+ desc = "Caves and grass and a tavern, woah!"
+ mappath = 'maps/redgate/innland.dmm'
+
+/datum/map_template/common_lateload/redgate/abandonedisland
+ name = "Abandoned Island"
+ desc = "It seems like it used to be people here!"
+ mappath = 'maps/redgate/abandonedisland.dmm'
+
+/datum/map_template/common_lateload/redgate/darkadventure
+ name = "Dark Adventure"
+ desc = "This place seems broken!"
+ mappath = 'maps/redgate/darkadventure.dmm'
+
//////////////////////////////////////////////////////////////////////////////////////
// Admin-use z-levels for loading whenever an admin feels like
#if AWAY_MISSION_TEST
@@ -524,4 +561,4 @@
name = "Talon"
flags = MAP_LEVEL_PLAYER|MAP_LEVEL_PERSIST|MAP_LEVEL_MAPPABLE
base_turf = /turf/space
- z = Z_LEVEL_OFFMAP1
\ No newline at end of file
+ z = Z_LEVEL_OFFMAP1
diff --git a/maps/redgate/abandonedisland.dmm b/maps/redgate/abandonedisland.dmm
new file mode 100644
index 0000000000..44273ecd56
--- /dev/null
+++ b/maps/redgate/abandonedisland.dmm
@@ -0,0 +1,20212 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aF" = (
+/turf/simulated/mineral/floor/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt";
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"aJ" = (
+/turf/simulated/wall/wood,
+/area/redgate/structure)
+"aL" = (
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"aM" = (
+/turf/simulated/floor/wood/broken,
+/area/redgate/structure)
+"aN" = (
+/turf/simulated/mineral/cave,
+/area/redgate/wilds)
+"aO" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"aS" = (
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"aU" = (
+/turf/simulated/floor/beach/water{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"aX" = (
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"aY" = (
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"aZ" = (
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"ba" = (
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"bd" = (
+/obj/structure/flora/tree/palm,
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"be" = (
+/turf/simulated/wall/wood,
+/area/redgate/wilds)
+"bf" = (
+/obj/fiftyspawner/steel,
+/obj/random/coin,
+/obj/structure/closet/crate,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bg" = (
+/obj/fiftyspawner/carpet,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bh" = (
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bi" = (
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/structure/closet/crate,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bj" = (
+/obj/fiftyspawner/steel,
+/obj/structure/closet/crate,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bk" = (
+/obj/random/contraband,
+/turf/simulated/floor/wood/broken,
+/area/redgate/wilds)
+"bl" = (
+/obj/structure/closet/coffin,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"bm" = (
+/obj/random/contraband,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bn" = (
+/obj/fiftyspawner/wood,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bo" = (
+/turf/simulated/floor/wood/broken,
+/area/redgate/wilds)
+"bp" = (
+/obj/random/tool,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"bq" = (
+/obj/random/medical,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"br" = (
+/obj/fiftyspawner/wood,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bs" = (
+/obj/fiftyspawner/phoron,
+/obj/structure/closet/crate,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bt" = (
+/obj/random/coin,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bv" = (
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bw" = (
+/obj/fiftyspawner/wood,
+/obj/random/coin,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bx" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/redgate/wilds)
+"by" = (
+/obj/fiftyspawner/phoron,
+/obj/structure/closet/crate,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bz" = (
+/obj/random/firstaid,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bA" = (
+/obj/random/tool,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bB" = (
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bC" = (
+/obj/fiftyspawner/plastic,
+/obj/structure/closet/crate,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"bD" = (
+/obj/structure/bed/double/padded,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bE" = (
+/obj/structure/simple_door/wood{
+ name = "dorm 1"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bF" = (
+/obj/structure/simple_door/wood{
+ name = "dorm 2"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bG" = (
+/obj/structure/simple_door/wood{
+ name = "dorm 3"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bH" = (
+/obj/structure/simple_door/wood{
+ name = "dorm 4"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bI" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"bJ" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bK" = (
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bL" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bM" = (
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"bN" = (
+/obj/structure/flora/tree/palm,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"bS" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"bT" = (
+/obj/structure/flora/sif/subterranean,
+/turf/simulated/mineral/floor/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt";
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"hk" = (
+/obj/random/mob/semirandom_mob_spawner/fish,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"sv" = (
+/obj/random/mob/semirandom_mob_spawner/fish/b,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"tj" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"vW" = (
+/obj/random/mob/semirandom_mob_spawner/fish/c,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"xL" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"xM" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"zB" = (
+/obj/random/mob/semirandom_mob_spawner/fish/b,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Cq" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"GL" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"HL" = (
+/obj/random/mob/semirandom_mob_spawner/fish,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Iq" = (
+/obj/random/mob/semirandom_mob_spawner/fish/c,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Kr" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"NT" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"PV" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"Rf" = (
+/obj/structure/redgate/away,
+/turf/simulated/floor/wood,
+/area/redgate/structure)
+"RY" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"SJ" = (
+/turf/simulated/floor/wood{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"VJ" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"YW" = (
+/obj/random/mob/semirandom_mob_spawner/fish/d,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"ZE" = (
+/obj/random/mob/semirandom_mob_spawner/fish/d,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+
+(1,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+sv
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(2,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+hk
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(3,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aX
+aX
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(4,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aX
+aX
+aX
+aZ
+aZ
+ba
+ba
+ba
+ba
+aZ
+ba
+ba
+ba
+ba
+hk
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+hk
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(5,1,1) = {"
+ba
+ba
+ba
+ba
+hk
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+sv
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aX
+aX
+aX
+aX
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+ba
+zB
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(6,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+aZ
+aZ
+ba
+aZ
+aZ
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+aZ
+ba
+aZ
+ba
+aZ
+ba
+ba
+zB
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aX
+aX
+aX
+aX
+aX
+aX
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(7,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aX
+aX
+aX
+aX
+aX
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+zB
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(8,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+HL
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aX
+aX
+aX
+aX
+aX
+aX
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+HL
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(9,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aU
+aU
+aU
+aU
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(10,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aU
+aU
+aU
+aU
+aU
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(11,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aO
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aY
+aY
+aO
+aY
+aY
+aY
+aO
+aY
+aO
+aO
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aY
+aO
+aY
+aX
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(12,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(13,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+VJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(14,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aN
+aN
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+tj
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(15,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(16,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(17,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+Kr
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(18,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(19,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+tj
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(20,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(21,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(22,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(23,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+NT
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(24,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(25,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(26,1,1) = {"
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aL
+aL
+aL
+aL
+aL
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(27,1,1) = {"
+ba
+ba
+ba
+aZ
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aL
+aL
+aL
+aM
+aL
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(28,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aL
+aL
+Rf
+aL
+aL
+aL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(29,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aL
+aL
+aL
+aL
+aL
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(30,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aM
+aL
+aL
+aL
+aM
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(31,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(32,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+aO
+aO
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(33,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+xL
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(34,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(35,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(36,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xM
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+bd
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(37,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+bd
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(38,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ZE
+ba
+"}
+(39,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+ba
+YW
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(40,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(41,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+NT
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(42,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(43,1,1) = {"
+ba
+ba
+ba
+aZ
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(44,1,1) = {"
+ba
+ba
+ba
+aZ
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(45,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+NT
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xM
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(46,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(47,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+xL
+xL
+xL
+xL
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(48,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aN
+aN
+aN
+aN
+aN
+aO
+aN
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aO
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(49,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(50,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xM
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+YW
+aZ
+ba
+ba
+ba
+ba
+"}
+(51,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(52,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(53,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aU
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(54,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+xL
+xL
+aO
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(55,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+bd
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+VJ
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(56,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+xL
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(57,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+bx
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aY
+aU
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(58,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+aU
+aU
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(59,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aU
+aU
+aU
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+SJ
+SJ
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(60,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aU
+aU
+aU
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+SJ
+SJ
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(61,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aU
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+SJ
+SJ
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(62,1,1) = {"
+ba
+ZE
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+aU
+aU
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+SJ
+SJ
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(63,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aO
+bx
+aU
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(64,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aY
+bd
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+bx
+bx
+aO
+bx
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ZE
+"}
+(65,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aO
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+bx
+aO
+aO
+aO
+aO
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+xL
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(66,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+bd
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bx
+aO
+aO
+PV
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(67,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+bd
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(68,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(69,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aY
+aY
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+xL
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+PV
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bN
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(70,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+xL
+xL
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(71,1,1) = {"
+ba
+ba
+aZ
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+xL
+xL
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+xL
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(72,1,1) = {"
+ba
+ba
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+Iq
+ba
+ba
+ba
+ba
+"}
+(73,1,1) = {"
+ba
+ba
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aN
+aO
+aO
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aN
+aN
+aN
+aN
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(74,1,1) = {"
+ba
+ba
+aZ
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(75,1,1) = {"
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(76,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(77,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aJ
+bD
+aL
+aL
+aJ
+aX
+aX
+aJ
+bD
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+Kr
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(78,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+xL
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(79,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(80,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+aJ
+bE
+aJ
+aJ
+aX
+aX
+aJ
+aJ
+bG
+aJ
+aJ
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(81,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(82,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aX
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(83,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(84,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+xL
+aX
+xL
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(85,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+bI
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(86,1,1) = {"
+ba
+ba
+ba
+ba
+ZE
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+xL
+aO
+xL
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(87,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+be
+be
+aX
+aX
+be
+be
+xL
+xL
+xL
+xL
+xL
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(88,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+xL
+xL
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aN
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+be
+bf
+bj
+bn
+bn
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+bN
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(89,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+xL
+xL
+xL
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bg
+bg
+bo
+bs
+by
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(90,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+xL
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bh
+bk
+bp
+bt
+bq
+be
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+bd
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+"}
+(91,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aS
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+ba
+ba
+"}
+(92,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bi
+aX
+aX
+aX
+xL
+xL
+xL
+xL
+xL
+bS
+xL
+xL
+xL
+xL
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+xL
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+SJ
+ba
+ba
+"}
+(93,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aN
+aU
+aU
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+RY
+aX
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bo
+bz
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+xL
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+bd
+aZ
+be
+aZ
+be
+SJ
+SJ
+ba
+ba
+"}
+(94,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aN
+aU
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aX
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bl
+aX
+xL
+bA
+be
+aX
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+SJ
+SJ
+ba
+ba
+"}
+(95,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+SJ
+SJ
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+bB
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(96,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aN
+aN
+aN
+aN
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+SJ
+SJ
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bm
+bq
+bv
+bk
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+xL
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(97,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aN
+aN
+aN
+aN
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+SJ
+SJ
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+be
+bj
+bj
+br
+bw
+bC
+be
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+xL
+aX
+aJ
+aL
+aL
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+be
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(98,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aN
+aN
+aN
+aN
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+SJ
+SJ
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+be
+be
+be
+be
+be
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+xL
+aX
+aX
+xL
+aX
+bJ
+aL
+aL
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(99,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+RY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+xL
+xL
+xL
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aJ
+bK
+aL
+aL
+bL
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(100,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+xL
+aX
+aX
+aJ
+bK
+aL
+aL
+bL
+aJ
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(101,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aX
+aX
+xL
+xL
+aX
+aX
+aJ
+bK
+aL
+aL
+bL
+aJ
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+bd
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(102,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+xL
+aX
+aX
+aX
+aJ
+bK
+aL
+aL
+bL
+aJ
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(103,1,1) = {"
+ba
+ba
+ZE
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+VJ
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+aJ
+bF
+aJ
+aJ
+aX
+aX
+aJ
+aJ
+bH
+aJ
+aJ
+aX
+aJ
+bK
+aL
+aL
+bM
+aJ
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(104,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aN
+aN
+aX
+aN
+aN
+aX
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aN
+aN
+aN
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+tj
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aJ
+bK
+aL
+aL
+bM
+aJ
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(105,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aX
+aJ
+aL
+aL
+aL
+aJ
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(106,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+bT
+aN
+aN
+aN
+aF
+aF
+xL
+xL
+aX
+aX
+aX
+aX
+aX
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+bD
+aL
+aL
+aJ
+aX
+aX
+aJ
+bD
+aL
+aL
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(107,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aF
+aF
+aF
+aF
+aF
+aF
+aF
+aF
+xL
+xL
+aX
+aX
+aX
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+tj
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aJ
+aJ
+aJ
+aJ
+aJ
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(108,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aN
+aN
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aN
+aN
+aN
+aF
+aF
+aF
+aF
+bT
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(109,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aN
+aN
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aF
+aF
+aF
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aN
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(110,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aN
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(111,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(112,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(113,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bN
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(114,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+VJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xM
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(115,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+tj
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+bd
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(116,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(117,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+"}
+(118,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(119,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+GL
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(120,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aY
+aY
+bx
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+VJ
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(121,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+aY
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(122,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+"}
+(123,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+xM
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(124,1,1) = {"
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aY
+bx
+bx
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(125,1,1) = {"
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+aY
+bx
+bx
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(126,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+bx
+bx
+aO
+aO
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+Cq
+aX
+aX
+aX
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(127,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aN
+aN
+aN
+aO
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(128,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+Iq
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(129,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+bd
+bx
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aO
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aX
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(130,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aY
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aU
+aU
+aU
+aO
+aO
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aY
+aY
+aX
+aY
+aY
+aX
+aY
+aY
+aY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aY
+aX
+aY
+aY
+aX
+aY
+aY
+aX
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(131,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+bx
+bx
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aU
+aU
+aU
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(132,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aU
+aU
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+bd
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+SJ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(133,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+Iq
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+SJ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(134,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+SJ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(135,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+Iq
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+Iq
+aZ
+aZ
+ba
+aZ
+aZ
+aZ
+ba
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+SJ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(136,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+aZ
+aZ
+ba
+ba
+ba
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+ba
+SJ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(137,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+vW
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+aZ
+aZ
+aZ
+aZ
+aZ
+ba
+SJ
+aZ
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(138,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(139,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+vW
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+vW
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
+(140,1,1) = {"
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+vW
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+ba
+"}
diff --git a/maps/redgate/darkadventure.dmm b/maps/redgate/darkadventure.dmm
new file mode 100644
index 0000000000..e8abd19490
--- /dev/null
+++ b/maps/redgate/darkadventure.dmm
@@ -0,0 +1,20314 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"af" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"ax" = (
+/turf/simulated/floor/outdoors/ironsand{
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"bl" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass,
+/area/redgate/wilds)
+"ce" = (
+/obj/structure/table/standard,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"ch" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor,
+/area/redgate/wilds)
+"cM" = (
+/obj/structure/bed/chair/sofa/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"ev" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/wilds)
+"eG" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/wilds)
+"gj" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"gJ" = (
+/turf/simulated/floor/wood/sif,
+/area/redgate/wilds)
+"gK" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/wilds)
+"gQ" = (
+/obj/effect/fake_sun,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"hm" = (
+/obj/structure/table/steel,
+/obj/random/maintenance,
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"ho" = (
+/obj/random/awayloot/nofail,
+/turf/simulated/floor/wood/sif,
+/area/redgate/wilds)
+"hJ" = (
+/turf/simulated/mineral/cave,
+/area/redgate/wilds)
+"hS" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"iy" = (
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/wilds)
+"iB" = (
+/obj/structure/prop/rock/crystal_dust,
+/turf/simulated/floor/outdoors/ironsand{
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"jO" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"kx" = (
+/turf/unsimulated/wall/dark,
+/area/redgate/wilds)
+"kE" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/reinforced,
+/area/redgate/structure)
+"lg" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/wood/sif,
+/area/redgate/wilds)
+"lJ" = (
+/obj/structure/lattice,
+/obj/random/contraband/nofail,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"mh" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor,
+/area/redgate/wilds)
+"mv" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"mU" = (
+/obj/structure/bed/chair/sofa/right{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"nc" = (
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"oB" = (
+/turf/simulated/floor/outdoors/sidewalk,
+/area/redgate/wilds)
+"oR" = (
+/obj/structure/table/woodentable,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"pt" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass,
+/area/redgate/wilds)
+"pI" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"ro" = (
+/obj/structure/redgate/away,
+/turf/simulated/floor/redgrid/off{
+ alpha = 60
+ },
+/area/redgate/wilds)
+"rE" = (
+/obj/item/weapon/paper,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"si" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/ironsand{
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"sl" = (
+/turf/simulated/floor/outdoors/rocks,
+/area/redgate/wilds)
+"tL" = (
+/turf/simulated/floor,
+/area/redgate/wilds)
+"tV" = (
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"uO" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"vk" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"vm" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"wy" = (
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/grass,
+/area/redgate/wilds)
+"xg" = (
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"xq" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"xw" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"yA" = (
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/wilds)
+"yD" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"yH" = (
+/obj/structure/bed/chair/sofa/corner{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"yQ" = (
+/turf/simulated/floor/outdoors/grass,
+/area/redgate/wilds)
+"zv" = (
+/turf/simulated/floor/outdoors/sidewalk/side,
+/area/redgate/wilds)
+"zF" = (
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/wilds)
+"Ag" = (
+/turf/simulated/floor/bmarble,
+/area/redgate/wilds)
+"AU" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/purpledouble,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"BD" = (
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"BP" = (
+/obj/structure/simple_door/wood,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"BU" = (
+/obj/structure/flora/tree/bigtree,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/wilds)
+"Cg" = (
+/obj/item/weapon/paper,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Cj" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Cx" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/redgate/wilds)
+"CH" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"CJ" = (
+/turf/simulated/wall/ironphoron,
+/area/redgate/wilds)
+"Ei" = (
+/obj/structure/lattice,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"Fq" = (
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"Ft" = (
+/obj/structure/table/standard,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Fu" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"FC" = (
+/obj/structure/bed/chair/sofa{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"FI" = (
+/obj/structure/bed/chair/sofa,
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"FZ" = (
+/obj/random/awayloot/nofail,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"GS" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/bmarble,
+/area/redgate/wilds)
+"IL" = (
+/obj/random/maintenance,
+/turf/simulated/floor/wood/sif,
+/area/redgate/wilds)
+"IW" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/outdoors/dirt,
+/area/redgate/wilds)
+"Jp" = (
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Lx" = (
+/obj/structure/table/woodentable,
+/obj/random/awayloot/nofail,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Md" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Mv" = (
+/obj/structure/flora/tree/bigtree,
+/turf/simulated/floor/outdoors/grass,
+/area/redgate/wilds)
+"MG" = (
+/turf/simulated/floor/outdoors/sidewalk/slab,
+/area/redgate/wilds)
+"MJ" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/redgate/wilds)
+"Nu" = (
+/turf/simulated/wall/wood,
+/area/redgate/wilds)
+"OE" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"Pj" = (
+/obj/random/maintenance,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"PM" = (
+/turf/simulated/floor/outdoors/snow,
+/area/redgate/wilds)
+"QB" = (
+/obj/structure/prop/rock/crystal,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"QG" = (
+/turf/simulated/wall/dungeon,
+/area/redgate/wilds)
+"QR" = (
+/obj/structure/prop/rock/crystal,
+/turf/simulated/floor/outdoors/ironsand{
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"Rd" = (
+/obj/item/weapon/broken_bottle,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+"Rl" = (
+/obj/random/contraband/nofail,
+/turf/simulated/floor/wood/sif,
+/area/redgate/wilds)
+"Sk" = (
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"St" = (
+/obj/structure/flora/tree/bigtree,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"Tn" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/wilds)
+"Uy" = (
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"UP" = (
+/obj/structure/bed/chair/sofa/left,
+/turf/simulated/floor/carpet,
+/area/redgate/wilds)
+"VI" = (
+/obj/structure/table/steel,
+/obj/random/maintenance,
+/turf/simulated/floor/bmarble,
+/area/redgate/wilds)
+"Wa" = (
+/obj/structure/prop/rock/small,
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"Wh" = (
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/wilds)
+"WW" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"Xh" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/dirt,
+/area/redgate/wilds)
+"Xj" = (
+/turf/simulated/floor/redgrid/off{
+ alpha = 60
+ },
+/area/redgate/wilds)
+"Ye" = (
+/turf/simulated/floor/outdoors/ice,
+/area/redgate/wilds)
+"Yi" = (
+/obj/random/awayloot/nofail,
+/turf/simulated/floor/bmarble,
+/area/redgate/wilds)
+"YB" = (
+/obj/structure/lattice,
+/obj/random/awayloot/nofail,
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"YU" = (
+/turf/simulated/wall/dungeon,
+/area/redgate/structure)
+"Zo" = (
+/obj/structure/simple_door/iron,
+/turf/simulated/floor/dungeon,
+/area/redgate/structure)
+"ZA" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/wilds)
+"ZE" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/ironsand,
+/area/redgate/wilds)
+"ZN" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/dark,
+/area/redgate/structure)
+
+(1,1,1) = {"
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+"}
+(2,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+gQ
+kx
+"}
+(3,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(4,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(5,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(6,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(7,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(8,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(9,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(10,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(11,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Uy
+Uy
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(12,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(13,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Ye
+Ye
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(14,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(15,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(16,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+CJ
+CJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Mv
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(17,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+tL
+Uy
+yA
+Uy
+Ei
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+BU
+zF
+zF
+zF
+zF
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(18,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+gJ
+Uy
+tL
+Ei
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+Tn
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(19,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+tL
+ch
+tL
+tL
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Mv
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(20,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Ei
+Uy
+Uy
+lJ
+Ei
+gJ
+tL
+Uy
+CJ
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Mv
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+zF
+pt
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(21,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Pj
+Ei
+Uy
+Uy
+tL
+gJ
+tL
+Uy
+CJ
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+yQ
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Tn
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(22,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Uy
+yA
+tL
+Uy
+gJ
+Uy
+PM
+PM
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+zv
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(23,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+CJ
+tL
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+PM
+Uy
+PM
+PM
+Ye
+PM
+PM
+PM
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zv
+yQ
+Mv
+zF
+zF
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(24,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+PM
+Ye
+Ye
+PM
+PM
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Ei
+Uy
+ch
+tL
+CJ
+CJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+zF
+zF
+zF
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zv
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(25,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+tL
+tL
+tL
+gJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+BU
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+zF
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+zv
+zF
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+BU
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(26,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+CJ
+Uy
+Uy
+tL
+gJ
+gJ
+Uy
+CJ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+zF
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+zv
+zF
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(27,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+PM
+PM
+PM
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+CJ
+tL
+Uy
+Uy
+gJ
+Uy
+Uy
+CJ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+BU
+zF
+yQ
+zF
+zF
+zF
+yQ
+zF
+yQ
+zF
+zF
+zv
+zF
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(28,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+PM
+Ye
+Ye
+Ye
+PM
+PM
+PM
+Ye
+Ye
+Ye
+PM
+Uy
+Uy
+Ye
+Ye
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+CJ
+tL
+gJ
+Uy
+ho
+Uy
+tL
+tL
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+zF
+zF
+zF
+zF
+zv
+yQ
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(29,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+PM
+PM
+PM
+Ye
+Ye
+Ye
+PM
+PM
+PM
+PM
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+tL
+gJ
+Uy
+Ei
+lg
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+eG
+zv
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zF
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(30,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+Uy
+PM
+Uy
+Uy
+CJ
+Uy
+gJ
+gJ
+tL
+Uy
+tL
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+zF
+yQ
+pt
+zF
+zF
+zF
+zF
+zF
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+zF
+yQ
+zv
+zF
+yQ
+Nu
+Nu
+Nu
+Nu
+Uy
+Uy
+Uy
+Uy
+Nu
+Nu
+Nu
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(31,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+tL
+tL
+Uy
+Uy
+Uy
+tL
+tL
+CJ
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+Nu
+yH
+FC
+mU
+xg
+hm
+Nu
+yQ
+zF
+zv
+zF
+zF
+Nu
+xg
+xg
+xg
+tL
+Uy
+Uy
+Uy
+tL
+xg
+Nu
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(32,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+PM
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+CJ
+tL
+Ei
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+zF
+Nu
+FI
+VI
+VI
+xg
+xg
+Nu
+zF
+zF
+zv
+zF
+yQ
+Nu
+tL
+xg
+tL
+tL
+Uy
+YB
+Uy
+tL
+tL
+Nu
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(33,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+PM
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+tL
+tL
+CJ
+CJ
+tL
+Ei
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Mv
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+zF
+zF
+Nu
+UP
+VI
+GS
+xg
+xg
+Nu
+Nu
+Nu
+mh
+Nu
+Nu
+Nu
+tL
+xg
+xg
+tL
+Uy
+Uy
+Uy
+Uy
+tL
+Nu
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(34,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+zF
+yQ
+Mv
+yQ
+yQ
+zF
+zF
+zF
+Nu
+xg
+xg
+xg
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+tL
+xg
+tL
+Uy
+Ei
+Uy
+tL
+Nu
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(35,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Uy
+Ye
+Ye
+Ye
+Uy
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+zF
+yQ
+zF
+zF
+Nu
+hm
+xg
+xg
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+BD
+xg
+tL
+tL
+Uy
+Uy
+Uy
+tL
+Nu
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(36,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+Nu
+Nu
+Nu
+Nu
+BD
+BD
+zF
+zF
+zF
+yQ
+yQ
+zF
+yQ
+BD
+BD
+Nu
+Nu
+Nu
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(37,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+Nu
+BD
+BD
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+BD
+BD
+Nu
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(38,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+CJ
+CJ
+CJ
+tL
+Ei
+tL
+Uy
+CJ
+CJ
+CJ
+Ye
+Ye
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Uy
+Uy
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+yQ
+Nu
+BD
+BD
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+tL
+BD
+Nu
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Mv
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(39,1,1) = {"
+kx
+Uy
+Uy
+Uy
+PM
+CJ
+IL
+gJ
+tL
+Uy
+Uy
+Uy
+tL
+Rl
+CJ
+Ye
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Uy
+Ye
+Ye
+Ye
+Uy
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+zF
+yQ
+zF
+yQ
+zF
+zF
+Nu
+BD
+BD
+yQ
+zF
+zF
+Mv
+yQ
+yQ
+yQ
+BD
+tL
+Nu
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(40,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+CJ
+gJ
+tL
+Uy
+Uy
+Uy
+tL
+gJ
+lg
+CJ
+Ye
+Ye
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+Nu
+BD
+BD
+yQ
+yQ
+zF
+yQ
+zF
+yQ
+yQ
+tL
+tL
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(41,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+CJ
+tL
+Uy
+Uy
+ch
+Uy
+tL
+gJ
+gJ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+Nu
+BD
+BD
+yQ
+zF
+yQ
+zF
+yQ
+yQ
+yQ
+tL
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(42,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+tL
+tL
+Uy
+Uy
+Uy
+Ei
+tL
+IL
+gJ
+CJ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+PM
+PM
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+zF
+Nu
+Nu
+Nu
+Nu
+BD
+BD
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Ei
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(43,1,1) = {"
+kx
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+tL
+Uy
+Uy
+tL
+gJ
+gJ
+gJ
+CJ
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+PM
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+yQ
+zF
+Nu
+xg
+xg
+xg
+BD
+BD
+BD
+BD
+tL
+BD
+tL
+Uy
+Uy
+Uy
+Uy
+Ei
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+kx
+"}
+(44,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+CJ
+tL
+CJ
+Uy
+CJ
+CJ
+CJ
+CJ
+CJ
+PM
+PM
+Ye
+Ye
+PM
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+Ye
+PM
+Uy
+PM
+PM
+Uy
+PM
+PM
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+BU
+yQ
+zF
+Nu
+xg
+xg
+xg
+BD
+BD
+tL
+BD
+tL
+tL
+BD
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Nu
+BD
+BD
+BD
+BD
+BD
+Nu
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(45,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+Ye
+Ye
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+yQ
+yQ
+Nu
+xg
+Ag
+Yi
+xg
+xg
+Nu
+Nu
+Nu
+BP
+Uy
+Ei
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Nu
+BD
+BD
+BD
+BD
+BD
+Nu
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(46,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Ye
+Ye
+PM
+PM
+PM
+Uy
+PM
+Ye
+Ye
+Ye
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+Nu
+xg
+Ag
+Ag
+xg
+xg
+Nu
+yQ
+yQ
+zv
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+Nu
+BD
+BD
+BD
+BD
+BD
+Nu
+yQ
+yQ
+yQ
+yQ
+wy
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(47,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+PM
+Ye
+Ye
+PM
+PM
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+Mv
+yQ
+zF
+zF
+Nu
+xg
+xg
+xg
+xg
+xg
+Nu
+yQ
+yQ
+zv
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+Nu
+BD
+BD
+BD
+BD
+BD
+Nu
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(48,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+PM
+Uy
+Uy
+PM
+PM
+PM
+Ye
+PM
+PM
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+Nu
+yQ
+yQ
+zv
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Nu
+Nu
+Nu
+Cx
+Nu
+Nu
+Nu
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(49,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Ye
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Uy
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+zv
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+WW
+WW
+WW
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(50,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+yQ
+yQ
+yQ
+bl
+yQ
+yQ
+Uy
+Uy
+zv
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+WW
+zF
+zF
+zF
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(51,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+zv
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+BU
+zF
+zF
+eG
+WW
+WW
+zF
+zF
+WW
+WW
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(52,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+zv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+WW
+WW
+WW
+Fq
+mv
+zF
+zF
+zF
+zF
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(53,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+MG
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+oB
+WW
+WW
+OE
+WW
+mv
+WW
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(54,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+St
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+zF
+zF
+WW
+WW
+WW
+WW
+mv
+WW
+zF
+zF
+BU
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(55,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+zF
+zF
+zF
+WW
+mv
+mv
+mv
+mv
+mv
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+bl
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(56,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+WW
+WW
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(57,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+zF
+zF
+BU
+zF
+yQ
+zF
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(58,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(59,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+yQ
+zF
+zF
+zF
+Tn
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(60,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+PM
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(61,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+PM
+PM
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+zF
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(62,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+yQ
+yQ
+yQ
+Mv
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(63,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+WW
+WW
+MJ
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+zF
+zF
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(64,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+zF
+Mv
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(65,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(66,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+kx
+kx
+Xj
+Xj
+kx
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(67,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(68,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+"}
+(69,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+ro
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+kx
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+kx
+"}
+(70,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+"}
+(71,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Ye
+Ye
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+uO
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+kx
+"}
+(72,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+WW
+Wh
+WW
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+kx
+Xj
+kx
+"}
+(73,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+"}
+(74,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+Sk
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Xj
+kx
+"}
+(75,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+kx
+"}
+(76,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+ZA
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+uO
+WW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+"}
+(77,1,1) = {"
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+IW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+kx
+kx
+kx
+Xj
+kx
+"}
+(78,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+"}
+(79,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+kx
+kx
+kx
+"}
+(80,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Wh
+ev
+WW
+WW
+WW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+"}
+(81,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+kx
+"}
+(82,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+"}
+(83,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+WW
+WW
+Wh
+Wh
+Sk
+Wh
+Wh
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+kx
+Xj
+kx
+kx
+Xj
+kx
+"}
+(84,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+MJ
+IW
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+YU
+YU
+YU
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+kx
+"}
+(85,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Xh
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+YU
+kE
+kE
+kE
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+Xj
+kx
+Xj
+kx
+"}
+(86,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+YU
+YU
+Rd
+tV
+tV
+YU
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+ax
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+"}
+(87,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+MJ
+Xh
+MJ
+MJ
+IW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+YU
+oR
+tV
+tV
+Jp
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+Xj
+kx
+kx
+kx
+"}
+(88,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+uO
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+YU
+Fu
+tV
+tV
+tV
+cM
+YU
+hJ
+hJ
+ax
+ax
+ax
+ax
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+"}
+(89,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+YU
+oR
+Jp
+tV
+tV
+tV
+YU
+iB
+ax
+ax
+ax
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+kx
+Xj
+kx
+"}
+(90,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+YU
+YU
+YU
+Zo
+YU
+YU
+YU
+ax
+ax
+ax
+ax
+gj
+nc
+nc
+nc
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+kx
+Xj
+Xj
+kx
+"}
+(91,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+WW
+WW
+WW
+uO
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+YU
+YU
+YU
+YU
+YU
+YU
+hJ
+hJ
+hJ
+QR
+iB
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+"}
+(92,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+xw
+Lx
+oR
+CH
+Md
+YU
+ax
+hJ
+iB
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+kx
+kx
+"}
+(93,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+tV
+xq
+tV
+rE
+ZN
+YU
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+si
+ax
+ax
+ax
+ax
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Uy
+kx
+"}
+(94,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+YU
+rE
+tV
+tV
+tV
+tV
+YU
+ax
+si
+ax
+ax
+ax
+iy
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(95,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+YU
+oR
+tV
+Cg
+tV
+rE
+YU
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+YU
+YU
+YU
+Zo
+YU
+YU
+YU
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+pI
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(96,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+oR
+tV
+oR
+tV
+tV
+Zo
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+YU
+Cj
+tV
+tV
+tV
+tV
+YU
+vk
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(97,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+Xh
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+iy
+YU
+YU
+YU
+YU
+YU
+Zo
+YU
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+iB
+YU
+Ft
+tV
+tV
+Ft
+Cj
+YU
+nc
+nc
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(98,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+iy
+iy
+iy
+ax
+ax
+ax
+ax
+ax
+YU
+YU
+YU
+YU
+YU
+YU
+YU
+hJ
+YU
+ce
+Ft
+tV
+tV
+tV
+YU
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(99,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+IW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+iy
+YU
+YU
+YU
+YU
+YU
+YU
+ax
+ax
+ax
+ax
+ax
+YU
+AU
+tV
+hS
+tV
+AU
+YU
+hJ
+YU
+YU
+YU
+YU
+YU
+YU
+YU
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(100,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Xh
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+tV
+tV
+tV
+ZN
+YU
+ax
+ax
+si
+ax
+ax
+Zo
+tV
+tV
+tV
+tV
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(101,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+tV
+oR
+tV
+tV
+YU
+ax
+ax
+ax
+ax
+ax
+YU
+tV
+tV
+tV
+tV
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(102,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+vm
+Fu
+jO
+tV
+Zo
+ax
+ax
+ax
+ax
+ax
+YU
+ZN
+tV
+tV
+tV
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+af
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+kx
+"}
+(103,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+tV
+Fu
+tV
+tV
+YU
+ax
+ax
+ax
+ax
+ax
+YU
+YU
+YU
+Lx
+tV
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(104,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+tV
+tV
+tV
+ZN
+YU
+ax
+ax
+ax
+ax
+iB
+hJ
+hJ
+YU
+oR
+xq
+tV
+YU
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+nc
+Uy
+Uy
+kx
+"}
+(105,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+YU
+YU
+YU
+YU
+YU
+YU
+ax
+ax
+ax
+ax
+hJ
+hJ
+hJ
+YU
+Fu
+oR
+tV
+YU
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+kx
+"}
+(106,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+hJ
+QB
+ax
+ax
+ax
+ax
+QG
+QG
+hJ
+hJ
+YU
+YU
+YU
+YU
+YU
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(107,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+nc
+ax
+ax
+ax
+ax
+gK
+QG
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+yD
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(108,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+FZ
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+hJ
+ax
+ax
+ax
+ax
+ax
+gK
+QG
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(109,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+IW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+yD
+nc
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+ax
+nc
+ax
+ax
+ax
+ax
+gK
+QG
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+vk
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(110,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+Uy
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+hJ
+hJ
+hJ
+nc
+nc
+nc
+nc
+ax
+hJ
+QG
+QG
+hJ
+hJ
+hJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(111,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+Wh
+Wh
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+ax
+hJ
+ax
+ax
+nc
+nc
+ax
+hJ
+hJ
+hJ
+ax
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(112,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+uO
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+af
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+ax
+ax
+nc
+nc
+nc
+nc
+nc
+ax
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+gj
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(113,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(114,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Sk
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(115,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+sl
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(116,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+IW
+MJ
+WW
+WW
+WW
+WW
+WW
+Wh
+Sk
+Sk
+Wh
+WW
+WW
+WW
+WW
+MJ
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(117,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+Wh
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+MJ
+MJ
+MJ
+Uy
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+ZE
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(118,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Xh
+MJ
+WW
+WW
+WW
+Wh
+Sk
+Wh
+Wh
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(119,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+Wh
+Sk
+Sk
+Wh
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+ZE
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(120,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Sk
+Sk
+Wh
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+gj
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(121,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Sk
+Sk
+Wh
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+sl
+nc
+nc
+nc
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+sl
+sl
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(122,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+Wh
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+af
+nc
+nc
+sl
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+Uy
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(123,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+Sk
+Sk
+Wh
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(124,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+uO
+WW
+WW
+Wh
+Wh
+Wh
+Wh
+WW
+WW
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+sl
+sl
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(125,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+Wh
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+IW
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+Uy
+nc
+sl
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(126,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+WW
+WW
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+WW
+WW
+WW
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+sl
+nc
+nc
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(127,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+WW
+WW
+WW
+MJ
+MJ
+MJ
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+WW
+WW
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+sl
+nc
+sl
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+sl
+nc
+nc
+nc
+sl
+nc
+nc
+Wa
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(128,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Uy
+Uy
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+nc
+pI
+nc
+sl
+sl
+sl
+sl
+ZE
+nc
+sl
+sl
+sl
+sl
+sl
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(129,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+WW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+af
+nc
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+nc
+sl
+nc
+nc
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+af
+nc
+nc
+nc
+Uy
+Uy
+Uy
+kx
+"}
+(130,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+nc
+nc
+nc
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(131,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+Xj
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+sl
+nc
+nc
+sl
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+ZE
+nc
+Uy
+nc
+Uy
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(132,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+IW
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+sl
+sl
+sl
+nc
+nc
+nc
+af
+nc
+nc
+nc
+nc
+Uy
+Uy
+nc
+nc
+Uy
+nc
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(133,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(134,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+MJ
+MJ
+MJ
+MJ
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+yD
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+nc
+Uy
+nc
+nc
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(135,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+nc
+Uy
+nc
+nc
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(136,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+nc
+nc
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(137,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+nc
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(138,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+kx
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(139,1,1) = {"
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+kx
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+Xj
+kx
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+Uy
+kx
+"}
+(140,1,1) = {"
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+kx
+"}
diff --git a/maps/redgate/innland.dmm b/maps/redgate/innland.dmm
new file mode 100644
index 0000000000..c9a377fb74
--- /dev/null
+++ b/maps/redgate/innland.dmm
@@ -0,0 +1,20854 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ae" = (
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"af" = (
+/turf/simulated/wall/wood,
+/area/redgate/structure/powered)
+"aj" = (
+/obj/structure/table/woodentable,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"am" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"ap" = (
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"ar" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"at" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"au" = (
+/obj/effect/fake_sun,
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/wilds)
+"aG" = (
+/obj/structure/flora/pottedplant/fern,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"aK" = (
+/obj/structure/flora/pottedplant/minitree,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"aL" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/wilds)
+"aM" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/redgate/structure/powered)
+"aN" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"aQ" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"bh" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/structure/powered)
+"br" = (
+/obj/structure/redgate/away,
+/turf/simulated/floor/reinforced,
+/area/redgate/wilds)
+"bs" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered)
+"bt" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"bu" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered)
+"by" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"bE" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"bF" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/structure/powered)
+"bG" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/structure/powered)
+"bO" = (
+/turf/simulated/mineral/floor/ignore_cavegen/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt"
+ },
+/area/redgate/structure/powered)
+"bT" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"cd" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"ch" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"cq" = (
+/turf/simulated/mineral/floor/ignore_cavegen/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt"
+ },
+/area/redgate/wilds)
+"cs" = (
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"ct" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"cw" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"cy" = (
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"cA" = (
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"cD" = (
+/turf/simulated/wall/wood,
+/area/redgate/wilds)
+"cH" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark,
+/area/redgate/wilds)
+"cL" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/mineral/floor/ignore_cavegen/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt"
+ },
+/area/redgate/structure/powered)
+"cQ" = (
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/wilds)
+"cR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"cU" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"cV" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"cW" = (
+/obj/structure/flora/pottedplant/fern,
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"cX" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"cZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"da" = (
+/obj/structure/table/woodentable,
+/obj/random/contraband,
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"db" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/mob/living/simple_mob/animal/goat,
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"dc" = (
+/obj/structure/bed/psych{
+ desc = "For prime comfort when slacking off from management. Also good for goats. Somehow.";
+ name = "The Comfiest Couch in the World"
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"dd" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/wilds)
+"de" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+"df" = (
+/obj/machinery/door/airlock{
+ name = "Management"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dg" = (
+/obj/structure/sink/kitchen{
+ name = "sink";
+ pixel_y = 28
+ },
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dh" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"di" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dj" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"dl" = (
+/turf/simulated/wall,
+/area/redgate/structure/powered)
+"dm" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dn" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"do" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dp" = (
+/obj/structure/table/steel,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dt" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/wilds)
+"du" = (
+/obj/machinery/door/airlock{
+ name = "Custodial Closet"
+ },
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/laundry_basket,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"dA" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dB" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered)
+"dC" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dD" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dE" = (
+/obj/structure/table/marble,
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"dF" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dJ" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dK" = (
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dL" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes/neaeracubes,
+/obj/item/weapon/storage/box/monkeycubes/sarucubes,
+/obj/item/weapon/storage/box/monkeycubes/sobakacubes,
+/obj/item/weapon/storage/box/monkeycubes/sparracubes,
+/obj/item/weapon/storage/box/monkeycubes/stokcubes,
+/obj/item/weapon/storage/box/monkeycubes/wolpincubes,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dM" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered)
+"dQ" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/wilds)
+"dR" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"dS" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = null
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dT" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dU" = (
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen cold room";
+ req_access = null
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"dV" = (
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ea" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"eb" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ dir = 4;
+ name = "sink";
+ pixel_x = -16
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ec" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ed" = (
+/obj/machinery/gibber,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ee" = (
+/obj/machinery/biogenerator,
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"ef" = (
+/obj/machinery/seed_storage/garden,
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"eh" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"ei" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ej" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ek" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/weapon/material/knife,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"el" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"en" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -30
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"eo" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"ep" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"eq" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"er" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/dinnerware,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"et" = (
+/obj/structure/sink/kitchen{
+ name = "sink";
+ pixel_y = 28
+ },
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"eu" = (
+/obj/machinery/vending/hydronutrients,
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"ev" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"ew" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"ex" = (
+/obj/structure/table/marble,
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"ey" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/book/manual/chef_recipes,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"ez" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = null
+ },
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"eE" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"eF" = (
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"eH" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/material/kitchen/rollingpin,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"eI" = (
+/obj/machinery/smartfridge,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"eN" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"eO" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/glass/rag,
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"eP" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"eQ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Garden";
+ req_access = list(28)
+ },
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered)
+"eR" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/unsimulated/floor/steel{
+ icon = 'icons/turf/floors_vr.dmi';
+ icon_state = "wood"
+ },
+/area/redgate/structure/powered)
+"eS" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"eT" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/lino,
+/area/redgate/structure/powered)
+"eU" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"eV" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/closet/chefcloset,
+/obj/item/glass_jar,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/tiled/white,
+/area/redgate/structure/powered)
+"eW" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"eZ" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"fe" = (
+/obj/machinery/door/airlock{
+ name = "Tavern"
+ },
+/turf/unsimulated/floor/steel,
+/area/redgate/structure/powered)
+"ff" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"fh" = (
+/mob/living/simple_mob/animal/passive/cow,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"fi" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"fj" = (
+/mob/living/simple_mob/animal/passive/chicken,
+/turf/simulated/mineral/floor/ignore_cavegen/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt"
+ },
+/area/redgate/wilds)
+"fk" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"fl" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/grass/seasonal,
+/area/redgate/wilds)
+"fm" = (
+/turf/simulated/wall,
+/area/redgate/wilds)
+"fn" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"fo" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"ge" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"kw" = (
+/turf/unsimulated/wall/planetary/normal/virgo4{
+ name = "the end"
+ },
+/area/redgate/wilds)
+"la" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/redgate/structure/powered)
+"lb" = (
+/turf/simulated/mineral/ignore_cavegen/cave,
+/area/redgate/wilds)
+"ld" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ base_desc = "Thick, green grass... who knows what's hiding in it!"
+ },
+/area/redgate/wilds)
+"le" = (
+/obj/effect/landmark/event_scatter,
+/turf/simulated/mineral/floor/ignore_cavegen/cave{
+ desc = "It's finely packed dirt. It is soft, and comfortable to walk on.";
+ name = "dirt"
+ },
+/area/redgate/wilds)
+"lo" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/redgate/structure/powered)
+"mB" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/floor/reinforced,
+/area/redgate/structure/powered)
+"ub" = (
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"ve" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/structure/powered)
+"xW" = (
+/turf/simulated/floor/outdoors/grass/seasonal{
+ base_desc = "Soft, plush green grass. It feels nice under your feet~"
+ },
+/area/redgate/structure/powered)
+"Ha" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered)
+
+(1,1,1) = {"
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+"}
+(2,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+au
+kw
+"}
+(3,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(4,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(5,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(6,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(7,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(8,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(9,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(10,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(11,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+dt
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(12,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+lb
+cQ
+ct
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ge
+ge
+cQ
+dt
+cQ
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(13,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+cQ
+cQ
+cH
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(14,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+dQ
+ct
+ct
+ct
+ct
+ct
+ct
+cQ
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+ge
+cQ
+cQ
+ge
+ge
+ge
+cQ
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(15,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+dQ
+ct
+ct
+ct
+dQ
+ct
+ct
+ct
+ct
+ge
+ge
+ge
+ge
+cQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+cQ
+cQ
+ge
+ge
+cQ
+cQ
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(16,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+dl
+cR
+cR
+cR
+dl
+cR
+cR
+cR
+dl
+dd
+ge
+ge
+ge
+cQ
+cQ
+cQ
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fo
+ct
+fo
+lb
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(17,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+ct
+ct
+ct
+cQ
+ge
+ge
+cQ
+cQ
+cQ
+cR
+dR
+ea
+aK
+en
+aK
+eE
+eN
+cR
+dd
+ge
+ge
+ge
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+fo
+fo
+ct
+fo
+ch
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(18,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+cQ
+ge
+ge
+cQ
+dt
+af
+af
+bt
+dC
+ap
+ap
+ap
+dC
+by
+af
+af
+xW
+ge
+ge
+cQ
+cQ
+dQ
+ct
+ct
+ct
+ct
+lb
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+ct
+fo
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(19,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+ct
+ct
+ct
+cQ
+ge
+ge
+cQ
+cQ
+af
+dA
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+fe
+ve
+ge
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+cs
+fo
+ch
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(20,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+cQ
+ge
+ge
+cQ
+cQ
+af
+aj
+ap
+ap
+dA
+dA
+ap
+dA
+dA
+ap
+af
+bE
+cQ
+cQ
+ge
+cs
+cQ
+ct
+ct
+ct
+cs
+ct
+ct
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(21,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+dQ
+ct
+cH
+ct
+dQ
+cH
+cQ
+dd
+ge
+dd
+cQ
+cQ
+af
+dC
+ap
+ap
+eh
+aj
+ap
+aj
+eh
+eR
+af
+dd
+cQ
+ge
+cQ
+fl
+cQ
+cQ
+cs
+cs
+ge
+ge
+cs
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ch
+ct
+cs
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(22,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+dQ
+ct
+ct
+ct
+dd
+ge
+ge
+dd
+dl
+dl
+dl
+bh
+ap
+ap
+dC
+dC
+ap
+dC
+dC
+ap
+af
+cQ
+cQ
+dt
+cQ
+cQ
+ge
+cQ
+ge
+ge
+ge
+ge
+ge
+ge
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+ct
+ct
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(23,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cH
+cH
+dd
+dd
+cD
+ge
+ge
+dd
+dl
+mB
+bh
+bh
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+af
+cQ
+cQ
+ge
+cQ
+cs
+cQ
+cQ
+cs
+cs
+ct
+ct
+ct
+ge
+ge
+cs
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aN
+ct
+ge
+ge
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(24,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+dt
+dt
+dt
+ge
+ge
+ge
+ge
+ge
+dd
+dl
+dl
+dl
+bh
+ap
+ap
+ap
+eo
+ev
+ev
+ev
+ev
+af
+cQ
+cQ
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+ct
+ct
+lb
+ct
+ct
+ge
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+ge
+ge
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(25,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cD
+cQ
+ge
+ge
+ge
+ge
+ge
+ge
+dd
+af
+af
+af
+af
+dD
+ap
+ap
+ap
+ep
+ew
+ex
+eO
+ew
+af
+cQ
+cQ
+cQ
+dt
+cQ
+cQ
+cQ
+ct
+ct
+ct
+lb
+lb
+ct
+cs
+ge
+ge
+ge
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ge
+ge
+aN
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(26,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+dQ
+cQ
+ge
+ge
+cQ
+af
+af
+cR
+af
+af
+dm
+ap
+ap
+ap
+ap
+ap
+ap
+ep
+ex
+eF
+eF
+eS
+af
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+lb
+lb
+lb
+ct
+ct
+cq
+ge
+ct
+ge
+ge
+ct
+fo
+fo
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+ge
+aN
+cs
+fo
+lb
+ge
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(27,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+dQ
+cQ
+ge
+ge
+cQ
+af
+cU
+cZ
+am
+af
+dn
+ap
+ap
+ap
+ap
+ar
+aG
+ep
+ex
+dE
+eF
+eT
+af
+cQ
+dt
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+ct
+ct
+ge
+ge
+ge
+cs
+ge
+ct
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+aN
+ge
+ge
+cw
+fo
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(28,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+dQ
+cQ
+ge
+ge
+cQ
+cR
+cV
+da
+de
+af
+ap
+ap
+af
+dl
+dS
+dl
+cR
+cR
+cR
+dl
+dT
+eU
+dl
+cQ
+cQ
+ct
+cQ
+cQ
+dQ
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fn
+cs
+cs
+cs
+ct
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(29,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+dQ
+cQ
+ge
+ge
+cQ
+cR
+cW
+db
+am
+af
+dn
+ap
+af
+dT
+dT
+eb
+ei
+eq
+ey
+eb
+dT
+eV
+dl
+cQ
+cQ
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+fn
+ct
+ge
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+ct
+ct
+ge
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(30,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+dQ
+cQ
+cQ
+ge
+cQ
+cR
+am
+am
+am
+af
+ap
+ap
+af
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+eW
+dl
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+aQ
+ge
+cs
+cs
+ct
+fn
+ct
+ct
+ct
+lb
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(31,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+cD
+cQ
+cQ
+ge
+cQ
+af
+cX
+dc
+Ha
+df
+ap
+ap
+af
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dF
+dl
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aN
+ge
+ge
+fn
+fn
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(32,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+dt
+cQ
+cQ
+ge
+cQ
+af
+af
+cR
+af
+af
+aM
+aM
+af
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+lo
+dl
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aN
+ge
+ge
+ge
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(33,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+dt
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+cQ
+af
+la
+aM
+aM
+dl
+dT
+dT
+ec
+ej
+er
+dT
+eH
+eP
+eZ
+dl
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fn
+ct
+cs
+ge
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(34,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+dt
+cQ
+cQ
+ge
+ge
+cQ
+cQ
+cQ
+af
+af
+af
+du
+dl
+dl
+dU
+dl
+dl
+dl
+ez
+eI
+dl
+cR
+dl
+fi
+fi
+fi
+xW
+cQ
+ct
+ct
+ct
+ct
+cH
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+fn
+ct
+ge
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(35,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+cD
+cQ
+ge
+ge
+ge
+ge
+cQ
+cQ
+af
+dg
+do
+cy
+dl
+dJ
+dV
+dJ
+dl
+bs
+cA
+bu
+dl
+fh
+xW
+xW
+xW
+xW
+fk
+dQ
+ct
+ct
+ct
+ct
+cH
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(36,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+aN
+cQ
+ge
+ge
+ge
+ge
+ge
+cQ
+af
+dh
+cy
+cy
+dl
+dK
+dV
+dV
+dl
+dB
+cA
+dM
+cR
+xW
+xW
+xW
+xW
+xW
+fk
+cQ
+ct
+ct
+ct
+ct
+cH
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+aN
+cs
+aQ
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(37,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+aN
+cQ
+ge
+ge
+ge
+ge
+ge
+cQ
+af
+di
+dp
+dv
+dl
+dL
+dV
+ed
+dl
+dM
+cA
+dM
+dl
+xW
+xW
+xW
+xW
+xW
+fk
+cQ
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+cs
+ge
+aQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(38,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+aN
+cQ
+ge
+ge
+ge
+ge
+ge
+cQ
+af
+af
+af
+af
+dl
+dl
+dl
+dl
+dl
+et
+cA
+cA
+eQ
+xW
+xW
+fh
+xW
+xW
+fk
+cQ
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+fn
+aN
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(39,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+aN
+cQ
+cQ
+ge
+ge
+ge
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+dl
+dM
+cA
+ee
+ek
+cA
+cA
+dM
+dl
+bE
+xW
+xW
+xW
+xW
+fk
+cQ
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+fm
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+aN
+ge
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(40,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+aN
+cQ
+cQ
+ge
+ge
+ge
+ge
+ge
+cQ
+cQ
+cQ
+cQ
+cR
+dM
+cA
+cA
+cA
+cA
+cA
+dM
+cR
+fh
+xW
+xW
+xW
+xW
+fk
+cQ
+cQ
+fn
+ct
+ct
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+aN
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(41,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cQ
+cD
+cQ
+cQ
+ge
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+dl
+bs
+cA
+ef
+el
+eu
+cA
+bu
+dl
+xW
+xW
+xW
+xW
+fh
+fk
+cQ
+cQ
+cQ
+bF
+dl
+dl
+bO
+fj
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+aN
+ge
+cs
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(42,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cQ
+cQ
+cQ
+dt
+dt
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+ge
+cQ
+cQ
+dl
+dl
+cR
+dl
+dl
+dl
+cR
+dl
+dl
+ff
+ff
+ff
+ff
+ff
+xW
+dt
+cQ
+cQ
+xW
+xW
+cL
+bO
+cq
+cq
+fj
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+fn
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(43,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cQ
+cQ
+cQ
+cQ
+cQ
+ge
+dt
+dt
+cD
+dQ
+dQ
+cD
+dQ
+dQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+fo
+ct
+cQ
+ct
+ct
+ct
+bG
+dl
+dl
+bO
+cq
+le
+cq
+cq
+fm
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+ge
+cs
+aN
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(44,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+cH
+ct
+ct
+ct
+lb
+lb
+lb
+cq
+fj
+cq
+fj
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+cs
+ge
+cs
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(45,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+dt
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+ge
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(46,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+ge
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cs
+ct
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ld
+ct
+lb
+lb
+lb
+lb
+fm
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+ct
+cs
+ge
+cs
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(47,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cQ
+cQ
+ct
+ct
+ct
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ge
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(48,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+ct
+cQ
+dQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+ct
+ge
+cs
+ct
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(49,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cQ
+cQ
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+ge
+cs
+fo
+fo
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(50,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+lb
+lb
+ct
+ct
+ct
+cQ
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+ct
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cq
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(51,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cH
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+fn
+fn
+ge
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(52,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+ge
+cs
+fn
+fn
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(53,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+ge
+fn
+fn
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(54,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(55,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ge
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(56,1,1) = {"
+kw
+lb
+lb
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(57,1,1) = {"
+kw
+lb
+ae
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ge
+ge
+cs
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+ct
+cs
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(58,1,1) = {"
+kw
+ub
+ub
+ub
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(59,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+aQ
+ge
+cs
+aN
+cs
+fn
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+lb
+dj
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(60,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+fn
+cs
+cs
+aN
+aN
+fn
+fn
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(61,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+lb
+lb
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+fn
+ge
+cs
+cs
+fn
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(62,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+lb
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+cs
+ct
+cs
+ge
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+dj
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(63,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ge
+ge
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(64,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+aQ
+fn
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(65,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fn
+aQ
+ct
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+fn
+fn
+ct
+ct
+dj
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(66,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aN
+fn
+aN
+ct
+aN
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+dj
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(67,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+lb
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+ge
+ge
+ct
+aN
+aN
+cs
+cs
+aN
+cs
+cs
+cs
+ge
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+fo
+ct
+ct
+fo
+aN
+cs
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+fo
+fo
+fn
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(68,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ae
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+ge
+ge
+ge
+ge
+ct
+cs
+cs
+cs
+ge
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+aN
+cs
+ct
+ct
+cs
+ct
+cs
+cs
+ct
+cs
+cs
+aN
+fn
+fn
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(69,1,1) = {"
+kw
+lb
+ub
+ub
+ub
+ae
+ae
+ub
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+ge
+ge
+ct
+ct
+ge
+cs
+ge
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+fl
+fl
+fl
+fl
+cs
+fl
+fl
+fl
+fl
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+aN
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+at
+cs
+fo
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(70,1,1) = {"
+kw
+lb
+ub
+ub
+ae
+ae
+ae
+ub
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+fo
+cs
+cs
+cs
+cs
+fl
+fl
+fl
+fl
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(71,1,1) = {"
+kw
+lb
+ub
+ub
+ae
+lb
+lb
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(72,1,1) = {"
+kw
+lb
+ub
+ub
+ae
+lb
+lb
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(73,1,1) = {"
+kw
+lb
+lb
+ub
+ae
+lb
+ae
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+cq
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(74,1,1) = {"
+kw
+lb
+lb
+ub
+ub
+ae
+ae
+ub
+ub
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(75,1,1) = {"
+kw
+lb
+lb
+ub
+ub
+ae
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(76,1,1) = {"
+kw
+lb
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+cs
+cs
+cs
+at
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+fo
+fo
+fo
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(77,1,1) = {"
+kw
+lb
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(78,1,1) = {"
+kw
+lb
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(79,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+ae
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(80,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+ae
+cs
+cs
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(81,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+cs
+cs
+cs
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(82,1,1) = {"
+kw
+ub
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+at
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+aQ
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(83,1,1) = {"
+kw
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fn
+aQ
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(84,1,1) = {"
+kw
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+cs
+lb
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+aQ
+aN
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(85,1,1) = {"
+kw
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+fo
+aN
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(86,1,1) = {"
+kw
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(87,1,1) = {"
+kw
+ub
+ub
+ae
+ae
+ae
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+aN
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(88,1,1) = {"
+kw
+ub
+lb
+ae
+ae
+ae
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(89,1,1) = {"
+kw
+lb
+lb
+lb
+ae
+ae
+ae
+cs
+cs
+ct
+ct
+ct
+fn
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(90,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+ae
+cs
+cs
+cs
+ct
+fo
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(91,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+fo
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+cs
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(92,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ae
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+ct
+ct
+cs
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(93,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+lb
+ct
+ct
+ct
+lb
+lb
+ct
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ae
+ae
+ae
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cq
+cq
+cs
+cs
+ct
+cs
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(94,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ae
+ae
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cq
+cq
+cs
+cs
+ct
+cs
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(95,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+at
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ge
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+lb
+cq
+cq
+cq
+cs
+cs
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(96,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+ge
+ge
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+cq
+cq
+cq
+cs
+cs
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(97,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+cs
+ct
+ct
+cs
+cs
+cs
+ge
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+at
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+at
+cs
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(98,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(99,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(100,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+fn
+fn
+aN
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(101,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+ct
+ct
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aQ
+aQ
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(102,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+aQ
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(103,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+fn
+aQ
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cq
+cq
+cq
+cq
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(104,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+at
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(105,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(106,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(107,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ub
+ub
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(108,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+ct
+ct
+ct
+ct
+ct
+aQ
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ub
+ub
+ub
+ub
+ae
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(109,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+aN
+aN
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ae
+ae
+ae
+ae
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(110,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+aN
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ae
+ct
+ae
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(111,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(112,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(113,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(114,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(115,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(116,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+fl
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(117,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(118,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(119,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+aN
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+fl
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(120,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+aN
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+fl
+cs
+cs
+ct
+ct
+ct
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(121,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+lb
+lb
+lb
+lb
+cs
+ct
+cs
+cs
+ct
+ct
+ct
+ct
+cs
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(122,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+aL
+aL
+aL
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+ct
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+fn
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(123,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+aL
+br
+aL
+cq
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+fn
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+fl
+fl
+fl
+fl
+cs
+fl
+fl
+fl
+fl
+cs
+cs
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+cs
+cs
+cs
+cs
+ct
+ct
+cs
+cs
+cs
+cs
+ct
+cs
+fn
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(124,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+aL
+aL
+aL
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+cs
+ct
+fn
+fo
+aN
+aN
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+fl
+cs
+aQ
+fn
+ct
+ct
+cs
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(125,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+fn
+aN
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+cs
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(126,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+fo
+ct
+cs
+cs
+ct
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+cs
+lb
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+at
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(127,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+cs
+lb
+cs
+cs
+cs
+ct
+ct
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+fl
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(128,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+cs
+cs
+cs
+lb
+lb
+lb
+lb
+cs
+ct
+ct
+ct
+cs
+lb
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(129,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cq
+cq
+cq
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+cs
+ct
+cd
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+cs
+cs
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+cs
+lb
+lb
+lb
+lb
+lb
+cs
+ct
+ct
+cs
+cs
+cs
+ct
+cs
+cs
+fl
+fl
+fl
+fl
+fl
+cs
+cs
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(130,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+aN
+ct
+cs
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+lb
+lb
+lb
+cs
+cs
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(131,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+aN
+aQ
+cs
+cs
+ct
+ct
+cs
+ct
+ct
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+cs
+ct
+cs
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(132,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+fn
+aQ
+cs
+ct
+cs
+cs
+ct
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(133,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+bT
+ct
+ct
+cs
+ct
+cs
+ct
+bT
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(134,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+bT
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+cs
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(135,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+cs
+cs
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(136,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+ct
+ct
+ct
+ct
+lb
+ct
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(137,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+ct
+lb
+lb
+ct
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(138,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(139,1,1) = {"
+kw
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+lb
+kw
+"}
+(140,1,1) = {"
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+kw
+"}
diff --git a/maps/redgate/teppiranch.dmm b/maps/redgate/teppiranch.dmm
new file mode 100644
index 0000000000..3dddf437cf
--- /dev/null
+++ b/maps/redgate/teppiranch.dmm
@@ -0,0 +1,20704 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ak" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/structure/powered/teppi_ranch)
+"al" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered/teppi_ranch)
+"aI" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"bg" = (
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"bs" = (
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"cj" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"dB" = (
+/obj/structure/fence,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"dV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered/teppi_ranch)
+"eP" = (
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/area/redgate/wilds)
+"fJ" = (
+/obj/structure/fence/door,
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"fN" = (
+/turf/simulated/wall/wood,
+/area/redgate/structure/powered/teppi_ranch/barn)
+"fX" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"gt" = (
+/obj/random/mob/semirandom_mob_spawner/fish/c,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"gL" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/bench/marble,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"hb" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered/teppi_ranch)
+"ig" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/bench/marble,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"is" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch)
+"it" = (
+/obj/random/mob/semirandom_mob_spawner/fish,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"iv" = (
+/obj/structure/flora/pottedplant/small,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"iG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered/teppi_ranch)
+"jf" = (
+/obj/item/modular_computer/console{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"jE" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"jX" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"kt" = (
+/obj/structure/table/rack/steel,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"ku" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"kz" = (
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"ld" = (
+/turf/simulated/floor/tiled,
+/area/redgate/structure/powered/teppi_ranch)
+"lk" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/structure/powered/teppi_ranch)
+"lw" = (
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"lN" = (
+/turf/unsimulated/floor/dark,
+/area/redgate/wilds)
+"mb" = (
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"mc" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"mn" = (
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/wilds)
+"nf" = (
+/obj/structure/fence,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"oE" = (
+/turf/simulated/floor/tiled/monotile,
+/area/redgate/wilds)
+"oL" = (
+/obj/structure/fence/corner,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"pe" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"pg" = (
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/structure/powered/teppi_ranch)
+"pH" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"pL" = (
+/obj/random/mob/semirandom_mob_spawner/fish/d,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"qh" = (
+/obj/structure/fence/corner,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"qJ" = (
+/obj/move_trader_landmark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"qV" = (
+/obj/structure/redgate/away,
+/turf/simulated/floor/reinforced,
+/area/redgate/wilds)
+"qZ" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"rr" = (
+/obj/effect/fake_sun,
+/turf/unsimulated/wall/planetary/normal/virgo4{
+ name = "the end"
+ },
+/area/redgate/wilds)
+"rH" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/redgate/structure/powered/teppi_ranch)
+"rT" = (
+/obj/random/junk,
+/turf/simulated/floor/holofloor/bmarble,
+/area/redgate/structure/powered/teppi_ranch)
+"sT" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"tl" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"tF" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"tI" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"ub" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"ux" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/food/snacks/lasagna,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"uP" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/wilds)
+"uT" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"uX" = (
+/turf/simulated/mineral/ignore_cavegen/cave,
+/area/redgate/wilds)
+"vv" = (
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"vz" = (
+/turf/simulated/floor/tiled/monotile,
+/area/redgate/structure/powered/teppi_ranch)
+"vK" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"wo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/redgate/structure/powered/teppi_ranch)
+"xD" = (
+/mob/living/simple_mob/vore/alienanimals/teppi,
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"xN" = (
+/mob/living/simple_mob/animal/passive/cow,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"xR" = (
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"yJ" = (
+/obj/random/mob/semirandom_mob_spawner/fish/b,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"yM" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"zb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"zl" = (
+/obj/structure/table/steel,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"zF" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"AB" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"AC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"BS" = (
+/obj/structure/sink{
+ pixel_y = 22
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/redgate/structure/powered/teppi_ranch)
+"BW" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Cp" = (
+/obj/move_trader_landmark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"Cr" = (
+/obj/structure/flora/lily3,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"CA" = (
+/turf/simulated/wall,
+/area/redgate/structure/powered/teppi_ranch)
+"CB" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Df" = (
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Ei" = (
+/obj/structure/fence/door,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"EE" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"EM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Fc" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/paper/teppiranch,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Gj" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Gq" = (
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"GF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/kitchen/rollingpin,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"GQ" = (
+/obj/structure/fence/corner{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"GT" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Hd" = (
+/mob/living/simple_mob/vore/horse/big,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"Hf" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/cook_guide,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Ia" = (
+/obj/structure/table/steel,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"IV" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Jg" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"Jl" = (
+/turf/simulated/wall/concrete,
+/area/redgate/structure/powered/teppi_ranch)
+"Jy" = (
+/obj/random/mob/semirandom_mob_spawner/fish/c,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"JP" = (
+/turf/unsimulated/wall/planetary/normal/virgo4{
+ name = "the end"
+ },
+/area/redgate/wilds)
+"Kd" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"KB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"KC" = (
+/obj/structure/railing/grey,
+/obj/structure/bed/chair/sofa/bench/marble{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"KF" = (
+/obj/random/mob/semirandom_mob_spawner/fish/b,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Li" = (
+/obj/structure/table/glass,
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"LD" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/bed/chair/sofa/bench/marble,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Md" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Mp" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"MC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"MJ" = (
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"MP" = (
+/turf/simulated/floor/holofloor/wmarble,
+/area/redgate/structure/powered/teppi_ranch)
+"MT" = (
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"MZ" = (
+/obj/structure/fence/corner{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/seasonal{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"Nk" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"Np" = (
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder{
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Nv" = (
+/mob/living/simple_mob/animal/passive/chicken,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"NL" = (
+/obj/structure/closet/chefcloset,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/tool/wrench,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"NT" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"OF" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/redgate/structure/powered/teppi_ranch)
+"OX" = (
+/obj/random/junk,
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"Pm" = (
+/obj/random/mob/semirandom_mob_spawner/fish/d,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"Pn" = (
+/obj/structure/flora/lily3,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"PL" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Qc" = (
+/turf/simulated/mineral/ignore_cavegen/cave,
+/area/redgate/wilds)
+"Qi" = (
+/obj/machinery/chem_master/condimaster,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Qq" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Qu" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"Qw" = (
+/turf/simulated/floor/holofloor/bmarble,
+/area/redgate/structure/powered/teppi_ranch)
+"QN" = (
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"Rv" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/structure/powered/teppi_ranch)
+"RW" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/water,
+/area/redgate/wilds)
+"RY" = (
+/obj/structure/flora/lily1,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"SG" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"SI" = (
+/obj/structure/flora/lily2,
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"Ta" = (
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"Tl" = (
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"To" = (
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"TE" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"VD" = (
+/turf/simulated/floor/water/deep,
+/area/redgate/wilds)
+"VS" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/wilds)
+"Wa" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
+/obj/random/donkpocketbox,
+/obj/structure/closet/walllocker_double/south{
+ dir = 2;
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Wc" = (
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+"Wy" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/redgate/structure/powered/teppi_ranch/barn)
+"WL" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 13
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"WS" = (
+/obj/structure/fence,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"Xd" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/redgate/structure/powered/teppi_ranch/barn)
+"Xg" = (
+/obj/structure/flora/tree/bigtree,
+/obj/item/weapon/aliencoin/silver,
+/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
+/area/redgate/wilds)
+"XA" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/obj/structure/bed/chair/sofa/bench/marble{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/structure/powered/teppi_ranch)
+"Yu" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"YW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/redgate/structure/powered/teppi_ranch)
+"Zr" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers{
+ name = "box of measuring cups";
+ pixel_x = 2;
+ pixel_y = 3;
+ starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup=7)
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/redgate/structure/powered/teppi_ranch)
+"Zw" = (
+/turf/simulated/floor/beach/sand{
+ outdoors = 1
+ },
+/area/redgate/wilds)
+"ZL" = (
+/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,
+/turf/simulated/floor/outdoors/grass/seasonal/dark{
+ snow_chance = 50
+ },
+/area/redgate/wilds)
+"ZU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/redgate/structure/powered/teppi_ranch)
+
+(1,1,1) = {"
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+rr
+"}
+(2,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(3,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(4,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(5,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(6,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+uX
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+uP
+uP
+uP
+mn
+Qc
+Qc
+JP
+"}
+(7,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+mn
+mn
+uP
+qV
+uP
+mn
+mn
+Qc
+JP
+"}
+(8,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+mn
+uP
+uP
+uP
+mn
+Qc
+Qc
+JP
+"}
+(9,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(10,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Qc
+Qc
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+mn
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(11,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(12,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(13,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Zw
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+jX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(14,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Zw
+Zw
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+jX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(15,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(16,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+mn
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(17,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+Df
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+VD
+VD
+Df
+Df
+Df
+Df
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+jX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(18,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(19,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Jy
+VD
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(20,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+yJ
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+jX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(21,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+Jg
+Jg
+VS
+VS
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(22,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+KF
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+Jg
+Jg
+vv
+VS
+VS
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(23,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+Jg
+VS
+VS
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(24,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+yJ
+VD
+VD
+VD
+VD
+VD
+gt
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(25,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+vv
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Jg
+Qc
+mn
+mn
+mn
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(26,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+VS
+VS
+VS
+vv
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(27,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(28,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Zw
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+KF
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(29,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+vv
+AB
+VS
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(30,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+fJ
+VS
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(31,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(32,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+Jg
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(33,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Df
+Df
+Df
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(34,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+VS
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+YW
+YW
+CA
+YW
+YW
+CA
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+fJ
+VS
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(35,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+VS
+VS
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+VS
+VS
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+AB
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+VS
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+lN
+mn
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(36,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+lN
+Qc
+Qc
+mn
+mn
+Qc
+Qc
+JP
+"}
+(37,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+mn
+mn
+Qc
+Qc
+JP
+"}
+(38,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+oE
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+CA
+zb
+Ta
+Ta
+Ta
+Ta
+Ta
+zb
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+VS
+VS
+VS
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+mn
+mn
+mn
+Qc
+Qc
+Qc
+JP
+"}
+(39,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+YW
+YW
+CA
+YW
+YW
+CA
+CA
+ld
+vz
+ld
+CA
+CA
+YW
+YW
+YW
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+vv
+vv
+vv
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(40,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+NT
+xR
+xR
+pe
+xR
+xR
+CB
+CA
+ld
+vz
+ld
+CA
+PL
+mb
+mb
+bg
+mb
+mb
+mb
+mb
+PL
+CA
+Md
+mb
+mb
+mb
+tF
+CA
+vv
+vv
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+VS
+vv
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+VS
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+Qc
+JP
+"}
+(41,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+SG
+xR
+Hf
+jE
+xR
+xR
+uT
+CA
+ld
+vz
+ld
+CA
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+mb
+mb
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(42,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+Qi
+xR
+Np
+GF
+xR
+xR
+tI
+CA
+ld
+vz
+ld
+CA
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+bg
+mb
+mc
+mb
+mb
+mb
+bg
+mb
+YW
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(43,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+cj
+xR
+Zr
+WL
+xR
+xR
+tI
+CA
+ld
+vz
+ld
+CA
+mb
+bg
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+mb
+mb
+mb
+mb
+mb
+CA
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(44,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+Wa
+xR
+xR
+xR
+xR
+xR
+NL
+CA
+ld
+vz
+ld
+CA
+MC
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+MC
+CA
+mb
+mb
+mb
+mb
+mb
+CA
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(45,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+CA
+CA
+CA
+CA
+CA
+Rv
+CA
+CA
+CA
+ld
+vz
+ld
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+mb
+mb
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(46,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+lk
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+iG
+ld
+vz
+ld
+iG
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+CA
+mb
+bg
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(47,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+lk
+ld
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+ld
+CA
+Md
+mb
+mb
+mb
+tF
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(48,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+YW
+YW
+CA
+CA
+ld
+vz
+ld
+al
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+al
+ld
+vz
+ld
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(49,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+OF
+MP
+MP
+CA
+mb
+bg
+mb
+mb
+mb
+CA
+ld
+vz
+hb
+CA
+CA
+iv
+MJ
+MJ
+CA
+MJ
+MJ
+MJ
+MJ
+qJ
+CA
+MJ
+MJ
+iv
+CA
+CA
+dV
+vz
+ld
+CA
+Mp
+Mp
+mb
+mb
+Ia
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(50,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+MP
+MP
+MP
+CA
+mb
+mb
+mb
+bg
+mb
+CA
+ld
+vz
+ld
+CA
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+CA
+ld
+vz
+ld
+CA
+mb
+bg
+mb
+mb
+Mp
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(51,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+MP
+MP
+MP
+mc
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+iv
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+iv
+ld
+vz
+ld
+CA
+mb
+mb
+mb
+mb
+Mp
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(52,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+BS
+MP
+MP
+CA
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+mb
+mb
+mb
+mb
+Mp
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(53,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+Md
+mb
+mb
+mb
+mb
+CA
+CA
+CA
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(54,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+rH
+rH
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+CA
+eP
+eP
+eP
+eP
+eP
+Tl
+lw
+VS
+Tl
+lw
+eP
+eP
+eP
+eP
+eP
+CA
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+Ta
+Ta
+ZU
+Qu
+Qu
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+MZ
+dB
+dB
+dB
+sT
+dB
+dB
+dB
+sT
+dB
+dB
+dB
+oL
+vv
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+JP
+"}
+(55,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+wo
+rH
+rH
+mb
+pH
+pH
+pH
+pH
+pH
+mb
+mb
+mb
+mb
+Rv
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(56,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+wo
+rH
+mb
+mb
+TE
+TE
+TE
+TE
+ux
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+VS
+VS
+eP
+eP
+eP
+VS
+VS
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+Rv
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Qw
+Qw
+Rv
+lk
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(57,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+wo
+rH
+mb
+BW
+TE
+TE
+IV
+TE
+Fc
+qZ
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+MJ
+VS
+VS
+VS
+VS
+VS
+VS
+eP
+Xg
+eP
+VS
+VS
+VS
+VS
+VS
+VS
+MJ
+ld
+vz
+ld
+CA
+Wc
+Ta
+Ta
+Ta
+Ta
+Ta
+Qw
+Qw
+CA
+is
+vv
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(58,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+wo
+rH
+mb
+mb
+TE
+TE
+TE
+TE
+TE
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+VS
+VS
+eP
+eP
+eP
+VS
+VS
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+Rv
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Qw
+Qw
+Rv
+lk
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(59,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+wo
+rH
+rH
+mb
+Gj
+Gj
+Gj
+Gj
+Gj
+mb
+mb
+mb
+mb
+Rv
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+Ta
+OX
+Ta
+Ta
+Ta
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(60,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+rH
+rH
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+CA
+eP
+eP
+eP
+eP
+eP
+kz
+bs
+VS
+kz
+bs
+eP
+eP
+eP
+eP
+eP
+CA
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+Ta
+Ta
+zb
+Qu
+Qu
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+GQ
+dB
+dB
+dB
+sT
+dB
+dB
+dB
+sT
+dB
+dB
+dB
+ub
+vv
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+JP
+"}
+(61,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+Md
+mb
+bg
+mb
+mb
+CA
+CA
+CA
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(62,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+mb
+bg
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+MJ
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+MJ
+ld
+vz
+ld
+CA
+mb
+mb
+mb
+mb
+Mp
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(63,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+bg
+CA
+ld
+vz
+ld
+iv
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+iv
+ld
+vz
+ld
+CA
+mb
+bg
+mb
+mb
+Mp
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(64,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+mb
+CA
+ld
+vz
+ld
+CA
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+VS
+eP
+eP
+eP
+eP
+eP
+eP
+eP
+CA
+ld
+vz
+ld
+CA
+Mp
+mb
+mb
+mb
+Mp
+YW
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(65,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+mb
+mb
+mb
+mb
+mb
+mb
+bg
+mb
+mb
+CA
+ld
+vz
+hb
+CA
+CA
+iv
+MJ
+MJ
+CA
+MJ
+MJ
+MJ
+MJ
+Cp
+CA
+MJ
+MJ
+iv
+CA
+CA
+dV
+vz
+ld
+CA
+Mp
+Mp
+mb
+Mp
+zl
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(66,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+YW
+YW
+CA
+CA
+CA
+YW
+YW
+CA
+CA
+ld
+vz
+ld
+iG
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+iG
+ld
+vz
+ld
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(67,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+lk
+ld
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+vz
+ld
+CA
+EM
+mb
+mb
+mb
+tF
+CA
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(68,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+lk
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+al
+ld
+vz
+ld
+al
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+ld
+CA
+mb
+mb
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(69,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+vv
+CA
+CA
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+ld
+vz
+ld
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+mb
+mb
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(70,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+vv
+vv
+CA
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+CA
+ld
+vz
+ld
+CA
+ZU
+Ta
+Ta
+Ta
+Ta
+Ta
+fX
+jf
+yM
+CA
+mb
+mb
+mb
+mb
+mb
+CA
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(71,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+YW
+Qw
+Qw
+Qw
+Qw
+Qw
+rT
+Qw
+CA
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+QN
+Ta
+Ta
+Ta
+Ta
+fX
+CA
+mb
+mb
+mb
+mb
+mb
+CA
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(72,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+vv
+YW
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+CA
+ld
+vz
+ld
+CA
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+mc
+mb
+mb
+mb
+mb
+mb
+YW
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(73,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+vv
+vv
+vv
+vv
+YW
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+Qw
+CA
+ld
+vz
+ld
+CA
+Qu
+OX
+Ta
+Ta
+Ta
+Ta
+OX
+Ta
+Ta
+CA
+mb
+mb
+mb
+bg
+mb
+YW
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(74,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+CA
+Qw
+rT
+Qw
+Qw
+Qw
+Qw
+Qw
+CA
+ld
+vz
+ld
+CA
+kt
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+Ta
+EE
+CA
+Md
+mb
+bg
+mb
+tF
+CA
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+VS
+vv
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+VS
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(75,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+YW
+YW
+CA
+YW
+YW
+CA
+CA
+ld
+vz
+ld
+CA
+CA
+YW
+YW
+YW
+CA
+CA
+CA
+mc
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+CA
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(76,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+mb
+mb
+mb
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+oE
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+CA
+PL
+mb
+mb
+mb
+Qq
+mb
+GT
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+VS
+VS
+VS
+vv
+GQ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ub
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(77,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+Jl
+mb
+mb
+mb
+Jl
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+mb
+mb
+mb
+mb
+Qq
+mb
+Li
+YW
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(78,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+aI
+mb
+mb
+mb
+vK
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+YW
+mb
+mb
+mb
+mb
+Qq
+mb
+mb
+YW
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(79,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Zw
+vv
+vv
+vv
+gL
+mb
+pg
+pg
+pg
+mb
+XA
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+Qq
+mb
+bg
+mb
+mb
+mb
+mb
+CA
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+AB
+VS
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(80,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Zw
+Zw
+Zw
+Zw
+Zw
+Df
+Df
+Df
+Df
+ig
+mb
+pg
+ak
+pg
+mb
+KC
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+CA
+CA
+YW
+YW
+CA
+YW
+YW
+CA
+CA
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+fJ
+VS
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(81,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Zw
+Zw
+Df
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+LD
+mb
+pg
+pg
+pg
+mb
+KC
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(82,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+aI
+mb
+mb
+mb
+vK
+Df
+Df
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+xD
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(83,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Zw
+Df
+Df
+Cr
+Df
+Df
+Df
+Df
+Df
+RW
+Df
+Jl
+mb
+mb
+mb
+Jl
+Df
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(84,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+mb
+mb
+mb
+Df
+Df
+RW
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+fJ
+VS
+VS
+VS
+VS
+VS
+fJ
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(85,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+RW
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+xD
+vv
+vv
+vv
+vv
+vv
+AB
+VS
+VS
+VS
+VS
+VS
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(86,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+RY
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+RW
+VD
+VD
+Df
+Df
+Df
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(87,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+Pn
+VD
+VD
+Df
+Pm
+Df
+Df
+VD
+VD
+Pn
+Df
+Df
+Df
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+VS
+VS
+VS
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+AB
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(88,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+it
+VD
+VD
+VD
+VD
+VD
+SI
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+VS
+VS
+VS
+vv
+MZ
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+oL
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(89,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Df
+RW
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+SI
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(90,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+SI
+VD
+it
+VD
+VD
+VD
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(91,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Cr
+Df
+VD
+VD
+pL
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Cr
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+VS
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(92,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+it
+VD
+VD
+Df
+Df
+Df
+Zw
+Zw
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+VS
+vv
+VS
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(93,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+VD
+Df
+RW
+Df
+Df
+Zw
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+MT
+Wy
+AC
+Wy
+MT
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(94,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Df
+Df
+Df
+Df
+Df
+VD
+VD
+RY
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+Xd
+fN
+Xd
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(95,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+vv
+Zw
+Df
+RW
+Df
+Df
+VD
+VD
+VD
+Df
+Df
+Df
+Df
+Df
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(96,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+vv
+vv
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Hd
+Gq
+Ei
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Ei
+Gq
+xN
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(97,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+vv
+vv
+Zw
+Zw
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(98,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+vv
+vv
+Zw
+Zw
+Zw
+Df
+Df
+Df
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+ku
+Gq
+Gq
+Gq
+Gq
+Gq
+tl
+fN
+fN
+fN
+fN
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(99,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+vv
+vv
+vv
+vv
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Zw
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(100,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Zw
+Zw
+Zw
+Zw
+Zw
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Hd
+Gq
+Ei
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Ei
+Gq
+Hd
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+Jg
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(101,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(102,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+ku
+Gq
+Gq
+Gq
+Gq
+Gq
+tl
+fN
+fN
+fN
+fN
+fN
+nf
+nf
+nf
+nf
+WS
+Kd
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(103,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Nv
+Gq
+Nv
+fN
+MT
+MT
+MT
+MT
+MT
+zF
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(104,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Hd
+Gq
+Ei
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Ei
+Gq
+Nv
+Gq
+Wy
+MT
+MT
+MT
+To
+To
+zF
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(105,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Nv
+Gq
+Nv
+fN
+MT
+MT
+To
+To
+To
+zF
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(106,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+ku
+Gq
+Gq
+Gq
+Gq
+Gq
+tl
+fN
+fN
+fN
+fN
+fN
+MT
+MT
+To
+To
+To
+zF
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(107,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Nv
+Gq
+Nv
+fN
+MT
+MT
+MT
+MT
+To
+zF
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(108,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+xN
+Gq
+Ei
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Ei
+Gq
+Nv
+Gq
+Wy
+MT
+MT
+MT
+To
+To
+zF
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(109,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Nv
+Gq
+Nv
+fN
+MT
+MT
+MT
+To
+To
+zF
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(110,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+ku
+Gq
+Gq
+Gq
+Gq
+Gq
+tl
+fN
+fN
+fN
+fN
+fN
+nf
+nf
+WS
+WS
+WS
+qh
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(111,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(112,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Nv
+Gq
+Ei
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Ei
+Gq
+Hd
+Gq
+fN
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(113,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+KB
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(114,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+fN
+Nk
+fN
+fN
+fN
+Nk
+fN
+fN
+fN
+fN
+fN
+fN
+vv
+vv
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(115,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Yu
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(116,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(117,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Yu
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(118,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(119,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+ZL
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(120,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+fN
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(121,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Yu
+Jg
+Jg
+Jg
+Yu
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+ZL
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(122,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+ZL
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(123,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(124,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+vv
+vv
+vv
+vv
+vv
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(125,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+vv
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(126,1,1) = {"
+JP
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(127,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(128,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+ZL
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(129,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(130,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(131,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(132,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+lN
+lN
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+Jg
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(133,1,1) = {"
+JP
+uX
+uX
+uX
+lN
+lN
+lN
+uX
+lN
+lN
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+lN
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(134,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+uX
+uX
+uX
+lN
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(135,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+lN
+lN
+uX
+lN
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(136,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(137,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(138,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(139,1,1) = {"
+JP
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+uX
+JP
+"}
+(140,1,1) = {"
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+JP
+"}
diff --git a/maps/southern_cross/southern_cross-2.dmm b/maps/southern_cross/southern_cross-2.dmm
index 865b3e2a35..00f9624a79 100644
--- a/maps/southern_cross/southern_cross-2.dmm
+++ b/maps/southern_cross/southern_cross-2.dmm
@@ -7618,14 +7618,13 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/seconddeck/starboard)
"avU" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
+/obj/structure/closet/crate/bin,
/turf/simulated/floor/tiled,
/area/security/prison)
"avV" = (
@@ -9364,7 +9363,6 @@
/area/security/prison)
"aBU" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -11391,7 +11389,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/prison)
"aJk" = (
@@ -12868,10 +12865,6 @@
pixel_y = -32
},
/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
@@ -12881,9 +12874,6 @@
c_tag = "SEC - Common Brig 1";
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -12892,23 +12882,6 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aNS" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aNU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
"aNV" = (
/obj/item/device/radio/intercom{
desc = "Talk... listen through this.";
@@ -12916,41 +12889,26 @@
pixel_y = -21;
wires = 7
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled,
/area/security/prison)
"aNW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/industrial/warning,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/security/prison)
"aNX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/industrial/warning,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/security/prison)
"aNY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/prison)
"aNZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -12960,10 +12918,6 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/computer/cryopod{
layer = 3.3;
pixel_x = 32
@@ -14106,7 +14060,6 @@
/turf/simulated/floor/tiled/steel_grid,
/area/security/prison)
"aRu" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 8;
pixel_x = 22
@@ -15098,7 +15051,6 @@
req_access = list(63)
},
/obj/machinery/door/firedoor/border_only,
-/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -16410,7 +16362,6 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -18039,11 +17990,12 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"bdR" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
/obj/structure/disposalpipe/segment,
+/obj/random/tech_supply,
+/obj/item/weapon/storage/bag/circuits/basic,
+/obj/random/technology_scanner,
+/obj/random/tech_supply,
+/obj/structure/table/steel,
/turf/simulated/floor,
/area/maintenance/cargo)
"bdS" = (
@@ -18507,7 +18459,6 @@
name = "Communal Brig Blast Door";
opacity = 0
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19916,7 +19867,6 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
@@ -22123,7 +22073,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -22786,6 +22735,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/turf/simulated/wall/r_wall,
/area/maintenance/disposal)
"brZ" = (
@@ -22799,6 +22749,16 @@
dir = 2;
icon_state = "pipe-c"
},
+/obj/random/maintenance/medical,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/maintenance/medical,
+/obj/random/toolbox,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/structure/closet/crate,
/turf/simulated/floor,
/area/maintenance/cargo)
"bsb" = (
@@ -23050,7 +23010,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -23836,6 +23795,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 6
},
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
/turf/simulated/floor,
/area/maintenance/cargo)
"bvo" = (
@@ -25068,7 +25030,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/security_hallway)
"byG" = (
@@ -26752,15 +26713,16 @@
/turf/simulated/floor/tiled,
/area/security/security_hallway)
"bDy" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
/obj/effect/floor_decal/corner/red/bordercorner{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/security/security_hallway)
"bDE" = (
@@ -48207,9 +48169,9 @@
},
/obj/structure/disposaloutlet{
dir = 8;
- pixel_y = -2;
+ name = "Lost & found disposal outlet";
pixel_x = -7;
- name = "Lost & found disposal outlet"
+ pixel_y = -2
},
/turf/simulated/wall/r_wall,
/area/medical/virology)
@@ -56094,8 +56056,8 @@
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = -36;
dir = 4;
+ pixel_x = -36;
pixel_y = 6
},
/obj/machinery/button/windowtint{
@@ -56107,6 +56069,10 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/cryo/autoresleeve)
"jqw" = (
@@ -61898,9 +61864,9 @@
dir = 4
},
/obj/structure/sign/department/cargo{
- pixel_y = -32;
+ desc = "NT is not responsible for personal items left or lost on SouthernCross. Any lost and found inquiries can be made at the HoP front desk.";
name = "Resleeving lost & found bin";
- desc = "NT is not responsible for personal items left or lost on SouthernCross. Any lost and found inquiries can be made at the HoP front desk."
+ pixel_y = -32
},
/obj/random/maintenance/clean,
/obj/random/maintenance/engineering,
@@ -64802,9 +64768,9 @@
/area/rnd/workshop)
"olj" = (
/obj/structure/sign/redcross{
- pixel_y = 32;
+ icon_state = "bluecross2";
name = "Autoresleeving";
- icon_state = "bluecross2"
+ pixel_y = 32
},
/turf/simulated/floor/tiled/white,
/area/hallway/secondary/seconddeck/research_medical)
@@ -66505,6 +66471,11 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/cryo/autoresleeve)
"piE" = (
@@ -67582,6 +67553,7 @@
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
/obj/random/cash,
+/obj/item/weapon/reagent_containers/glass/beaker/stopperedbottle,
/turf/simulated/floor,
/area/maintenance/cargo)
"pMH" = (
@@ -69856,8 +69828,8 @@
/area/hallway/secondary/entry/D3)
"rev" = (
/obj/machinery/door/window/westleft{
- name = "Shower";
- dir = 1
+ dir = 1;
+ name = "Shower"
},
/turf/simulated/floor/tiled/white,
/area/medical/cryo/autoresleeve)
@@ -75272,8 +75244,8 @@
dir = 4
},
/obj/machinery/door/window/westright{
- name = "Shower";
dir = 1;
+ name = "Shower";
pixel_y = 0
},
/turf/simulated/floor/tiled/white,
@@ -77326,14 +77298,13 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/hallway/primary/seconddeck/starboard)
"vAY" = (
-/obj/random/powercell,
-/obj/random/powercell,
-/obj/random/powercell,
-/obj/random/powercell,
-/obj/random/toolbox,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/tool,
/obj/structure/closet/crate,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
/turf/simulated/floor,
/area/maintenance/research_medical)
"vBP" = (
@@ -78776,14 +78747,6 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/seconddeck/starboard)
-"wrn" = (
-/obj/structure/table/steel,
-/obj/random/tech_supply,
-/obj/random/technology_scanner,
-/obj/item/weapon/storage/bag/circuits/basic,
-/obj/random/tech_supply,
-/turf/simulated/floor/plating,
-/area/maintenance/research_medical)
"wry" = (
/turf/simulated/wall/r_wall,
/area/medical/medbay2)
@@ -80108,9 +80071,9 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/disposal/wall/cleaner{
dir = 8;
- pixel_y = 0;
+ name = "Resleeving lost & found bin";
pixel_x = 35;
- name = "Resleeving lost & found bin"
+ pixel_y = 0
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -111198,7 +111161,7 @@ aqL
avV
aBV
aJl
-aNS
+ahm
aRq
aTm
aYn
@@ -111456,7 +111419,7 @@ arH
awe
aBW
aJm
-aNU
+ahl
aRr
aTp
aYo
@@ -129308,7 +129271,7 @@ rJB
tfv
uqg
vAY
-wrn
+pAQ
qHW
yeN
rEl
diff --git a/maps/southern_cross/southern_cross-8.dmm b/maps/southern_cross/southern_cross-8.dmm
index 35f10e17de..26958d0836 100644
--- a/maps/southern_cross/southern_cross-8.dmm
+++ b/maps/southern_cross/southern_cross-8.dmm
@@ -1674,7 +1674,9 @@
/area/shuttle/merchant)
"bbP" = (
/mob/living/simple_mob/animal/sif/glitterfly/rare,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"bcb" = (
/obj/effect/floor_decal/milspec/color/silver,
@@ -5089,7 +5091,9 @@
/area/shadekin)
"edw" = (
/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"edK" = (
/obj/effect/decal/cleanable/blood,
@@ -5170,7 +5174,9 @@
/area/wizard_station)
"ehg" = (
/obj/structure/flora/ausbushes/lavendergrass,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"ehy" = (
/obj/machinery/door/window/northright{
@@ -8697,7 +8703,9 @@
/area/shadekin)
"hGu" = (
/obj/machinery/beehive,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"hGO" = (
/obj/structure/bed/chair/office/light{
@@ -10024,8 +10032,14 @@
},
/area/skipjack_station)
"iQW" = (
-/obj/machinery/door/airlock/angled_tgmc/wide,
-/turf/simulated/floor/tiled/techfloor,
+/turf/unsimulated/wall{
+ desc = "It's a strange, impenetrable darkness.";
+ name = "dark";
+ icon = 'icons/turf/flooring/weird_vr.dmi';
+ icon_state = "dark";
+ blocks_nonghost_incorporeal = 1;
+ block_tele = 1
+ },
/area/shadekin)
"iQX" = (
/obj/effect/floor_decal/carpet{
@@ -11097,7 +11111,9 @@
/area/centcom/command)
"jNr" = (
/obj/structure/flora/bboulder2,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"jNs" = (
/obj/machinery/light/floortube{
@@ -12272,9 +12288,7 @@
/turf/simulated/shuttle/floor/yellow,
/area/centcom/evac)
"kKj" = (
-/obj/machinery/door/airlock/angled_tgmc/wide{
- name = "Bathroom"
- },
+/obj/machinery/door/airlock/angled_tgmc,
/turf/simulated/floor/tiled/techfloor,
/area/shadekin)
"kKz" = (
@@ -14783,10 +14797,6 @@
icon_state = "lino"
},
/area/tdome/tdomeadmin)
-"ngf" = (
-/obj/structure/lattice,
-/turf/unsimulated/floor/dark,
-/area/space)
"ngE" = (
/obj/effect/floor_decal/milspec/color/black,
/obj/machinery/light{
@@ -15437,7 +15447,9 @@
/area/holodeck/source_emptycourt)
"nOe" = (
/obj/structure/flora/tree/jungle_small,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"nOo" = (
/obj/effect/floor_decal/corner/red/full{
@@ -18378,7 +18390,9 @@
/area/shadekin)
"rdD" = (
/obj/structure/flora/bboulder1,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"rdH" = (
/obj/machinery/computer/timeclock/premade/east,
@@ -19730,7 +19744,9 @@
/area/shuttle/skipjack)
"slw" = (
/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"slD" = (
/obj/machinery/door/airlock/external{
@@ -22582,7 +22598,9 @@
/area/holodeck/source_emptycourt)
"uXG" = (
/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"uXT" = (
/obj/machinery/vending/cigarette{
@@ -23509,10 +23527,10 @@
},
/area/centcom/bar)
"vRr" = (
-/turf/unsimulated/floor/dark{
- block_tele = 1
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
},
-/area/space)
+/area/shadekin)
"vRu" = (
/obj/machinery/door/airlock/external{
frequency = 1380;
@@ -25379,7 +25397,9 @@
/area/centcom/specops)
"xJn" = (
/obj/structure/flora/tree/jungle,
-/turf/simulated/floor/outdoors/grass/heavy/atoll,
+/turf/simulated/floor/outdoors/grass/heavy/atoll{
+ dynamic_lighting = 1
+ },
/area/shadekin)
"xJr" = (
/turf/unsimulated/wall{
@@ -43773,88 +43793,88 @@ vFi
vFi
"}
(70,1,1) = {"
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
vFi
vFi
vFi
@@ -44031,88 +44051,88 @@ vFi
vFi
"}
(71,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -44289,88 +44309,88 @@ vFi
vFi
"}
(72,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -44547,88 +44567,88 @@ vFi
vFi
"}
(73,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -44805,88 +44825,88 @@ vFi
vFi
"}
(74,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -45063,88 +45083,88 @@ vFi
vFi
"}
(75,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -45321,12 +45341,12 @@ vFi
vFi
"}
(76,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -45396,13 +45416,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -45579,12 +45599,12 @@ vFi
vFi
"}
(77,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -45654,13 +45674,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -45837,12 +45857,12 @@ vFi
vFi
"}
(78,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -45912,13 +45932,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -46095,12 +46115,12 @@ vFi
vFi
"}
(79,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -46170,13 +46190,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -46353,12 +46373,12 @@ vFi
vFi
"}
(80,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -46428,13 +46448,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -46611,12 +46631,12 @@ vFi
vFi
"}
(81,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -46686,13 +46706,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -46869,12 +46889,12 @@ vFi
vFi
"}
(82,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -46944,13 +46964,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -47127,12 +47147,12 @@ vFi
vFi
"}
(83,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -47202,13 +47222,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -47385,12 +47405,12 @@ vFi
vFi
"}
(84,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -47460,13 +47480,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -47643,12 +47663,12 @@ vFi
vFi
"}
(85,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -47718,13 +47738,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -47901,12 +47921,12 @@ vFi
vFi
"}
(86,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -47976,13 +47996,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -48159,12 +48179,12 @@ vFi
vFi
"}
(87,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -48234,13 +48254,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -48417,12 +48437,12 @@ vFi
vFi
"}
(88,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -48437,20 +48457,20 @@ rUx
bAY
kyg
oTO
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
uOk
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
uXG
slw
-vXr
+vRr
slw
-vXr
+vRr
slw
-vXr
+vRr
oTO
mas
bAY
@@ -48492,13 +48512,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -48675,12 +48695,12 @@ vFi
vFi
"}
(89,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -48701,14 +48721,14 @@ jmT
uOk
hGu
uOk
-vXr
-vXr
+vRr
+vRr
slw
ehg
rTt
hUC
ivs
-vXr
+vRr
oTO
mas
bAY
@@ -48750,13 +48770,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -48933,12 +48953,12 @@ vFi
vFi
"}
(90,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -48953,7 +48973,7 @@ uOw
bAY
kyg
ivs
-vXr
+vRr
uOk
omo
uOk
@@ -48961,11 +48981,11 @@ ivs
uOk
hGu
slw
-vXr
+vRr
rTt
hUC
hVi
-vXr
+vRr
slw
ivs
mas
@@ -49008,13 +49028,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -49191,12 +49211,12 @@ vFi
vFi
"}
(91,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -49213,18 +49233,18 @@ kyg
oTO
hGu
uOk
-vXr
+vRr
uOk
ivs
uOk
-vXr
-vXr
+vRr
+vRr
kXp
hUC
rTt
rTt
-vXr
-vXr
+vRr
+vRr
ivs
mas
bAY
@@ -49266,13 +49286,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -49449,12 +49469,12 @@ vFi
vFi
"}
(92,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -49469,20 +49489,20 @@ pDb
bAY
kyg
oTO
-vXr
+vRr
uOk
hGu
uOk
jmT
uOk
-vXr
-vXr
+vRr
+vRr
hVi
ivs
slw
-vXr
+vRr
slw
-vXr
+vRr
oTO
mas
bAY
@@ -49524,13 +49544,13 @@ rVH
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -49707,12 +49727,12 @@ vFi
vFi
"}
(93,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -49727,20 +49747,20 @@ bMy
xls
kyg
ivs
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
uOk
slw
rdD
-vXr
+vRr
ivs
ivs
slw
-vXr
+vRr
uXG
slw
-vXr
+vRr
ivs
mas
rSl
@@ -49782,13 +49802,13 @@ aAg
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -49965,12 +49985,12 @@ vFi
vFi
"}
(94,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -49985,20 +50005,20 @@ sta
bAY
kyg
oTO
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
ivs
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
ivs
mas
bAY
@@ -50040,13 +50060,13 @@ bMy
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -50223,12 +50243,12 @@ vFi
vFi
"}
(95,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -50243,20 +50263,20 @@ kiH
bAY
kyg
oTO
-vXr
-vXr
+vRr
+vRr
sZX
cus
ivs
-vXr
+vRr
nOe
bbP
-vXr
-vXr
-vXr
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
+vRr
+vRr
+vRr
oTO
gcg
fKz
@@ -50298,13 +50318,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -50481,12 +50501,12 @@ vFi
vFi
"}
(96,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -50501,20 +50521,20 @@ bMy
xls
kyg
oTO
-vXr
-vXr
+vRr
+vRr
ivs
hEP
kwM
ivs
-vXr
+vRr
uXG
-vXr
-vXr
+vRr
+vRr
uOk
-vXr
+vRr
edw
-vXr
+vRr
oTO
mas
rSl
@@ -50556,13 +50576,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -50739,12 +50759,12 @@ vFi
vFi
"}
(97,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -50759,20 +50779,20 @@ nJz
bAY
kyg
oTO
-vXr
+vRr
vVd
hEP
hEP
hEP
hEP
ivs
-vXr
+vRr
uOk
jmT
uOk
hGu
uOk
-vXr
+vRr
ivs
mas
bAY
@@ -50814,13 +50834,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -50997,12 +51017,12 @@ vFi
vFi
"}
(98,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -51017,7 +51037,7 @@ hah
bAY
kyg
oTO
-vXr
+vRr
ivs
rmy
nId
@@ -51028,9 +51048,9 @@ hGu
sBo
ivs
uOk
-vXr
+vRr
uOk
-vXr
+vRr
ivs
mas
bAY
@@ -51072,13 +51092,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -51255,12 +51275,12 @@ vFi
vFi
"}
(99,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -51275,16 +51295,16 @@ uaj
bAY
kyg
ivs
-vXr
+vRr
aOJ
hEP
hEP
hEP
ivs
-vXr
+vRr
nOe
uOk
-vXr
+vRr
uOk
ivs
uOk
@@ -51330,13 +51350,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -51513,12 +51533,12 @@ vFi
vFi
"}
(100,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -51533,20 +51553,20 @@ qXP
bAY
kyg
ivs
-vXr
-vXr
+vRr
+vRr
ivs
hEP
ivs
xJn
-vXr
-vXr
+vRr
+vRr
fuU
hGu
uOk
jmT
uOk
-vXr
+vRr
ivs
mas
bAY
@@ -51588,13 +51608,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -51771,12 +51791,12 @@ vFi
vFi
"}
(101,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -51791,20 +51811,20 @@ pcm
bAY
kyg
oTO
-vXr
+vRr
ehg
vXr
ivs
-vXr
-vXr
-vXr
-vXr
+vRr
+vRr
+vRr
+vRr
ehg
-vXr
+vRr
uOk
-vXr
+vRr
jNr
-vXr
+vRr
oTO
mas
bAY
@@ -51846,13 +51866,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -52029,12 +52049,12 @@ vFi
vFi
"}
(102,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -52104,13 +52124,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -52287,12 +52307,12 @@ vFi
vFi
"}
(103,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -52362,13 +52382,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -52545,12 +52565,12 @@ vFi
vFi
"}
(104,1,1) = {"
-dtV
-vRr
-vRr
-vRr
-vRr
-vRr
+jsz
+lNr
+lNr
+lNr
+lNr
+lNr
ydh
ydh
ydh
@@ -52620,13 +52640,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -52803,12 +52823,12 @@ vFi
vFi
"}
(105,1,1) = {"
-dtV
-jsz
-jsz
-jsz
-jsz
jsz
+iQW
+iQW
+iQW
+iQW
+iQW
ydh
ydh
ydh
@@ -52878,13 +52898,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -53061,12 +53081,12 @@ vFi
vFi
"}
(106,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -53111,21 +53131,21 @@ bMy
eTi
vbz
tfB
-iQW
+kKj
oTO
acK
bMy
sRc
jvB
qzw
-iQW
+kKj
oTO
acK
bMy
ktw
dBV
tfB
-iQW
+kKj
oTO
acK
bMy
@@ -53136,13 +53156,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -53319,12 +53339,12 @@ vFi
vFi
"}
(107,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -53394,13 +53414,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -53577,12 +53597,12 @@ vFi
vFi
"}
(108,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -53652,13 +53672,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -53835,12 +53855,12 @@ vFi
vFi
"}
(109,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -53910,13 +53930,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -54093,12 +54113,12 @@ vFi
vFi
"}
(110,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -54168,13 +54188,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -54351,12 +54371,12 @@ vFi
vFi
"}
(111,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -54426,13 +54446,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -54609,12 +54629,12 @@ vFi
vFi
"}
(112,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -54684,13 +54704,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -54867,12 +54887,12 @@ vFi
vFi
"}
(113,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -54942,13 +54962,13 @@ bMy
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -55125,12 +55145,12 @@ vFi
vFi
"}
(114,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -55200,13 +55220,13 @@ aAg
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -55383,12 +55403,12 @@ vFi
vFi
"}
(115,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -55458,13 +55478,13 @@ msJ
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -55641,12 +55661,12 @@ vFi
vFi
"}
(116,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -55716,13 +55736,13 @@ aAg
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -55899,12 +55919,12 @@ vFi
vFi
"}
(117,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -55974,13 +55994,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -56157,12 +56177,12 @@ vFi
vFi
"}
(118,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -56207,21 +56227,21 @@ bMy
sRc
mkR
qzw
-iQW
+kKj
xgQ
qcH
bMy
ewk
xpG
ffE
-iQW
+kKj
kbL
krF
bMy
wzH
tae
qzw
-iQW
+kKj
kbL
npe
bMy
@@ -56232,13 +56252,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -56415,12 +56435,12 @@ vFi
vFi
"}
(119,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -56490,13 +56510,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -56673,12 +56693,12 @@ vFi
vFi
"}
(120,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -56748,13 +56768,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -56931,12 +56951,12 @@ vFi
vFi
"}
(121,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -57006,13 +57026,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -57189,12 +57209,12 @@ vFi
vFi
"}
(122,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -57264,13 +57284,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -57447,12 +57467,12 @@ vFi
vFi
"}
(123,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -57522,13 +57542,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -57705,12 +57725,12 @@ vFi
vFi
"}
(124,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -57780,13 +57800,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -57963,12 +57983,12 @@ vFi
vFi
"}
(125,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -58038,13 +58058,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -58221,12 +58241,12 @@ vFi
vFi
"}
(126,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -58296,13 +58316,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -58479,12 +58499,12 @@ vFi
vFi
"}
(127,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -58554,13 +58574,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -58737,12 +58757,12 @@ vFi
vFi
"}
(128,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
mFz
mFz
@@ -58812,13 +58832,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -58995,12 +59015,12 @@ vFi
vFi
"}
(129,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -59070,13 +59090,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -59253,12 +59273,12 @@ vFi
vFi
"}
(130,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -59328,13 +59348,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -59511,12 +59531,12 @@ vFi
vFi
"}
(131,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -59586,13 +59606,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -59769,12 +59789,12 @@ vFi
vFi
"}
(132,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -59844,13 +59864,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -60027,12 +60047,12 @@ vFi
vFi
"}
(133,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -60102,13 +60122,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -60285,12 +60305,12 @@ vFi
vFi
"}
(134,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -60360,13 +60380,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -60543,12 +60563,12 @@ vFi
vFi
"}
(135,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -60618,13 +60638,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -60801,12 +60821,12 @@ vFi
vFi
"}
(136,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -60876,13 +60896,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -61059,12 +61079,12 @@ vFi
vFi
"}
(137,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -61134,13 +61154,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -61317,12 +61337,12 @@ vFi
vFi
"}
(138,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -61392,13 +61412,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -61575,12 +61595,12 @@ vFi
vFi
"}
(139,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -61650,13 +61670,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -61833,12 +61853,12 @@ vFi
vFi
"}
(140,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -61908,13 +61928,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -62091,12 +62111,12 @@ vFi
vFi
"}
(141,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -62166,13 +62186,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -62349,12 +62369,12 @@ vFi
vFi
"}
(142,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -62424,13 +62444,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -62607,12 +62627,12 @@ vFi
vFi
"}
(143,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -62682,13 +62702,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -62865,12 +62885,12 @@ vFi
vFi
"}
(144,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -62940,13 +62960,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -63123,12 +63143,12 @@ vFi
vFi
"}
(145,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -63198,13 +63218,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -63381,12 +63401,12 @@ vFi
vFi
"}
(146,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -63456,13 +63476,13 @@ xfJ
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -63639,12 +63659,12 @@ vFi
vFi
"}
(147,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -63714,13 +63734,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -63897,12 +63917,12 @@ vFi
vFi
"}
(148,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -63972,13 +63992,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -64155,12 +64175,12 @@ vFi
vFi
"}
(149,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -64230,13 +64250,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -64413,12 +64433,12 @@ vFi
vFi
"}
(150,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -64488,13 +64508,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -64671,12 +64691,12 @@ vFi
vFi
"}
(151,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -64746,13 +64766,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -64929,12 +64949,12 @@ vFi
vFi
"}
(152,1,1) = {"
-dtV
jsz
-eEJ
-eEJ
-eEJ
-eEJ
+iQW
+ydh
+ydh
+ydh
+ydh
ydh
ydh
ydh
@@ -65004,13 +65024,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -65187,12 +65207,12 @@ vFi
vFi
"}
(153,1,1) = {"
-dtV
-jsz
-jsz
-jsz
-jsz
jsz
+iQW
+iQW
+iQW
+iQW
+iQW
ydh
ydh
ydh
@@ -65262,13 +65282,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -65445,12 +65465,12 @@ vFi
vFi
"}
(154,1,1) = {"
-dtV
-vRr
-vRr
-vRr
-vRr
-vRr
+jsz
+lNr
+lNr
+lNr
+lNr
+lNr
ydh
ydh
ydh
@@ -65520,13 +65540,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -65703,12 +65723,12 @@ vFi
vFi
"}
(155,1,1) = {"
-dtV
-vRr
-vRr
-vRr
-vRr
-vRr
+jsz
+lNr
+lNr
+lNr
+lNr
+lNr
ydh
ydh
ydh
@@ -65778,13 +65798,13 @@ ydh
ydh
ydh
ydh
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -65961,88 +65981,88 @@ vFi
vFi
"}
(156,1,1) = {"
-dtV
-vRr
-vRr
-vRr
-vRr
-vRr
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+lNr
+lNr
+lNr
+lNr
+lNr
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -66219,88 +66239,88 @@ vFi
vFi
"}
(157,1,1) = {"
-dtV
-vRr
-vRr
-vRr
-vRr
-vRr
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+lNr
+lNr
+lNr
+lNr
+lNr
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -66477,88 +66497,88 @@ vFi
vFi
"}
(158,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-ngf
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -66735,88 +66755,88 @@ vFi
vFi
"}
(159,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -66993,88 +67013,88 @@ vFi
vFi
"}
(160,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -67251,88 +67271,88 @@ vFi
vFi
"}
(161,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -67509,88 +67529,88 @@ vFi
vFi
"}
(162,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -67767,88 +67787,88 @@ vFi
vFi
"}
(163,1,1) = {"
-dtV
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-eEJ
-dtV
+jsz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
vFi
vFi
vFi
@@ -68025,88 +68045,88 @@ vFi
vFi
"}
(164,1,1) = {"
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
-dtV
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
vFi
vFi
vFi
diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm
index e3086864c2..e5c527fa5c 100644
--- a/maps/stellar_delight/stellar_delight1.dmm
+++ b/maps/stellar_delight/stellar_delight1.dmm
@@ -3504,10 +3504,18 @@ no
/turf/simulated/floor,
/area/maintenance/stellardelight/substation/civilian)
"ca" = (
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/structure/closet/walllocker_double/engineering/north,
+/obj/structure/closet/walllocker_double/engineering/west,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"cb" = (
@@ -3522,21 +3530,9 @@ no
/turf/simulated/floor/airless,
/area/stellardelight/deck1/exterior)
"cc" = (
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/rods,
-/obj/fiftyspawner/rglass,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/item/stack/material/plasteel{
- amount = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 5
},
-/obj/structure/closet/walllocker_double/engineering/north,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"cd" = (
@@ -6480,11 +6476,8 @@ no
/turf/simulated/floor/carpet/purcarpet,
/area/stellardelight/deck1/dorms/dorm3)
"hL" = (
-/obj/effect/floor_decal/steeldecal/steel_decals3,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
+/obj/structure/redgate,
+/turf/simulated/floor/tiled/eris/dark/danger,
/area/stellardelight/deck1/port)
"hM" = (
/obj/structure/cable/green{
@@ -6594,19 +6587,15 @@ no
/turf/simulated/floor/tiled/techmaint,
/area/stellardelight/deck1/starboard)
"hX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/structure/closet/walllocker_double/engineering/west,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"hY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "GatewayShutterW"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/gateway)
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/stellardelight/deck1/port)
"hZ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -8067,11 +8056,11 @@ no
/turf/simulated/floor/carpet/purcarpet,
/area/stellardelight/deck1/dorms/dorm6)
"ll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/stellardelight/deck1/port)
"lm" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -10878,16 +10867,6 @@ no
"ra" = (
/turf/simulated/wall/bay/r_wall/steel,
/area/maintenance/stellardelight/deck1/exploration)
-"rb" = (
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "GatewayShutterW";
- name = "EVA Shutter";
- pixel_x = 23;
- req_one_access = list(18,19,43,67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
"rc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -12485,24 +12464,6 @@ no
},
/turf/simulated/floor/tiled/techmaint,
/area/stellardelight/deck1/starboard)
-"uD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
"uF" = (
/obj/structure/cable/green{
color = "#42038a";
@@ -17063,6 +17024,9 @@ no
dir = 8
},
/obj/machinery/recharge_station,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techmaint,
/area/stellardelight/deck1/port)
"EM" = (
@@ -19525,6 +19489,7 @@ no
/area/crew_quarters/toilet)
"Kj" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"Kk" = (
@@ -20171,6 +20136,7 @@ no
/obj/item/clothing/shoes/magboots,
/obj/item/clothing/shoes/magboots,
/obj/item/clothing/shoes/magboots,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"LE" = (
@@ -20339,7 +20305,6 @@ no
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/alarm/angled,
/obj/structure/disposalpipe/sortjunction{
dir = 4;
name = "Resleeving";
@@ -23209,6 +23174,7 @@ no
/obj/machinery/alarm/angled{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"Sf" = (
@@ -24627,14 +24593,11 @@ no
/turf/simulated/floor/tiled/steel_ridged,
/area/maintenance/stellardelight/substation/research)
"UY" = (
-/obj/machinery/suit_cycler/engineering{
- req_access = null
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/stellardelight/deck1/port)
"UZ" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -25922,6 +25885,7 @@ no
/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/gateway)
"XF" = (
@@ -35770,9 +35734,9 @@ KV
KV
KV
EO
-hL
-rb
-hL
+YT
+YT
+YT
YT
WF
Pt
@@ -35912,10 +35876,10 @@ MA
Zt
gj
Ku
-hY
Ku
hY
-Ku
+hY
+hY
LV
EN
EN
@@ -36054,11 +36018,11 @@ WB
DY
ZE
Ku
-ca
-UY
-nD
Ku
-uD
+UY
+hL
+hY
+Rk
YT
at
KL
@@ -36196,10 +36160,10 @@ Ku
Ku
Ku
Ku
-cc
+Ku
+Ku
ll
-nD
-YM
+hY
Rk
rw
Ep
@@ -36337,11 +36301,11 @@ Ku
Kt
Ca
vQ
-nD
+ca
hX
-nD
-nD
-YM
+Ku
+Ku
+Ku
Rk
kU
ER
@@ -36480,7 +36444,7 @@ LD
Se
XE
Kj
-hX
+cc
nD
uM
YM
diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm
index fd6a33cfea..be8004e3e9 100644
--- a/maps/stellar_delight/stellar_delight2.dmm
+++ b/maps/stellar_delight/stellar_delight2.dmm
@@ -1,7 +1,3 @@
-<<<<<<< HEAD
-<<<<<<< HEAD
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/structure/cable/orange{
@@ -173,10 +169,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"aq" = (
@@ -222,8 +215,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-=======
"av" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/mob/living/simple_mob/animal/goat{
@@ -231,7 +222,6 @@
},
/turf/simulated/floor/tiled/freezer/cold,
/area/crew_quarters/kitchen)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aw" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -279,12 +269,9 @@
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/engine_eva)
-<<<<<<< HEAD
-=======
"aA" = (
/turf/simulated/floor/tiled/monotile,
/area/stellardelight/deck2/fore)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aB" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -340,12 +327,9 @@
dir = 8
},
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"aG" = (
@@ -356,8 +340,6 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-<<<<<<< HEAD
-=======
"aH" = (
/obj/effect/floor_decal/milspec/color/black/corner,
/obj/effect/floor_decal/milspec/color/silver/corner{
@@ -369,7 +351,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aI" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -386,8 +367,6 @@
},
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/starboardsolars)
-<<<<<<< HEAD
-=======
"aJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -396,7 +375,6 @@
/mob/living/simple_mob/animal/passive/cow,
/turf/simulated/floor/grass,
/area/hydroponics)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -432,8 +410,6 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/engine_eva)
-<<<<<<< HEAD
-=======
"aP" = (
/obj/effect/floor_decal/milspec/color/black/corner{
dir = 1
@@ -447,7 +423,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aQ" = (
/obj/structure/grille,
/turf/simulated/floor/airless,
@@ -484,8 +459,6 @@
/obj/structure/low_wall/bay/reinforced/steel,
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portfore)
-<<<<<<< HEAD
-=======
"aU" = (
/turf/simulated/floor/tiled/monotile,
/area/stellardelight/deck2/aftport)
@@ -493,7 +466,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portaft)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"aW" = (
/obj/structure/cable/orange{
icon_state = "4-8"
@@ -533,8 +505,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
-<<<<<<< HEAD
-=======
"ba" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -551,7 +521,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bb" = (
/obj/machinery/light/floortube{
dir = 4;
@@ -657,15 +626,6 @@
pixel_x = 32;
pixel_y = 6
},
-<<<<<<< HEAD
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to the shuttle bay.";
- name = "\improper Shuttle Bay";
- pixel_x = 32;
- pixel_y = -6
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/structure/sign/directions/security{
pixel_x = 32;
pixel_y = 12
@@ -677,13 +637,10 @@
/obj/structure/railing/grey{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/structure/sign/directions/shuttle_bay{
pixel_x = 32;
pixel_y = -6
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/stellardelight/deck2/aftport)
"bn" = (
@@ -726,10 +683,7 @@
/obj/effect/floor_decal/milspec/color/green/half{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"br" = (
@@ -740,15 +694,6 @@
pixel_x = -32;
pixel_y = 6
},
-<<<<<<< HEAD
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to the shuttle bay.";
- name = "\improper Shuttle Bay";
- pixel_x = -32;
- pixel_y = -6
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/structure/sign/directions/security{
pixel_x = -32;
pixel_y = 12
@@ -760,13 +705,10 @@
/obj/structure/railing/grey{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/structure/sign/directions/shuttle_bay{
pixel_x = -32;
pixel_y = -6
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/stellardelight/deck2/aftstarboard)
"bs" = (
@@ -790,10 +732,7 @@
/obj/effect/floor_decal/milspec/color/green/half{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"bu" = (
@@ -811,12 +750,9 @@
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/stellardelight/deck2/triage)
-<<<<<<< HEAD
-=======
"bv" = (
/turf/simulated/floor/tiled/monotile,
/area/stellardelight/deck2/aftstarboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bw" = (
/obj/machinery/power/pointdefense{
id_tag = "sd_pd"
@@ -893,8 +829,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/simulated/wall/bay/r_wall/orange,
/area/engineering/atmos/storage)
-<<<<<<< HEAD
-=======
"bG" = (
/obj/structure/cable/yellow{
icon_state = "32-8"
@@ -904,7 +838,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/quartermaster/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bH" = (
/obj/structure/cable/orange{
icon_state = "4-8"
@@ -971,8 +904,6 @@
},
/turf/simulated/floor,
/area/stellardelight/deck2/central)
-<<<<<<< HEAD
-=======
"bM" = (
/obj/structure/cable/orange{
icon_state = "1-2"
@@ -987,7 +918,6 @@
/mob/living/simple_mob/animal/passive/opossum/poppy,
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/engineering/workshop)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bN" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -1003,17 +933,14 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-=======
"bO" = (
/obj/item/device/radio/intercom{
dir = 1;
pixel_y = 24
},
-/mob/living/simple_mob/otie/red/chubby/cocoa,
+/mob/living/simple_mob/vore/otie/red/chubby/cocoa,
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bP" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -1023,10 +950,6 @@
dir = 6
},
/obj/machinery/alarm/angled,
-<<<<<<< HEAD
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck2/portfore)
-=======
/obj/machinery/space_heater,
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portfore)
@@ -1041,7 +964,6 @@
},
/turf/simulated/floor/wood,
/area/quartermaster/qm)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bR" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/orange{
@@ -1074,14 +996,6 @@
/turf/simulated/wall/bay/r_wall/steel,
/area/engineering/storage)
"bU" = (
-<<<<<<< HEAD
-/mob/living/simple_mob/vore/alienanimals/teppi/baby,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-=======
/obj/structure/filingcabinet,
/obj/machinery/light,
/obj/machinery/alarm/angled{
@@ -1089,7 +1003,6 @@
},
/turf/simulated/floor/wood,
/area/quartermaster/qm)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"bV" = (
/obj/structure/table/woodentable,
/obj/item/weapon/book/manual/bar_guide,
@@ -1150,8 +1063,6 @@
/obj/structure/table/fancyblack,
/turf/simulated/floor/carpet/sblucarpet,
/area/stellardelight/deck2/briefingroom)
-<<<<<<< HEAD
-=======
"cc" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Engine - Core";
@@ -1173,7 +1084,6 @@
/obj/machinery/floodlight,
/turf/simulated/floor/plating,
/area/engineering/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"ce" = (
/obj/machinery/vending/wardrobe/cargodrobe,
/obj/machinery/status_display/supply_display{
@@ -1257,8 +1167,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals_central5,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-=======
"cp" = (
/obj/machinery/light/small{
dir = 1
@@ -1266,7 +1174,6 @@
/obj/machinery/power/thermoregulator,
/turf/simulated/floor/plating,
/area/engineering/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"cq" = (
/obj/machinery/air_sensor{
frequency = 1438;
@@ -1437,11 +1344,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"cL" = (
/obj/structure/cable/cyan{
icon_state = "2-8"
@@ -1521,13 +1424,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/cmostore)
-<<<<<<< HEAD
-=======
"cS" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"cT" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -1552,10 +1452,7 @@
/obj/effect/landmark{
name = "morphspawn"
},
-<<<<<<< HEAD
-=======
/obj/structure/reagent_dispensers/fueltank,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portaft)
"cW" = (
@@ -1588,11 +1485,6 @@
/area/stellardelight/deck2/fore)
"cZ" = (
/obj/item/device/flashlight/lamp/green{
-<<<<<<< HEAD
- pixel_y = 7
- },
-/obj/item/weapon/folder/blue_captain,
-=======
pixel_x = 7;
pixel_y = 16
},
@@ -1600,7 +1492,6 @@
pixel_x = -6;
pixel_y = 7
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/structure/table/darkglass,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -1608,13 +1499,10 @@
/obj/machinery/requests_console/preset/captain{
pixel_x = -30
},
-<<<<<<< HEAD
-=======
/obj/item/weapon/melee/chainofcommand,
/obj/item/weapon/folder/blue_captain{
pixel_x = -6
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/carpet/blucarpet,
/area/crew_quarters/captain)
"da" = (
@@ -1632,19 +1520,6 @@
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/locker_room)
"db" = (
-<<<<<<< HEAD
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-=======
/obj/structure/table/reinforced,
/obj/item/weapon/paper{
info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker.";
@@ -1657,7 +1532,6 @@
/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor/plating,
/area/engineering/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"dc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/cable/white{
@@ -1687,8 +1561,6 @@
},
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/starboardfore)
-<<<<<<< HEAD
-=======
"df" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -1697,7 +1569,6 @@
/obj/machinery/power/grid_checker,
/turf/simulated/floor/plating,
/area/engineering/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"dg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -1750,13 +1621,10 @@
},
/turf/simulated/floor/airless,
/area/stellardelight/deck2/exterior)
-<<<<<<< HEAD
-=======
"dl" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/engineering/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"dm" = (
/obj/item/device/radio/intercom{
dir = 1;
@@ -1766,8 +1634,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/cafe,
/area/crew_quarters/kitchen)
-<<<<<<< HEAD
-=======
"dn" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
@@ -1776,7 +1642,6 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"do" = (
/turf/simulated/wall/bay/brown,
/area/quartermaster/storage)
@@ -1790,12 +1655,6 @@
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"dq" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -1866,12 +1725,9 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"dz" = (
@@ -1946,10 +1802,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/structure/closet/walllocker_double/emergency_engi/north,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
"dH" = (
@@ -2317,32 +2170,16 @@
name = "Bridge Lockdown";
pixel_y = 2
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/corner,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"ex" = (
/obj/structure/closet/hydrant{
-<<<<<<< HEAD
- pixel_x = -32
- },
-/obj/effect/floor_decal/milspec/color/black/corner{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/silver/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck2/fore)
-=======
dir = 4;
pixel_x = 27
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/stellardelight/deck2/triage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"ey" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/window/bay/reinforced,
@@ -2601,10 +2438,7 @@
dir = 1;
req_one_access = list(35,28)
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/grass,
/area/hydroponics)
"fb" = (
@@ -2775,12 +2609,9 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"fw" = (
@@ -2848,8 +2679,6 @@
},
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
-<<<<<<< HEAD
-=======
"fC" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
@@ -2884,7 +2713,6 @@
/obj/structure/closet/walllocker_double/misc_civ/north,
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"fF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/cable/white{
@@ -2895,22 +2723,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-<<<<<<< HEAD
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/cmostore)
-"fG" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor,
-/area/engineering/atmos/monitoring)
-=======
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
@@ -2965,17 +2777,13 @@
/obj/structure/closet/walllocker_double/misc_civ/north,
/turf/simulated/floor/tiled,
/area/storage/art)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"fI" = (
/obj/effect/floor_decal/milspec/color/white/corner{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"fJ" = (
@@ -2992,13 +2800,6 @@
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
"fL" = (
-<<<<<<< HEAD
-/obj/machinery/computer/arcade/battle,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/eris/dark/cargo,
-/area/crew_quarters/recreation_area)
-=======
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/landmark/vermin,
/obj/machinery/station_slot_machine,
@@ -3022,7 +2823,6 @@
/obj/structure/closet/walllocker_double/command/east,
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"fN" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/window/bay/reinforced,
@@ -3083,8 +2883,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
-<<<<<<< HEAD
-=======
"fS" = (
/obj/structure/cable/blue{
icon_state = "4-8"
@@ -3096,7 +2894,6 @@
/obj/structure/closet/walllocker_double/command/north,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"fT" = (
/obj/structure/table/reinforced,
/obj/fiftyspawner/steel,
@@ -3104,14 +2901,6 @@
/obj/fiftyspawner/steel,
/obj/fiftyspawner/steel,
/obj/fiftyspawner/steel,
-<<<<<<< HEAD
-/obj/structure/closet/walllocker_double/north{
- dir = 4;
- pixel_x = 32;
- pixel_y = 0
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/fiftyspawner/wood,
/obj/item/stack/material/glass/phoronrglass{
amount = 20
@@ -3123,12 +2912,9 @@
/obj/item/stack/material/plasteel{
amount = 30
},
-<<<<<<< HEAD
-=======
/obj/structure/closet/walllocker_double/engineering/east{
name = "material sheets"
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/workshop)
"fU" = (
@@ -3189,14 +2975,6 @@
/turf/simulated/floor/tiled/eris/steel/cargo,
/area/quartermaster/storage)
"gc" = (
-<<<<<<< HEAD
-/mob/living/simple_mob/animal/passive/cow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-=======
/obj/structure/cable/cyan{
icon_state = "1-2"
},
@@ -3205,7 +2983,6 @@
/obj/structure/closet/walllocker_double/engineering/west,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/engineering/engine_room)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"gd" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3385,8 +3162,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/stellardelight/deck2/combustionworkshop)
-<<<<<<< HEAD
-=======
"gt" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/weapon/tape_roll,
@@ -3396,7 +3171,6 @@
/obj/structure/closet/walllocker_double/cargo/east,
/turf/simulated/floor/tiled/eris/steel/cargo,
/area/quartermaster/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"gu" = (
/obj/machinery/firealarm/angled,
/obj/item/device/defib_kit/loaded,
@@ -3437,8 +3211,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
-<<<<<<< HEAD
-=======
"gz" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
@@ -3446,7 +3218,6 @@
/obj/structure/closet/walllocker_double/emergency_engi/east,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"gA" = (
/obj/structure/railing/grey{
dir = 4
@@ -3483,8 +3254,6 @@
},
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
-<<<<<<< HEAD
-=======
"gD" = (
/obj/structure/table/reinforced,
/obj/random/powercell,
@@ -3492,7 +3261,6 @@
/obj/item/device/t_scanner,
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/workshop)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"gE" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -3515,14 +3283,6 @@
/turf/simulated/floor/airless,
/area/stellardelight/deck2/exterior)
"gG" = (
-<<<<<<< HEAD
-/obj/structure/sign/poster{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/green/half{
- dir = 8
- },
-=======
/obj/effect/floor_decal/milspec/color/green/half{
dir = 8
},
@@ -3534,7 +3294,6 @@
pixel_x = -24;
plane = -34
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"gH" = (
@@ -3552,8 +3311,6 @@
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/reception)
-<<<<<<< HEAD
-=======
"gI" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -3563,7 +3320,6 @@
/obj/structure/closet/walllocker_double/engineering/north,
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/engine_eva)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"gJ" = (
/obj/structure/medical_stand,
/turf/simulated/floor/tiled/white,
@@ -3599,12 +3355,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/storage)
"gN" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -3745,20 +3495,15 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/storage)
-<<<<<<< HEAD
-=======
"hf" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall/bay/r_wall/green,
/area/hydroponics)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hg" = (
/obj/structure/shuttle/window,
/obj/structure/grille,
/turf/simulated/floor,
/area/stellardelight/deck2/portescape)
-<<<<<<< HEAD
-=======
"hh" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -3768,7 +3513,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hi" = (
/obj/structure/closet/walllocker_double/medical/north,
/obj/item/weapon/storage/box/body_record_disk,
@@ -3876,8 +3620,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/stellardelight/deck2/o2production)
-<<<<<<< HEAD
-=======
"hv" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
@@ -3885,7 +3627,6 @@
/obj/structure/closet/walllocker_double/emergency_engi/east,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hw" = (
/obj/structure/table/standard,
/obj/machinery/alarm/angled,
@@ -3913,21 +3654,6 @@
/turf/simulated/floor/airless,
/area/stellardelight/deck2/exterior)
"hA" = (
-<<<<<<< HEAD
-/obj/structure/closet/walllocker_double/south{
- dir = 2;
- pixel_y = 30
- },
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
-/obj/item/weapon/storage/pill_bottle/dice,
-/obj/item/weapon/storage/dicecup,
-/obj/item/weapon/deck/cah,
-/obj/item/weapon/deck/cah/black,
-/obj/item/weapon/deck/cards,
-/obj/item/weapon/deck/cards/casino,
-/turf/simulated/floor/tiled/eris/dark/cargo,
-/area/crew_quarters/recreation_area)
-=======
/obj/structure/closet/walllocker_double/emergency_engi/south,
/turf/simulated/floor/tiled/eris/white/cargo,
/area/stellardelight/deck2/triage)
@@ -3938,7 +3664,6 @@
/obj/structure/closet/walllocker_double/emergency_engi/east,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hC" = (
/obj/structure/filingcabinet/chestdrawer{
name = "Medical Forms"
@@ -3952,8 +3677,6 @@
/obj/effect/landmark/start/visitor,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/recreation_area)
-<<<<<<< HEAD
-=======
"hE" = (
/obj/effect/floor_decal/milspec/color/green/half{
dir = 8
@@ -3961,7 +3684,6 @@
/obj/structure/closet/walllocker_double/emergency_engi/west,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hF" = (
/obj/machinery/vending/wallmed1{
dir = 1;
@@ -3969,8 +3691,29 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-<<<<<<< HEAD
-=======
+"hG" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/disposal/wall/cleaner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/locker)
"hH" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -3983,7 +3726,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
dir = 6
@@ -4043,26 +3785,6 @@
/obj/structure/low_wall/bay/reinforced/steel,
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portfore)
-"hP" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/disposal/wall/cleaner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
"hQ" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
@@ -4085,19 +3807,6 @@
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/quartermaster/storage)
"hT" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/obj/structure/railing/grey{
- dir = 8
- },
-/obj/structure/cable/white{
- icon_state = "32-1"
- },
-/turf/simulated/open,
-/area/stellardelight/deck2/triage)
-=======
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/tagger{
dir = 2;
@@ -4106,10 +3815,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
-<<<<<<< HEAD
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"hU" = (
/obj/structure/disposalpipe/tagger/partial{
dir = 8;
@@ -4272,15 +3977,6 @@
/obj/structure/low_wall/bay/reinforced/white,
/turf/simulated/floor,
/area/medical/psych)
-<<<<<<< HEAD
-"iq" = (
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck2/triage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"ir" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -4405,10 +4101,7 @@
cur_coils = 4;
input_attempt = 1;
input_level = 500000;
-<<<<<<< HEAD
-=======
name = "Main";
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
output_level = 1e+006
},
/turf/simulated/floor/plating,
@@ -4464,20 +4157,6 @@
},
/turf/simulated/floor,
/area/stellardelight/deck2/starboardescape)
-<<<<<<< HEAD
-"iM" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/structure/closet/walllocker_double/north,
-/obj/item/weapon/book/manual/sd_guide,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"iN" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/angled_bay/standard/glass{
@@ -4911,11 +4590,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"jO" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/window/bay/reinforced,
@@ -5030,10 +4705,7 @@
/area/stellardelight/deck2/triage)
"kc" = (
/obj/machinery/computer/power_monitor,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/orange/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"kd" = (
@@ -5321,10 +4993,7 @@
/obj/structure/cable/blue{
icon_state = "1-2"
},
-<<<<<<< HEAD
-=======
/obj/machinery/door/firedoor/glass,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/steel_ridged,
/area/stellardelight/deck2/briefingroom)
"kE" = (
@@ -5385,12 +5054,9 @@
dir = 8;
pixel_x = -6
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/half{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"kK" = (
@@ -5695,11 +5361,7 @@
},
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"lo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5866,16 +5528,6 @@
},
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
-<<<<<<< HEAD
-"lE" = (
-/obj/machinery/floodlight,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"lF" = (
/obj/effect/landmark{
name = "lightsout"
@@ -5892,13 +5544,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/recreation_area)
-<<<<<<< HEAD
-"lH" = (
-/obj/machinery/power/thermoregulator,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"lI" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/door/window/westleft{
@@ -5944,15 +5589,12 @@
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/cmostore)
-<<<<<<< HEAD
-=======
"lM" = (
/obj/effect/floor_decal/milspec/color/blue/half{
dir = 4
},
/turf/space,
/area/space)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"lN" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -5998,19 +5640,6 @@
pixel_x = 32;
pixel_y = 6
},
-<<<<<<< HEAD
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to the shuttle bay.";
- dir = 1;
- name = "\improper Shuttle Bay";
- pixel_x = 32;
- pixel_y = -12
- },
-/obj/structure/sign/directions/stairs_down{
- dir = 1;
- pixel_x = 32;
- pixel_y = 12
-=======
/obj/structure/sign/directions/stairs_down{
dir = 1;
pixel_x = 32;
@@ -6020,7 +5649,6 @@
dir = 1;
pixel_x = 32;
pixel_y = -12
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
},
/turf/simulated/open,
/area/stellardelight/deck2/fore)
@@ -6030,12 +5658,9 @@
/obj/machinery/status_display{
pixel_y = 32
},
-<<<<<<< HEAD
-=======
/obj/machinery/light{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/cmostore)
"lS" = (
@@ -6184,20 +5809,8 @@
},
/obj/machinery/vending/loadout/loadout_misc,
/obj/machinery/atmospherics/unary/vent_pump/on,
-<<<<<<< HEAD
-<<<<<<< HEAD
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-=======
/obj/effect/landmark/vines,
/turf/simulated/floor/tiled/dark,
->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets
-=======
-/obj/effect/landmark/vines,
-/turf/simulated/floor/tiled/dark,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/area/crew_quarters/locker)
"me" = (
/obj/structure/cable/white{
@@ -6212,10 +5825,7 @@
"mg" = (
/obj/random/vendordrink,
/obj/machinery/atmospherics/unary/vent_pump/on,
-<<<<<<< HEAD
-=======
/obj/effect/landmark/vines,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/steel_ridged,
/area/stellardelight/deck2/port)
"mh" = (
@@ -6272,10 +5882,7 @@
/obj/structure/cable/green{
icon_state = "1-4"
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"mn" = (
@@ -6352,16 +5959,6 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
-<<<<<<< HEAD
-"my" = (
-/mob/living/simple_mob/animal/goat{
- name = "Ted"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/crew_quarters/kitchen)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"mz" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/effect/floor_decal/milspec/color/green/half{
@@ -7183,18 +6780,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
-<<<<<<< HEAD
-"or" = (
-/obj/structure/closet/walllocker_double/east,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/multitool,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/quartermaster/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"os" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
@@ -7528,17 +7113,6 @@
},
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/starboardaft)
-<<<<<<< HEAD
-"pi" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/mob/living/simple_mob/otie/red/chubby/cocoa,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/crew_quarters/bar)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"pj" = (
/obj/machinery/light/small{
dir = 8
@@ -7574,18 +7148,6 @@
},
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/quartermaster/storage)
-<<<<<<< HEAD
-"pm" = (
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck2/starboard)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"pn" = (
/obj/machinery/alarm/angled{
dir = 4
@@ -7943,11 +7505,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"qd" = (
/obj/item/device/radio/intercom{
dir = 1;
@@ -8419,12 +7977,9 @@
dir = 5
},
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"rd" = (
@@ -8443,26 +7998,10 @@
"re" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
-<<<<<<< HEAD
},
/obj/effect/landmark/start/cargo,
/turf/simulated/floor/tiled/eris/steel/cargo,
/area/quartermaster/storage)
-"rf" = (
-/obj/structure/cable/cyan{
- icon_state = "1-2"
- },
-/obj/structure/closet/walllocker_double/west,
-/obj/item/weapon/book/manual/engineering_particle_accelerator,
-/obj/item/weapon/book/manual/tesla_engine,
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/engineering/engine_room)
-=======
- },
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/quartermaster/storage)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"rg" = (
/obj/structure/bed/chair/sofa/corp/corner{
dir = 8
@@ -8549,10 +8088,7 @@
/area/engineering/engineering_monitoring)
"rr" = (
/obj/structure/closet/walllocker_double/south{
-<<<<<<< HEAD
-=======
color = "#8da4a6";
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
pixel_x = -5
},
/obj/structure/table/standard,
@@ -8677,23 +8213,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
-<<<<<<< HEAD
-"rA" = (
-/mob/living/simple_mob/animal/passive/opossum/poppy,
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/dark/gray_platform,
-/area/engineering/workshop)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"rB" = (
/obj/structure/particle_accelerator/particle_emitter/right{
dir = 4
@@ -8729,10 +8248,7 @@
dir = 4;
pixel_x = 24
},
-<<<<<<< HEAD
-=======
/obj/effect/landmark/vines,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/techmaint,
/area/storage/primary)
"rF" = (
@@ -8799,13 +8315,10 @@
/obj/item/device/retail_scanner/civilian,
/turf/simulated/floor/tiled,
/area/hydroponics)
-<<<<<<< HEAD
-=======
"rP" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/grass,
/area/hydroponics)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"rQ" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -8831,14 +8344,6 @@
"rT" = (
/turf/simulated/wall/bay/r_wall/steel,
/area/storage/tech)
-<<<<<<< HEAD
-"rU" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/quartermaster/qm)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"rV" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/window/bay/reinforced,
@@ -8969,12 +8474,6 @@
/area/stellardelight/deck2/fore)
"sk" = (
/obj/machinery/door/firedoor/glass,
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/angled_bay/standard/glass{
@@ -9540,11 +9039,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"tB" = (
/obj/machinery/firealarm/angled,
/obj/structure/frame,
@@ -9582,17 +9077,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/storage)
-<<<<<<< HEAD
-"tG" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/item/weapon/storage/backpack/dufflebag,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/quartermaster/qm)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"tI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -9668,17 +9152,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/stellardelight/substation/engineering)
-<<<<<<< HEAD
-"tS" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/obj/machinery/power/grid_checker,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"tT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -9795,10 +9268,7 @@
/obj/effect/floor_decal/milspec/color/green/half{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"ug" = (
@@ -9941,10 +9411,7 @@
"us" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/recharge_station,
-<<<<<<< HEAD
-=======
/obj/effect/landmark/vines,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/steel_ridged,
/area/stellardelight/deck2/starboard)
"ut" = (
@@ -10332,18 +9799,6 @@
},
/turf/simulated/floor,
/area/stellardelight/deck2/combustionworkshop)
-<<<<<<< HEAD
-"vm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/closet/walllocker_double/north,
-/obj/item/weapon/circuitboard/tesla_coil,
-/obj/item/weapon/circuitboard/tesla_coil,
-/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/engineering/engine_eva)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"vn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -10377,12 +9832,9 @@
/obj/machinery/door/airlock/angled_bay/hatch/engineering{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/steel_ridged,
/area/stellardelight/deck2/starboard)
"vq" = (
@@ -10498,12 +9950,9 @@
/area/medical/cmostore)
"vH" = (
/obj/effect/floor_decal/milspec/color/white/corner,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"vI" = (
@@ -10556,14 +10005,11 @@
/area/medical/chemistry)
"vP" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/obj/effect/landmark/vermin,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"vQ" = (
@@ -10580,12 +10026,9 @@
"vR" = (
/obj/machinery/light,
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"vS" = (
@@ -10594,12 +10037,6 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/recreation_area)
-<<<<<<< HEAD
-"vT" = (
-/turf/simulated/open,
-/area/maintenance/stellardelight/deck2/starboardaft)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"vU" = (
/obj/machinery/alarm/angled{
dir = 4
@@ -10673,13 +10110,10 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"wd" = (
@@ -10742,12 +10176,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"wm" = (
@@ -10918,12 +10349,6 @@
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
"wH" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/steel/brown_platform,
@@ -11001,10 +10426,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"wR" = (
@@ -11122,8 +10544,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-=======
"xh" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
@@ -11134,7 +10554,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"xi" = (
/obj/machinery/atmospherics/omni/atmos_filter{
name = "N2O Filter";
@@ -11181,15 +10600,12 @@
dir = 1
},
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/landmark{
name = "vinestart"
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"xo" = (
@@ -11229,16 +10645,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/storage)
"xv" = (
-<<<<<<< HEAD
-/obj/item/weapon/melee/chainofcommand,
-/obj/item/weapon/coin/phoron{
- desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo.";
- name = "limited edition phoron coin"
- },
-/obj/item/weapon/folder/blue_captain,
-/obj/item/weapon/stamp/captain,
-/obj/structure/table/darkglass,
-=======
/obj/structure/table/darkglass,
/obj/machinery/computer/skills{
pixel_x = 9
@@ -11247,7 +10653,6 @@
pixel_x = -7;
pixel_y = -2
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/carpet/blucarpet,
/area/crew_quarters/captain)
"xw" = (
@@ -11317,10 +10722,7 @@
/obj/structure/panic_button{
pixel_y = 32
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/orange/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"xC" = (
@@ -11329,11 +10731,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"xD" = (
/obj/structure/bed/chair/backed_red{
dir = 4
@@ -11354,12 +10752,6 @@
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/recreation_area)
"xG" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -11420,12 +10812,9 @@
/obj/random/tech_supply,
/obj/random/tech_supply,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-=======
/obj/machinery/recharger{
pixel_y = 5
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/techmaint,
/area/storage/primary)
"xL" = (
@@ -11546,12 +10935,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"xY" = (
@@ -11844,21 +11230,6 @@
},
/turf/simulated/floor/tiled/eris/steel/cargo,
/area/quartermaster/storage)
-<<<<<<< HEAD
-"yD" = (
-/obj/structure/closet/hydrant{
- pixel_x = -32
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck2/aftport)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"yE" = (
/obj/structure/medical_stand,
/turf/simulated/floor/tiled/eris/white/bluecorner,
@@ -12057,10 +11428,7 @@
/area/engineering/engine_room)
"zb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"zc" = (
@@ -12073,12 +11441,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
},
-<<<<<<< HEAD
-=======
/obj/machinery/light{
dir = 1
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/stellardelight/deck2/triage)
"zd" = (
@@ -12392,13 +11757,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"zT" = (
@@ -12471,10 +11833,7 @@
/obj/structure/cable/blue{
icon_state = "1-2"
},
-<<<<<<< HEAD
-=======
/obj/machinery/papershredder,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/wood,
/area/stellardelight/deck2/briefingroom)
"Ae" = (
@@ -12725,33 +12084,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-"AJ" = (
-/obj/structure/sign/directions/science{
- pixel_x = 32
- },
-/obj/structure/sign/directions/dorms{
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
- pixel_x = 32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/security{
- pixel_x = 32;
- pixel_y = 12
- },
-/obj/structure/sign/directions/stairs_down{
- pixel_x = 32;
- pixel_y = 18
- },
-/turf/simulated/open,
-/area/stellardelight/deck2/aftport)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"AK" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Master Grid";
@@ -12813,20 +12145,6 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"AO" = (
-<<<<<<< HEAD
-/obj/machinery/computer/skills{
- pixel_y = 7
- },
-/obj/machinery/button/remote/blast_door{
- id = "captaindoor";
- name = "Door Remote";
- pixel_x = -15;
- pixel_y = 2
- },
-/obj/structure/table/darkglass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
-=======
/obj/structure/table/darkglass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -12845,7 +12163,6 @@
name = "limited edition phoron coin";
pixel_x = 11;
pixel_y = -3
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
},
/turf/simulated/floor/carpet/blucarpet,
/area/crew_quarters/captain)
@@ -13141,15 +12458,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
-<<<<<<< HEAD
-"By" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"BA" = (
/obj/structure/railing/grey{
dir = 8
@@ -13236,11 +12544,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"BM" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/yellow,
@@ -13314,8 +12618,6 @@
},
/turf/simulated/floor/tiled/eris/white/cargo,
/area/stellardelight/deck2/triage)
-<<<<<<< HEAD
-=======
"BV" = (
/obj/structure/table/marble,
/obj/machinery/door/blast/shutters{
@@ -13326,7 +12628,6 @@
/obj/item/weapon/material/ashtray/glass,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"BW" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/angled_bay/external/glass{
@@ -13374,10 +12675,6 @@
/obj/structure/cable{
icon_state = "1-8"
},
-<<<<<<< HEAD
-/obj/structure/disposalpipe/segment,
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -13387,10 +12684,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/junction,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/starboardsolars)
"Cd" = (
@@ -13635,10 +12929,7 @@
/area/crew_quarters/locker)
"CG" = (
/obj/machinery/computer/ship/helm,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/green/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"CH" = (
@@ -13703,33 +12994,6 @@
/obj/effect/landmark/vermin,
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
-<<<<<<< HEAD
-"CN" = (
-/obj/structure/sign/directions/science{
- pixel_x = -32
- },
-/obj/structure/sign/directions/dorms{
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
- pixel_x = -32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/security{
- pixel_x = -32;
- pixel_y = 12
- },
-/obj/structure/sign/directions/stairs_down{
- pixel_x = -32;
- pixel_y = 18
- },
-/turf/simulated/open,
-/area/stellardelight/deck2/aftstarboard)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"CO" = (
/obj/structure/cable/orange{
icon_state = "4-8"
@@ -13867,19 +13131,12 @@
/turf/simulated/floor/tiled/techmaint,
/area/storage/primary)
"De" = (
-<<<<<<< HEAD
-/obj/structure/flora/pottedplant/decorative,
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/device/radio/intercom{
dir = 8;
pixel_x = -24
},
-<<<<<<< HEAD
-=======
/obj/structure/flora/pottedplant/decorative,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
"Df" = (
@@ -13900,10 +13157,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/white/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"Di" = (
@@ -13951,10 +13205,7 @@
"Dq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"Dr" = (
@@ -13980,10 +13231,6 @@
/turf/simulated/floor/airless,
/area/stellardelight/deck2/exterior)
"Du" = (
-<<<<<<< HEAD
-/obj/structure/closet/secure_closet/personal,
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/effect/floor_decal/industrial/outline,
/obj/effect/floor_decal/steeldecal/steel_decals9,
/obj/effect/floor_decal/steeldecal/steel_decals9{
@@ -13995,26 +13242,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-<<<<<<< HEAD
-/obj/item/clothing/shoes/black,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-<<<<<<< HEAD
-/turf/simulated/floor/holofloor/tiled/dark,
-=======
-/obj/structure/undies_wardrobe,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets
-=======
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/obj/structure/undies_wardrobe,
/obj/effect/landmark/vermin,
/turf/simulated/floor/tiled/dark,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/area/crew_quarters/locker)
"Dv" = (
/obj/structure/cable/white{
@@ -14161,22 +13394,6 @@
},
/turf/simulated/floor,
/area/medical/cryo)
-<<<<<<< HEAD
-"DK" = (
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Engine - Core";
- charge = 2e+006;
- input_attempt = 1;
- input_level = 100000;
- output_level = 200000
- },
-/obj/structure/cable/cyan{
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"DL" = (
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/recreation_area)
@@ -14202,19 +13419,12 @@
/turf/simulated/floor/glass/reinforced,
/area/stellardelight/deck2/fore)
"DO" = (
-<<<<<<< HEAD
-/obj/structure/flora/pottedplant/decorative,
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/device/radio/intercom{
dir = 4;
pixel_x = 24
},
-<<<<<<< HEAD
-=======
/obj/structure/flora/pottedplant/decorative,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
"DP" = (
@@ -14337,13 +13547,6 @@
},
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/starboardsolars)
-<<<<<<< HEAD
-"Eb" = (
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Ec" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
@@ -14570,10 +13773,7 @@
pixel_x = -6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"EC" = (
@@ -14872,15 +14072,6 @@
/obj/structure/cable/orange{
icon_state = "2-4"
},
-<<<<<<< HEAD
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/airless,
/area/stellardelight/deck2/exterior)
"Fi" = (
@@ -14938,7 +14129,6 @@
/area/quartermaster/qm)
"Fo" = (
/obj/machinery/power/solar_control{
-<<<<<<< HEAD
dir = 4
},
/obj/structure/cable{
@@ -14949,40 +14139,6 @@
},
/turf/simulated/floor,
/area/maintenance/stellardelight/deck2/portsolars)
-"Fp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/table/steel_reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Bridge"
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/structure/closet/walllocker_double/north{
- dir = 4;
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/item/weapon/paper/dockingcodes/sd,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/bridge)
-=======
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck2/portsolars)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Fq" = (
/obj/structure/table/standard,
/obj/item/device/healthanalyzer,
@@ -15033,10 +14189,7 @@
/obj/machinery/light/floortube{
pixel_y = -6
},
-<<<<<<< HEAD
-=======
/obj/item/weapon/material/ashtray/glass,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/carpet,
/area/crew_quarters/recreation_area)
"Fx" = (
@@ -15246,12 +14399,9 @@
"FP" = (
/obj/machinery/light,
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
"FQ" = (
@@ -15859,10 +15009,7 @@
"Hb" = (
/obj/item/modular_computer/console/preset/command,
/obj/machinery/camera/network/command,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"Hc" = (
@@ -15934,11 +15081,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Hk" = (
/obj/machinery/camera/network/halls{
dir = 4
@@ -16187,6 +15330,8 @@
/obj/structure/sign/poster{
dir = 8
},
+/obj/item/device/healthanalyzer/guide,
+/obj/item/device/healthanalyzer/guide,
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/stellardelight/deck2/triage)
"HN" = (
@@ -16323,12 +15468,9 @@
dir = 1
},
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"Id" = (
@@ -16443,11 +15585,8 @@
},
/obj/random/vendordrink,
/obj/machinery/atmospherics/unary/vent_pump/on,
-<<<<<<< HEAD
-=======
/obj/machinery/firealarm/angled,
/obj/effect/landmark/vermin,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/aftstarboard)
"Il" = (
@@ -16544,10 +15683,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"It" = (
@@ -16606,17 +15742,6 @@
},
/turf/simulated/floor/airless,
/area/engineering/engine_room)
-<<<<<<< HEAD
-"Iy" = (
-/obj/structure/table/reinforced,
-/obj/random/powercell,
-/obj/random/tech_supply,
-/obj/structure/closet/walllocker_double/west,
-/obj/item/device/t_scanner,
-/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/engineering/workshop)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Iz" = (
/obj/item/stack/cable_coil/yellow,
/turf/simulated/floor/airless,
@@ -16723,12 +15848,9 @@
/obj/machinery/keycard_auth{
pixel_y = 2
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/half{
dir = 10
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"IN" = (
@@ -16743,13 +15865,6 @@
},
/turf/simulated/floor/tiled/eris/steel/cargo,
/area/quartermaster/storage)
-<<<<<<< HEAD
-"IP" = (
-/obj/machinery/shield_gen/external,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"IQ" = (
/obj/structure/table/glass,
/obj/machinery/door/window/southright{
@@ -17085,8 +16200,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
-<<<<<<< HEAD
-=======
"JG" = (
/obj/effect/floor_decal/steeldecal/steel_decals5,
/obj/structure/disposalpipe/segment{
@@ -17094,7 +16207,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"JH" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/cable/green{
@@ -17111,10 +16223,7 @@
/area/maintenance/stellardelight/deck2/portfore)
"JI" = (
/obj/effect/floor_decal/milspec/color/green/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"JJ" = (
@@ -17217,8 +16326,6 @@
/obj/effect/landmark/start/chemist,
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/chemistry)
-<<<<<<< HEAD
-=======
"JW" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -17229,7 +16336,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"JX" = (
/obj/machinery/shield_gen,
/turf/simulated/floor/plating,
@@ -17504,46 +16610,6 @@
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/engine_eva)
-<<<<<<< HEAD
-"KC" = (
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/structure/table/standard,
-/obj/machinery/recharger,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/storage/art)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"KD" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -17655,12 +16721,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/engineering/atmos/monitoring)
"KR" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -17764,12 +16824,9 @@
/obj/item/modular_computer/console/preset/medical{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/white/half{
dir = 6
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"Le" = (
@@ -17929,12 +16986,9 @@
/area/engineering/engine_eva)
"Lx" = (
/obj/structure/flora/pottedplant/orientaltree,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/orange/corner{
dir = 8
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"Ly" = (
@@ -18026,12 +17080,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"LI" = (
@@ -18105,10 +17156,7 @@
pixel_x = 2;
pixel_y = 7
},
-<<<<<<< HEAD
-=======
/obj/item/weapon/material/ashtray/glass,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
"LQ" = (
@@ -18348,12 +17396,6 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck2/port)
-"Mp" = (
-/obj/machinery/computer/arcade/orion_trail,
-=======
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -18362,7 +17404,6 @@
/area/stellardelight/deck2/port)
"Mp" = (
/obj/machinery/computer/arcade/battle,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
"Mq" = (
@@ -18384,8 +17425,6 @@
/obj/structure/low_wall/bay/reinforced/orange,
/turf/simulated/floor,
/area/engineering/storage)
-<<<<<<< HEAD
-=======
"Ms" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -18402,7 +17441,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Mt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -18444,12 +17482,9 @@
/obj/item/device/radio/intercom{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/corner{
dir = 8
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"Mx" = (
@@ -18622,11 +17657,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"MS" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -18731,8 +17762,6 @@
},
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
-<<<<<<< HEAD
-=======
"Nd" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -18740,7 +17769,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Ne" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/down{
@@ -18815,10 +17843,7 @@
/area/engineering/locker_room)
"Nn" = (
/obj/machinery/computer/ship/engines,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/green/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"No" = (
@@ -18905,16 +17930,6 @@
/area/maintenance/stellardelight/deck2/starboardsolars)
"Nw" = (
/obj/effect/floor_decal/industrial/outline/yellow,
-<<<<<<< HEAD
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck2/portfore)
-=======
/obj/machinery/atmospherics/pipe/zpipe/up/supply,
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
/obj/machinery/door/firedoor/glass,
@@ -18935,7 +17950,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Ny" = (
/obj/machinery/atmospherics/portables_connector{
dir = 1
@@ -19482,22 +18496,10 @@
/turf/simulated/floor/tiled/eris/cafe,
/area/crew_quarters/kitchen)
"OP" = (
-<<<<<<< HEAD
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-=======
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/obj/effect/landmark/vines,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/quartermaster/storage)
"OQ" = (
@@ -19664,12 +18666,9 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-<<<<<<< HEAD
-=======
/obj/machinery/recharger{
pixel_y = 5
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/steel/brown_platform,
/area/crew_quarters/bar)
"Pf" = (
@@ -19784,8 +18783,6 @@
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/reception)
-<<<<<<< HEAD
-=======
"Ps" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
@@ -19794,18 +18791,13 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Pt" = (
/obj/machinery/alarm/angled,
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Pu" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -20139,12 +19131,9 @@
pixel_x = -32;
pixel_y = -32
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/junction{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"Qe" = (
@@ -20161,11 +19150,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Qg" = (
/obj/structure/cable/orange{
icon_state = "1-8"
@@ -20459,19 +19444,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/storage)
-<<<<<<< HEAD
-"QM" = (
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/obj/effect/floor_decal/milspec/color/black/corner,
-/obj/effect/floor_decal/milspec/color/silver/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck2/fore)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"QN" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
@@ -20675,12 +19647,9 @@
"Rf" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/book/manual/sd_guide,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/blue/half{
dir = 6
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"Rh" = (
@@ -21010,15 +19979,6 @@
},
/turf/simulated/wall/bay/r_wall/steel,
/area/engineering/engine_room)
-<<<<<<< HEAD
-<<<<<<< HEAD
-"RZ" = (
-/turf/simulated/open,
-/area/maintenance/stellardelight/deck2/portaft)
-=======
->>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Sb" = (
/turf/simulated/floor/tiled/eris/dark/danger,
/area/engineering/engine_room)
@@ -21169,12 +20129,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/stellardelight/deck2/fuelstorage)
"Sv" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -21272,11 +20226,7 @@
/turf/simulated/wall/bay/r_wall/steel,
/area/maintenance/stellardelight/deck2/portfore)
"SF" = (
-<<<<<<< HEAD
-/obj/machinery/computer/arcade/battle,
-=======
/obj/machinery/computer/arcade/clawmachine,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
"SG" = (
@@ -21435,12 +20385,9 @@
/area/engineering/locker_room)
"SX" = (
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/port)
"SY" = (
@@ -21743,13 +20690,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"TJ" = (
@@ -21760,11 +20704,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"TK" = (
/obj/structure/closet/secure_closet/cargotech,
/obj/item/weapon/stamp/cargo,
@@ -21817,14 +20757,11 @@
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
/area/engineering/engine_eva)
-<<<<<<< HEAD
-=======
"TP" = (
/obj/structure/flora/pottedplant/orientaltree,
/obj/effect/floor_decal/milspec/color/white/corner,
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"TQ" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 4
@@ -21896,11 +20833,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Ub" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -22016,12 +20949,6 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/steel/brown_platform,
@@ -22125,10 +21052,7 @@
/obj/effect/landmark{
name = "lightsout"
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/monotile,
/area/hydroponics)
"Uz" = (
@@ -22150,12 +21074,9 @@
name = "lightsout"
},
/obj/machinery/hologram/holopad,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"UB" = (
@@ -22338,15 +21259,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/storage/tech)
-<<<<<<< HEAD
-"UW" = (
-/obj/structure/sign/poster{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/dark/cargo,
-/area/crew_quarters/recreation_area)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"UX" = (
/obj/structure/table/gamblingtable,
/turf/simulated/floor/carpet,
@@ -22467,11 +21379,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/quartermaster/storage)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Vl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 4
@@ -22501,13 +21409,6 @@
"Vm" = (
/turf/simulated/floor/airless,
/area/stellardelight/deck2/fuelstorage)
-<<<<<<< HEAD
-"Vn" = (
-/mob/living/simple_mob/vore/alienanimals/teppi/baby,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Vo" = (
/turf/simulated/wall/bay/r_wall/orange,
/area/engineering/workshop)
@@ -22660,10 +21561,7 @@
req_one_access = list(19);
stripe_color = "#f7d35c"
},
-<<<<<<< HEAD
-=======
/obj/machinery/door/firedoor/glass,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/steel_ridged,
/area/stellardelight/deck2/briefingroom)
"VG" = (
@@ -22824,12 +21722,9 @@
/area/stellardelight/deck2/fore)
"VZ" = (
/obj/effect/floor_decal/milspec/color/white/half,
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/central)
"Wa" = (
@@ -22889,10 +21784,7 @@
/area/engineering/workshop)
"Wi" = (
/obj/machinery/computer/crew,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/white/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"Wj" = (
@@ -23028,10 +21920,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/starboard)
"Wz" = (
@@ -24042,10 +22931,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/structure/disposalpipe/segment,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"YK" = (
@@ -24058,12 +22944,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
-<<<<<<< HEAD
-=======
/obj/structure/sign/poster{
dir = 8
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/hydroponics)
"YL" = (
@@ -24091,8 +22974,6 @@
},
/turf/simulated/floor/tiled/eris/dark/cargo,
/area/crew_quarters/recreation_area)
-<<<<<<< HEAD
-=======
"YO" = (
/obj/structure/table/gamblingtable,
/obj/machinery/recharger{
@@ -24100,7 +22981,6 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/recreation_area)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"YP" = (
/obj/structure/disposalpipe/junction{
dir = 8
@@ -24278,12 +23158,9 @@
pixel_x = -2;
pixel_y = -2
},
-<<<<<<< HEAD
-=======
/obj/machinery/light{
dir = 8
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/medical/cmostore)
"Zj" = (
@@ -24322,18 +23199,6 @@
},
/turf/simulated/floor/tiled,
/area/stellardelight/deck2/fore)
-<<<<<<< HEAD
-"Zn" = (
-/obj/structure/cable/yellow{
- icon_state = "32-8"
- },
-/obj/structure/sign/department/miner_dock{
- pixel_y = 32
- },
-/turf/simulated/open,
-/area/quartermaster/storage)
-=======
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"Zo" = (
/obj/machinery/light{
dir = 8
@@ -24414,12 +23279,9 @@
/obj/item/modular_computer/console/preset/engineering{
dir = 8
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/orange/half{
dir = 10
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/bridge)
"Zy" = (
@@ -24458,12 +23320,9 @@
/obj/item/roller{
pixel_y = 16
},
-<<<<<<< HEAD
-=======
/obj/machinery/light{
dir = 8
},
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/stellardelight/deck2/triage)
"ZE" = (
@@ -24482,11 +23341,7 @@
pixel_y = 1
},
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/stellardelight/deck2/aftstarboard)
-=======
/area/stellardelight/deck2/aftport)
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"ZG" = (
/obj/structure/cable/orange{
icon_state = "4-8"
@@ -24622,10 +23477,7 @@
/area/engineering/atmos/monitoring)
"ZU" = (
/obj/machinery/computer/ship/sensors,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/milspec/color/green/half,
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled/eris/dark/gray_platform,
/area/bridge)
"ZV" = (
@@ -24676,22547 +23528,6 @@
},
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/recreation_area)
-<<<<<<< HEAD
-
-(1,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(2,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(3,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(4,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(5,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(6,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(7,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(8,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(9,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(10,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(11,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(12,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(13,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(14,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(15,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(16,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(17,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(18,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(19,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(20,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(21,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(22,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(23,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(24,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(25,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Tt
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(26,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(27,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(28,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(29,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(30,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(31,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(32,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(33,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(34,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(35,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(36,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-iU
-SO
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-CQ
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(37,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Sk
-Le
-Le
-Le
-Le
-Le
-hI
-Dt
-Jm
-Jm
-Jm
-Jm
-Jm
-sR
-Jm
-Jm
-Jm
-Jm
-Jm
-Jm
-Us
-Jm
-nI
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(38,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-uu
-oy
-ov
-ov
-ov
-Ff
-xR
-ov
-ov
-Ff
-Ff
-ov
-ov
-Wb
-Au
-QI
-tZ
-QI
-tZ
-QI
-eW
-QI
-Pu
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(39,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-Le
-Le
-Le
-wg
-Le
-Le
-Le
-Le
-Le
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-kL
-ov
-ub
-VB
-vV
-NH
-Zs
-QO
-kz
-dH
-zu
-IF
-vk
-UI
-ui
-Pu
-Pu
-Pu
-Pu
-Pu
-Pu
-wu
-Pu
-Pu
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(40,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Pp
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-iU
-Le
-Le
-Le
-Le
-Le
-Vc
-Le
-Fh
-Le
-kL
-NL
-NL
-NL
-NL
-NL
-NL
-Iz
-NL
-NL
-CP
-MX
-Le
-Sj
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-ZG
-NL
-ov
-cq
-ub
-yN
-gZ
-aq
-Zs
-lF
-op
-Tr
-pB
-sF
-Jd
-Kp
-Pu
-Pu
-Pu
-Pu
-Pu
-Pu
-wu
-Pu
-Pu
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(41,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-ZG
-yH
-yH
-yH
-yH
-yH
-yH
-NL
-yH
-yH
-yH
-yH
-yH
-ZG
-NL
-Wb
-Wb
-Wb
-Wb
-Wb
-NL
-NL
-ZG
-tc
-ov
-Pw
-gs
-If
-VO
-kP
-kP
-kP
-Sg
-YT
-Ap
-AD
-ov
-Qw
-ma
-Qw
-ma
-Qw
-ma
-Pu
-wu
-Pu
-Pu
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(42,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-ZG
-iH
-Uh
-Uh
-Uh
-Uh
-Uh
-NL
-Ig
-Ig
-Ig
-Ig
-BE
-CP
-Le
-Le
-Le
-Le
-Le
-rW
-GJ
-GJ
-vJ
-mI
-ov
-wp
-wp
-wp
-Fx
-zi
-BG
-Kd
-VI
-DX
-Fa
-jE
-uk
-IU
-IU
-uk
-uk
-uk
-NL
-Pu
-wu
-Pu
-Pu
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(43,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-se
-dk
-dk
-dk
-dk
-dk
-dk
-dk
-bw
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-yy
-uK
-bH
-mZ
-Mx
-Cq
-Cq
-Cq
-Cq
-NL
-Cq
-Cq
-Cq
-Cq
-Cq
-NL
-Jh
-Jh
-Jh
-Jh
-mI
-sx
-DB
-rs
-DB
-DB
-Hm
-Hm
-Hm
-wp
-wp
-aD
-wp
-MQ
-vW
-Ny
-vw
-nA
-EF
-In
-hu
-BZ
-TF
-uk
-uk
-Qw
-ms
-Qw
-ma
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(44,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-jx
-NL
-NL
-NL
-NL
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-CP
-Le
-SO
-qG
-Uh
-Uh
-Uh
-NL
-Ig
-Ig
-Ig
-Ig
-BE
-Wb
-Wb
-Jh
-Jh
-mI
-mI
-uR
-DB
-DB
-St
-Wo
-bR
-xr
-Gh
-nW
-RL
-DY
-Hm
-Hm
-Hm
-Hm
-Hm
-mu
-oE
-eU
-TH
-qO
-pO
-Pm
-uk
-uk
-ZG
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(45,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-Ar
-NL
-jx
-NL
-NL
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-CP
-SO
-Mx
-Mx
-Mx
-NL
-Mx
-Mx
-Mx
-Mx
-Mx
-Wb
-Wb
-Wb
-mI
-mI
-fQ
-th
-Wo
-XW
-Qg
-eq
-eq
-iA
-eq
-eq
-be
-ZT
-Hm
-Em
-Am
-Et
-Am
-nR
-Rw
-od
-UY
-WJ
-pO
-HI
-Av
-dV
-mh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(46,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-se
-dk
-dk
-dk
-dk
-dk
-dk
-UT
-cT
-nP
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-CP
-SO
-NL
-NL
-Cf
-NL
-NL
-NL
-NL
-Jh
-Jh
-Wb
-BT
-BT
-eq
-eq
-eq
-eq
-eq
-eq
-eq
-nE
-JS
-NK
-eq
-sz
-to
-dT
-Ag
-Fl
-sp
-hK
-Pq
-oE
-Kq
-ge
-IA
-eG
-Ei
-js
-uk
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(47,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-bD
-yK
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-NL
-jx
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-ZG
-Wb
-ie
-zI
-ie
-Jh
-Wb
-Wb
-Jh
-Jh
-Jh
-BT
-cx
-ez
-QH
-eq
-ql
-ez
-mB
-eq
-nE
-JS
-NK
-eq
-XS
-kM
-ZS
-VA
-km
-Na
-Ul
-Fv
-GD
-Ck
-Jt
-ut
-XG
-PJ
-Kk
-rb
-mR
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(48,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-jx
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-ZG
-Jh
-aa
-eb
-Fz
-Fz
-Fz
-jL
-Wb
-Jh
-FD
-BT
-cx
-JS
-QH
-eq
-ql
-JS
-mB
-eq
-ny
-xu
-oA
-oo
-Er
-la
-la
-tz
-eu
-ig
-tN
-mx
-oE
-tD
-UY
-OK
-pO
-Qu
-fj
-Sz
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(49,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-KL
-hO
-SE
-KL
-aT
-aT
-aT
-KL
-aT
-KL
-SE
-KL
-aT
-aT
-aT
-KL
-aT
-aT
-KL
-aT
-aT
-aT
-KL
-KL
-KL
-KL
-KL
-WP
-Br
-hg
-WP
-rR
-rR
-rR
-rR
-QY
-QY
-rR
-rR
-rR
-rR
-rR
-ie
-Tw
-Fz
-Pk
-Px
-sa
-Fo
-Te
-CO
-ux
-ux
-MC
-BT
-Yv
-xu
-oA
-oo
-xW
-xu
-oA
-mA
-kW
-eI
-WS
-Un
-Ab
-Ab
-Ek
-QC
-uN
-gy
-SS
-Dg
-oE
-ZN
-pY
-DE
-sT
-WM
-fq
-Sz
-QW
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(50,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-KL
-KL
-Md
-Qx
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-KD
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Gv
-Uv
-VD
-yz
-KL
-WP
-Zc
-fX
-WP
-rR
-rR
-RE
-um
-iz
-sn
-kg
-RZ
-dC
-cV
-iz
-qC
-zv
-Xm
-eE
-pk
-Fe
-PU
-GO
-GK
-ZJ
-My
-PW
-eq
-Wv
-xi
-oQ
-oQ
-zM
-Mf
-oQ
-oQ
-wA
-ah
-ue
-As
-Tq
-oU
-xN
-Zq
-VV
-et
-Ca
-Yo
-UG
-UG
-Od
-UG
-UG
-cv
-cv
-cv
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(51,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-Wb
-Jh
-Jh
-hO
-Md
-Ub
-ch
-ch
-ch
-ch
-ch
-ch
-ch
-KK
-KK
-KK
-kR
-kR
-kR
-KK
-kR
-kR
-KK
-kR
-kR
-kR
-KK
-KK
-OQ
-Ev
-KL
-WP
-yp
-bI
-WP
-rR
-EG
-Yh
-Yh
-Yh
-AP
-FI
-Yh
-Yh
-uL
-Yh
-Ym
-qY
-fw
-uc
-JP
-DH
-CA
-NB
-Lf
-dO
-AU
-dx
-lh
-gM
-oe
-AX
-Dc
-he
-CR
-AX
-AX
-he
-AX
-ao
-AX
-Qr
-ag
-XK
-qN
-CM
-qw
-iJ
-Xu
-UG
-di
-Iq
-EQ
-Zt
-qM
-Vm
-mq
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(52,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-CZ
-dk
-dk
-dk
-dk
-Vd
-Zy
-oD
-ch
-ch
-Bk
-Wa
-vh
-Wa
-OM
-hl
-rO
-sV
-ZW
-Wp
-LO
-rt
-Lz
-bb
-kG
-sd
-Vz
-oz
-pd
-uA
-KK
-Gq
-Cu
-hO
-WP
-VT
-fX
-WP
-QY
-Kb
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-Bw
-bh
-wB
-Bw
-Bw
-Bw
-Bw
-bg
-bF
-Wx
-hN
-qg
-ac
-Wx
-ez
-ac
-QK
-ff
-nG
-CH
-AW
-LU
-ja
-Eq
-VW
-Cn
-mD
-vD
-qL
-UG
-JM
-GU
-Su
-LG
-AV
-Vm
-Vm
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-"}
-(53,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-se
-nP
-NL
-Jh
-Jh
-Xk
-Xk
-kX
-Gi
-wL
-ch
-DD
-my
-AC
-DP
-BF
-hl
-pN
-yv
-Uo
-iZ
-ES
-ea
-Qo
-pX
-iZ
-ej
-WN
-ok
-dP
-AR
-KK
-si
-pS
-hO
-WP
-LM
-LM
-WP
-QY
-Kb
-Bw
-YQ
-Gc
-dX
-fr
-MD
-ox
-MD
-zp
-eL
-fr
-vU
-WV
-MD
-fR
-IC
-TZ
-cn
-TZ
-dR
-WK
-eq
-RN
-gY
-qg
-ac
-vB
-Nl
-wI
-Ai
-RN
-tF
-IN
-Ki
-Ya
-vF
-An
-uB
-XI
-im
-vn
-qF
-UG
-Bd
-No
-zY
-yg
-AV
-cv
-cv
-Ds
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(54,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-se
-nP
-NL
-Jh
-Jh
-Xk
-Xk
-Fm
-ki
-Yp
-uW
-ch
-gQ
-cu
-VH
-LW
-Ha
-hl
-af
-dQ
-Do
-iZ
-GM
-lf
-mz
-sA
-iZ
-ii
-WN
-bU
-LS
-Jp
-KK
-JH
-Fc
-KL
-wn
-sW
-sW
-wn
-rR
-Rz
-Bw
-vX
-Ec
-kI
-ti
-ti
-ti
-ti
-IB
-ti
-ti
-ti
-ti
-qI
-xe
-MY
-ti
-ti
-ti
-Es
-te
-eq
-Mu
-xu
-oA
-TA
-sU
-xu
-oA
-NX
-xl
-HX
-OH
-zd
-YE
-ly
-go
-UD
-Lk
-oq
-om
-IH
-WU
-zV
-Tu
-Js
-Sc
-PB
-NL
-NL
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(55,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-se
-nP
-NL
-Wb
-Jh
-Xk
-Xk
-rn
-oO
-CE
-IW
-VL
-hl
-hl
-hl
-hl
-Zb
-hl
-hl
-Mn
-oj
-if
-vP
-Uy
-ap
-zb
-EA
-wP
-JI
-fa
-gc
-Vn
-dP
-KK
-Nw
-Iw
-KL
-Bw
-BW
-BW
-Bw
-rR
-Kb
-Bw
-mg
-pL
-CJ
-hr
-Cj
-Cj
-Cj
-Cj
-Cj
-Cj
-ZQ
-Cj
-tP
-tU
-jd
-Cj
-Bf
-NG
-cO
-Bx
-eq
-CT
-JS
-BY
-eq
-cE
-JS
-Ch
-eq
-mf
-sb
-wZ
-eq
-OT
-ty
-lt
-OY
-nZ
-Dm
-CB
-qF
-UG
-Rl
-Sd
-ZE
-MP
-PB
-cv
-cv
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(56,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-bD
-yK
-NL
-Wb
-Wb
-Wb
-Xk
-OA
-dm
-YC
-lz
-hZ
-lr
-iN
-YK
-gG
-bq
-YJ
-uf
-bt
-Dq
-Is
-iY
-iY
-iY
-Yw
-iZ
-iZ
-iZ
-Kc
-WN
-ok
-dP
-AR
-KK
-bP
-kK
-Hz
-gm
-PG
-PG
-Cb
-Rp
-Ws
-Bw
-Bw
-Ec
-wF
-Mo
-xp
-xp
-QB
-QB
-QB
-xp
-Hr
-Hr
-Hr
-Hr
-Hr
-Hr
-Hr
-Ec
-cO
-Bx
-eq
-CT
-kQ
-BY
-eq
-cE
-uO
-Ch
-eq
-mf
-oL
-wZ
-eq
-Cz
-Hs
-kn
-Zp
-dt
-Ov
-al
-qF
-UG
-ot
-MG
-Su
-ay
-wm
-Vm
-mq
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(57,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-jx
-Wb
-Wb
-Jh
-Jh
-Xk
-nC
-Ta
-Bn
-yf
-IW
-Yj
-Bj
-ml
-BH
-BH
-jM
-BH
-YH
-Ro
-sE
-bc
-Ue
-SY
-zr
-bS
-aS
-aG
-RA
-qp
-dF
-sh
-mS
-KK
-mY
-qy
-UR
-Aa
-sg
-sg
-pr
-Bw
-FS
-yP
-Bw
-Ko
-wF
-SX
-xp
-qn
-hC
-Dx
-yo
-XZ
-Hr
-Oj
-Ht
-Fq
-Qy
-wd
-Hr
-Gs
-yd
-pv
-eq
-eq
-eq
-eq
-eq
-eq
-eq
-eq
-eq
-eq
-nr
-yl
-yl
-WA
-cl
-pT
-vx
-FL
-gB
-HC
-fG
-UG
-DF
-RU
-Wj
-DR
-AV
-Vm
-Vm
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(58,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-Jh
-Jh
-Jh
-Jh
-Zl
-QG
-Bm
-Ak
-Pg
-IW
-rr
-hl
-MU
-jo
-jo
-aj
-jo
-MU
-MU
-MU
-jo
-jo
-MU
-Sy
-MU
-gx
-lI
-MU
-jo
-jo
-yX
-jo
-KK
-Bw
-Bw
-UR
-pw
-Yk
-Ce
-pw
-Bw
-Bw
-Bw
-Bw
-Ec
-wF
-SX
-ip
-so
-Nu
-EC
-ws
-va
-Hr
-hw
-hV
-RM
-Om
-zt
-Hr
-jt
-gK
-eP
-yY
-fn
-HG
-bk
-Mc
-Mc
-yD
-SQ
-nX
-SQ
-ym
-Qn
-nw
-xx
-TW
-Hm
-BQ
-FL
-gB
-yB
-qF
-UG
-UG
-Jo
-eg
-eg
-tk
-cv
-cv
-Ds
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(59,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-lZ
-Di
-Jh
-Jh
-Jh
-Zl
-gr
-Ta
-OO
-Vv
-IW
-pI
-Gy
-Zo
-ND
-ND
-au
-ND
-Sr
-zO
-Qe
-Qe
-Qe
-Qe
-PZ
-GY
-Qe
-Qe
-Hk
-Qe
-Qe
-Qe
-Qe
-nS
-Vw
-eL
-zP
-VP
-VP
-VP
-MD
-eL
-pA
-EI
-MD
-WF
-wF
-SX
-ip
-Gr
-dh
-Fr
-ws
-tv
-Hr
-zU
-Ee
-Bh
-iD
-ca
-Hr
-xm
-dj
-YS
-YS
-YS
-ul
-YS
-YS
-YS
-YS
-YS
-dz
-YS
-EW
-gf
-DQ
-QR
-zR
-Hm
-wM
-FL
-eH
-cM
-XV
-Tf
-aZ
-xU
-jV
-KQ
-ey
-Le
-Le
-gF
-Ii
-Sj
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(60,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-lZ
-Di
-Wb
-Xk
-Xk
-cW
-gj
-pz
-Bo
-cw
-Ta
-Gy
-Gj
-jC
-XC
-XC
-XC
-XC
-XC
-XC
-XC
-ih
-ZM
-bN
-MV
-XO
-XO
-XO
-XO
-XO
-hd
-uT
-uT
-jw
-RR
-YV
-VP
-VP
-VP
-Ve
-Ve
-Ve
-Ve
-Ve
-Ve
-wF
-SX
-ip
-mP
-Tp
-HB
-fb
-jI
-Hr
-dD
-sK
-Ge
-yU
-xj
-Hr
-nB
-cj
-FX
-CD
-CD
-eD
-CD
-CD
-FX
-FX
-gw
-ci
-FX
-JC
-zf
-CD
-pq
-cz
-Hm
-vx
-bo
-Uk
-xt
-tI
-ga
-qx
-MJ
-Gl
-FK
-qq
-Wb
-Wb
-NL
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(61,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-NL
-Xk
-iC
-Ta
-Ta
-Ta
-GB
-zJ
-ZL
-Ng
-gl
-aB
-TM
-HR
-of
-cP
-yh
-QM
-Xe
-qo
-ek
-mN
-kV
-Zr
-Zr
-Zr
-Zr
-sO
-Xi
-ua
-Rj
-Vw
-mi
-bA
-MA
-tL
-VP
-bA
-bA
-bA
-mb
-bA
-BP
-wF
-FP
-xp
-ke
-lc
-Dn
-RW
-jX
-Hr
-Dy
-uv
-EL
-IZ
-OC
-Hr
-Hr
-Oi
-bY
-Ef
-kt
-wY
-Ip
-ZV
-bY
-FX
-FX
-ci
-Hl
-do
-do
-do
-Vj
-do
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-pK
-Hm
-Hm
-SK
-LE
-LE
-LE
-LE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(62,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-jx
-NL
-Xk
-iF
-Pn
-Pn
-Pn
-Yu
-nU
-Pn
-HJ
-RD
-KH
-zz
-nt
-nt
-nt
-nt
-nt
-kE
-QV
-nt
-nt
-nt
-DN
-xP
-Wq
-Vr
-Wk
-Xi
-RT
-nK
-nK
-nK
-Rd
-xd
-xd
-ug
-ug
-ug
-ug
-xd
-xd
-oH
-SD
-fv
-xp
-xp
-xH
-xp
-xp
-xp
-Hr
-Hr
-Hr
-Hr
-Bl
-Hr
-Hr
-Hr
-Gx
-DA
-AJ
-Ef
-wY
-dL
-qT
-AL
-sI
-FX
-zl
-Ao
-do
-ME
-bl
-hU
-do
-vC
-UO
-PC
-PL
-PC
-UO
-Pj
-sG
-pb
-Jr
-Ur
-EH
-yT
-UZ
-yC
-LE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(63,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-jx
-HQ
-HQ
-YD
-EV
-EV
-EV
-ZC
-FM
-EV
-Sx
-po
-td
-jF
-nt
-Ji
-YN
-De
-QZ
-Ho
-aE
-QJ
-WR
-nt
-Rq
-Rq
-Rq
-Rq
-Jq
-Xi
-RT
-nK
-fV
-nK
-zH
-xd
-mH
-Ad
-rF
-GV
-GV
-OD
-xd
-Mj
-Da
-vH
-PE
-Qh
-bi
-Nh
-Vb
-ZD
-HM
-FH
-bu
-Qp
-Ih
-KV
-jK
-Vb
-QP
-QP
-QP
-QP
-QP
-QP
-QP
-QP
-QP
-ei
-Bt
-eB
-do
-Zn
-Lm
-YP
-do
-Az
-NN
-qu
-re
-pc
-NN
-NN
-Yg
-Fi
-EK
-eR
-EK
-qt
-Wf
-ID
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(64,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-bD
-dk
-dM
-ir
-pn
-QS
-QS
-QS
-BJ
-Fb
-TC
-DI
-Sx
-jr
-KH
-zz
-nt
-Mp
-dY
-cC
-iO
-mt
-Cy
-mt
-Yc
-nt
-Rq
-Rq
-lQ
-Jq
-Xi
-kF
-nK
-nK
-nK
-Rd
-xd
-Pl
-OL
-cJ
-cb
-Al
-Fk
-Uu
-Mj
-Da
-Ib
-PE
-pM
-Xb
-hp
-Dk
-ds
-hx
-hx
-Ay
-LZ
-bJ
-Ll
-hx
-EU
-QP
-QN
-Zi
-tM
-ko
-Ia
-XY
-pg
-QP
-cs
-ci
-eB
-do
-WG
-Hu
-ak
-Me
-ar
-uI
-Sn
-wk
-Cm
-Qj
-AZ
-ht
-ye
-DZ
-DZ
-DZ
-DZ
-DZ
-in
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(65,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-Gn
-MK
-YU
-Nc
-Nc
-dU
-TC
-YU
-rV
-VG
-KH
-HO
-nt
-GL
-mt
-mt
-mt
-mt
-Cy
-mt
-SI
-nt
-nt
-nt
-nt
-nt
-PA
-Xi
-cY
-nK
-nK
-So
-lD
-xd
-xd
-xd
-cg
-CK
-cb
-Fk
-Uu
-ll
-xZ
-xn
-PE
-dK
-me
-gH
-kb
-iW
-uh
-Ox
-fO
-Jy
-nT
-yk
-Mb
-ww
-QP
-Uq
-Kf
-Kf
-XF
-VS
-XY
-pg
-QP
-Rv
-ci
-eB
-do
-WG
-gb
-kx
-Rx
-Jj
-PH
-wE
-es
-Rx
-Vi
-pD
-jQ
-jQ
-jQ
-Eu
-jQ
-jQ
-jQ
-Qa
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(66,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-wG
-MK
-YU
-Gn
-CY
-Gn
-TC
-YU
-rV
-lT
-KH
-Ct
-nt
-WC
-mt
-mt
-mt
-mt
-jv
-ct
-Lq
-ct
-HE
-xE
-yG
-nt
-kr
-Mi
-RT
-nK
-xB
-Zj
-Sp
-Io
-kJ
-xd
-dZ
-er
-Gg
-PP
-xd
-dp
-Da
-VZ
-PE
-PE
-kZ
-ya
-Vb
-Vb
-KS
-Vb
-KT
-wz
-ZK
-Ze
-nj
-Qi
-Pv
-lL
-cR
-ee
-cR
-yI
-XY
-pg
-QP
-Qf
-MR
-Ua
-do
-do
-do
-do
-Ti
-DM
-JN
-hS
-hS
-zj
-dN
-pD
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(67,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-Gn
-MK
-YU
-ic
-ls
-oF
-TC
-aY
-bx
-VG
-KH
-zz
-nt
-UW
-Bp
-oS
-oS
-oS
-Bp
-mt
-mt
-mt
-DL
-Lb
-ix
-nt
-rH
-QX
-RT
-jU
-kc
-ru
-Xs
-Cw
-Cw
-kD
-Mt
-it
-SH
-Vg
-xd
-AB
-Da
-VZ
-Wz
-Lv
-RF
-YI
-Kt
-EJ
-WQ
-Vb
-wh
-wz
-RQ
-Ze
-Eo
-Ze
-QP
-gu
-Kf
-Kf
-Kf
-Kf
-XY
-pg
-QP
-jN
-db
-Eb
-OP
-TS
-XN
-NN
-ou
-vy
-mw
-mw
-jD
-zj
-PS
-cU
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(68,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-HQ
-Nk
-YU
-YU
-YU
-qe
-YU
-TC
-YU
-Sx
-VG
-KH
-zz
-nt
-yc
-Dl
-UX
-UX
-UX
-vS
-mt
-mt
-mt
-DL
-Lb
-sc
-nt
-yF
-uE
-RT
-jU
-Lx
-Zx
-UL
-BX
-Vy
-xd
-xd
-xd
-xd
-VF
-xd
-rk
-Da
-VZ
-xQ
-lW
-RF
-mo
-IQ
-ef
-xO
-Vb
-fP
-ve
-TL
-QD
-Ba
-jp
-QP
-QP
-tV
-Id
-yV
-Kf
-XY
-pg
-QP
-tA
-db
-Eb
-dq
-zj
-We
-Lu
-CS
-vq
-Rh
-gO
-vq
-hS
-dN
-LX
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(69,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-TU
-oJ
-Gn
-MK
-YU
-Nc
-Ux
-xD
-Pc
-fB
-iX
-UQ
-kS
-PK
-JR
-xA
-DS
-UX
-Bp
-Ob
-ts
-Ut
-Ut
-Ut
-DL
-tb
-rg
-nt
-dG
-wK
-GS
-jU
-ew
-Rf
-Uj
-ZU
-JQ
-nK
-nK
-bL
-wi
-VN
-sS
-Mj
-Da
-VZ
-vN
-RF
-RF
-Xt
-eS
-jG
-iP
-Vb
-Kg
-wz
-fx
-zC
-fx
-MH
-LZ
-Vb
-Vb
-Vb
-Vb
-hi
-XY
-pg
-QP
-TJ
-db
-Eb
-dq
-zj
-GE
-NN
-BM
-RO
-pl
-LF
-oC
-hS
-dN
-pD
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(70,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Xc
-oJ
-LP
-zw
-Jl
-Gn
-CI
-iT
-TC
-ku
-Sx
-Je
-DW
-JL
-nt
-BS
-Dl
-UX
-BK
-Fw
-vS
-Ut
-IE
-Ut
-Xx
-NS
-mL
-nt
-HY
-GI
-UM
-jU
-Hb
-HL
-nD
-CG
-wo
-nK
-nK
-uQ
-xy
-Hg
-os
-em
-PO
-wl
-Ci
-zG
-wX
-Pr
-qj
-ld
-rC
-Vb
-HA
-wz
-TR
-Kl
-vi
-Ze
-Ay
-qZ
-hT
-bf
-Vb
-Zv
-Kf
-sZ
-QP
-Hj
-ln
-xC
-xG
-zj
-GE
-do
-iB
-vq
-XJ
-MM
-nz
-hS
-dN
-su
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-FW
-bE
-Jh
-AF
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(71,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-TU
-oJ
-Gn
-MK
-oB
-wq
-wq
-WI
-LR
-by
-FJ
-OW
-pG
-co
-BD
-ud
-Ep
-UX
-Bp
-UX
-ts
-Ut
-Ut
-Ut
-DL
-hD
-wf
-nt
-pa
-rj
-EN
-jU
-Mw
-IL
-Uj
-Nn
-JQ
-rN
-rN
-rN
-rN
-rN
-rN
-Mj
-Wr
-VZ
-vN
-RF
-RF
-wa
-eS
-WB
-rC
-Vb
-Ol
-FG
-ZK
-Ks
-ZK
-Ze
-hx
-Vb
-Vb
-Vb
-Vb
-vG
-Kf
-wC
-QP
-cK
-Vk
-BL
-KR
-wH
-Sv
-sk
-gN
-Um
-wR
-wR
-fz
-bB
-OR
-fY
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(72,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-HQ
-pi
-YU
-lU
-as
-as
-Rr
-AY
-YU
-Sx
-Ls
-KH
-zz
-nt
-yc
-Dl
-UX
-UX
-UX
-vS
-mt
-mt
-mt
-DL
-Lb
-sc
-nt
-yF
-uE
-RT
-jU
-Lx
-Ld
-Uj
-<<<<<<< HEAD
-Zj
-=======
-fy
->>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s
-Zj
-rN
-ry
-sB
-cZ
-lC
-rN
-zo
-Wr
-VZ
-xQ
-wS
-RF
-sv
-Ud
-gg
-HH
-Vb
-wT
-BU
-RQ
-Ze
-FE
-La
-QP
-QP
-kk
-xV
-jW
-Kf
-Kf
-AG
-QP
-Pt
-db
-Eb
-rv
-zj
-DV
-do
-EM
-uY
-hS
-hS
-bW
-zj
-ZY
-ET
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(73,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-Gn
-MK
-fi
-VC
-XU
-sr
-Xq
-qS
-Sx
-EE
-KH
-zz
-nt
-hA
-Bp
-io
-io
-io
-Bp
-mt
-mt
-mt
-DL
-Lb
-ix
-nt
-Yy
-Hy
-RT
-jU
-Wi
-hc
-GP
-nv
-JK
-nu
-RH
-ky
-AO
-WX
-rN
-Hh
-Wr
-VZ
-Wz
-Qq
-Km
-Mq
-xL
-LC
-yQ
-Vb
-wT
-zD
-ik
-Ze
-og
-Ze
-QP
-sJ
-nJ
-kj
-Pb
-Vq
-kO
-yE
-QP
-jN
-db
-Eb
-gq
-HZ
-Nj
-NN
-ae
-or
-WE
-Ui
-BO
-Ui
-dN
-pD
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(74,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-wG
-MK
-fi
-dw
-On
-rd
-AN
-sL
-rV
-lT
-KH
-Ct
-nt
-Yl
-mt
-mt
-mt
-mt
-hm
-VM
-uJ
-VM
-BC
-lG
-ZZ
-nt
-ys
-IK
-RT
-nK
-Dh
-lo
-lB
-GW
-Fp
-rN
-VE
-oc
-xv
-Ow
-rN
-IG
-AA
-rc
-Xa
-Xa
-Rc
-tf
-Xa
-Xa
-NQ
-Vb
-qm
-Wu
-GF
-hR
-fu
-dc
-zQ
-fF
-aX
-Qc
-Tm
-hn
-pf
-hn
-hn
-Qf
-qb
-Ua
-YY
-Nf
-Nf
-YY
-le
-YY
-YY
-xk
-BO
-Ui
-dN
-pD
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(75,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-oJ
-Gn
-zw
-fi
-dw
-On
-py
-fp
-mn
-rV
-VG
-KH
-HO
-nt
-XP
-mt
-mt
-mt
-mt
-lO
-mt
-mt
-nt
-nt
-nt
-nt
-nt
-PA
-IK
-cY
-nK
-nK
-oZ
-gC
-rN
-rN
-rN
-iM
-uP
-IV
-IV
-rN
-uF
-dB
-aF
-Xa
-eJ
-JV
-Yn
-Hc
-Xa
-zc
-uj
-Ll
-dr
-hx
-hx
-tT
-Iu
-QP
-IT
-LQ
-nV
-ft
-hn
-zL
-PY
-Ex
-ZF
-Jn
-zh
-cX
-ed
-du
-dJ
-mE
-tG
-YY
-ce
-BO
-Ui
-dN
-pD
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-jQ
-Qa
-bE
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(76,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-bD
-dk
-Di
-HQ
-LT
-as
-uX
-dw
-On
-hY
-fp
-MZ
-Sx
-Xl
-KH
-zz
-nt
-SF
-Fy
-cC
-iO
-mt
-lO
-Ri
-sH
-nt
-Rq
-Rq
-lY
-Jq
-IK
-kF
-nK
-nK
-nK
-yJ
-rN
-SN
-DG
-vK
-uP
-IV
-sX
-rN
-mk
-eZ
-VZ
-sq
-vO
-Ft
-Dv
-ol
-Dz
-rm
-hj
-kC
-vI
-NP
-Cd
-OE
-EU
-QP
-lR
-jq
-Zw
-Df
-hn
-DJ
-Pz
-hn
-eO
-Jn
-zh
-cX
-Oa
-tt
-BI
-PD
-ed
-cX
-nF
-BO
-Ui
-cy
-tu
-HN
-HN
-HN
-HN
-HN
-HN
-HN
-nm
-bE
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(77,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-jx
-HQ
-HQ
-pW
-sP
-dw
-On
-py
-fp
-Dj
-Sx
-po
-AI
-jF
-nt
-fL
-mU
-DO
-kp
-GA
-fK
-ij
-sH
-nt
-Rq
-Rq
-Rq
-Rq
-Jq
-IK
-RT
-nK
-fV
-nK
-uC
-rN
-lg
-EO
-ED
-fo
-XR
-gn
-rN
-we
-dB
-fI
-sq
-xJ
-fh
-MS
-NF
-qQ
-iq
-zX
-vf
-LV
-GT
-lP
-WY
-Vb
-QP
-QP
-QP
-QP
-QP
-hn
-hn
-hn
-hn
-Oz
-KA
-XQ
-JZ
-Hp
-Sq
-XX
-Dr
-Fn
-JZ
-PM
-wN
-rK
-Vl
-qk
-Eh
-SZ
-Jv
-jZ
-pp
-yR
-HF
-IO
-bE
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(78,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-tj
-dk
-PR
-Pe
-bp
-dw
-On
-py
-fp
-ZO
-Sx
-VY
-KH
-zz
-nt
-nt
-nt
-nt
-nt
-kE
-lJ
-nt
-nt
-nt
-dv
-Im
-Gb
-kl
-Wk
-IK
-RT
-nK
-nK
-nK
-yJ
-rN
-rN
-rN
-rN
-rN
-rN
-rN
-rN
-oH
-Nr
-fv
-sq
-jf
-jc
-dg
-Sh
-Xa
-qf
-nd
-nd
-nd
-mK
-nd
-nd
-nd
-uz
-Bg
-CN
-fJ
-yW
-NW
-iE
-Aw
-Yx
-ON
-Jn
-LK
-cX
-xo
-NO
-cH
-kY
-rU
-YY
-Sf
-TK
-kq
-vA
-Vp
-Wc
-kB
-He
-aR
-IR
-xw
-ZI
-hW
-LE
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(79,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-NL
-oJ
-mJ
-sP
-dw
-On
-wV
-aK
-nQ
-Sx
-aC
-KH
-jP
-Tl
-pH
-eX
-Ga
-ex
-zs
-lS
-eV
-Kn
-US
-ND
-ND
-ND
-ND
-sO
-IK
-jy
-Bc
-yr
-oi
-Gd
-Pf
-wW
-Ru
-nL
-WL
-WL
-Iv
-iu
-ec
-YX
-vR
-Xa
-Tn
-Xg
-Ky
-Ft
-vO
-qf
-xY
-oh
-bs
-OU
-OX
-nd
-nd
-jz
-Ml
-fJ
-en
-yW
-ab
-Uc
-Ml
-ON
-ON
-Jn
-Vu
-ta
-ta
-ta
-ta
-ta
-ta
-ta
-ta
-LY
-LY
-uM
-LY
-oa
-oa
-oa
-oa
-BN
-LE
-LE
-LE
-LE
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(80,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-se
-nP
-Wb
-HQ
-HQ
-vg
-Ax
-LL
-GX
-uZ
-Hi
-Sx
-iy
-mV
-XC
-rQ
-xT
-xT
-xT
-xT
-xT
-kd
-SU
-xT
-WH
-xT
-xT
-xT
-xg
-jJ
-lj
-ji
-ji
-Xv
-En
-jk
-Ru
-Ru
-Ru
-CC
-CC
-CC
-CC
-CC
-CC
-YX
-Ka
-sq
-Or
-Ft
-Ky
-RI
-Ys
-qf
-hM
-Xh
-vL
-Hw
-fg
-nd
-Ik
-TN
-dI
-eN
-eN
-Ej
-eN
-eN
-dI
-dI
-eT
-nN
-up
-dA
-Lt
-Xf
-Lc
-kA
-Iy
-CL
-To
-jm
-yq
-TO
-FY
-Gf
-XH
-UB
-np
-BN
-Wb
-Wb
-NL
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(81,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-se
-nP
-Jh
-Jh
-Jh
-HQ
-Sx
-Sx
-Sx
-Vh
-Sx
-Sx
-Sx
-FA
-Zr
-sj
-FU
-Zr
-Zr
-vj
-pZ
-DC
-Zr
-OV
-Zr
-Ye
-Zr
-Zr
-Zm
-OV
-Zr
-Zr
-sj
-Zr
-yr
-Mm
-lv
-Ru
-Ru
-Ru
-Mk
-Mk
-lv
-Mk
-Mk
-uq
-YX
-Ka
-sq
-Ln
-ck
-Ky
-ad
-mW
-qf
-OG
-ho
-Lh
-Gw
-gJ
-nd
-qD
-Cx
-hJ
-hJ
-hJ
-hy
-hJ
-hJ
-hJ
-fW
-hJ
-bX
-jS
-dA
-RP
-At
-bd
-UK
-At
-Wh
-To
-eF
-tl
-Il
-no
-Hq
-tQ
-vM
-kN
-SA
-Le
-Le
-uG
-Le
-Sj
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(82,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-Jh
-Jh
-Jh
-Jh
-Yf
-rG
-bV
-LN
-KG
-Rn
-FC
-fl
-fl
-HW
-fl
-rX
-fl
-HW
-fl
-fl
-eC
-Ke
-HP
-hq
-mT
-mT
-AM
-mT
-JB
-oM
-mT
-mT
-JY
-Hd
-an
-Hd
-rZ
-zN
-Ew
-rZ
-Hd
-Hd
-Hd
-Hd
-Xd
-YX
-Ka
-sq
-BR
-Ft
-Ky
-Ft
-vY
-qf
-VK
-Op
-Bv
-cD
-hF
-nd
-Py
-PF
-ON
-Td
-Ou
-Lr
-Ou
-Ou
-Rk
-kv
-ZH
-OS
-gL
-dA
-LD
-Zd
-YG
-YL
-GH
-vo
-To
-TG
-Sm
-pU
-Yd
-Gf
-Gf
-Gf
-uo
-BN
-nq
-nq
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(83,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-se
-yK
-Wb
-Wb
-Jh
-Jh
-Yf
-UC
-TY
-Og
-FB
-UC
-JT
-fl
-Ae
-Rm
-WZ
-CF
-wt
-hT
-hP
-fl
-ZA
-zm
-GG
-gR
-mT
-qs
-RX
-tn
-Ok
-KE
-NJ
-YF
-JY
-zK
-RS
-Hd
-rM
-Bq
-Bq
-zk
-Hd
-pJ
-EX
-Hd
-IY
-YX
-Ka
-Xa
-KY
-jc
-Bb
-UH
-hL
-qf
-oK
-hQ
-Ss
-Vt
-Kw
-nd
-XL
-wO
-XL
-LI
-QU
-ZR
-QT
-QU
-LI
-HK
-HK
-II
-HK
-To
-tB
-Eg
-qH
-rA
-Fd
-jY
-hs
-nb
-fA
-xa
-Ug
-lm
-WW
-QE
-cF
-Jk
-VJ
-Dw
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(84,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-Wn
-jx
-NL
-Wb
-Wb
-Wb
-Yi
-cB
-UC
-yM
-Ly
-NY
-YM
-fl
-CV
-Wm
-tW
-eY
-tW
-RK
-ev
-fl
-vu
-Xy
-wv
-ra
-mT
-mX
-Ns
-Ns
-Zu
-wJ
-mT
-cI
-JY
-GQ
-SV
-Zk
-XM
-HD
-HD
-Gt
-Zk
-SM
-Hd
-Hd
-Xd
-YX
-dy
-Xa
-Xa
-sq
-sq
-sq
-Xa
-qf
-nd
-nd
-nd
-nd
-nd
-nd
-Xd
-FQ
-Ka
-QU
-Th
-Ph
-rq
-GZ
-LI
-ai
-MF
-gT
-Zf
-To
-xM
-qz
-Uz
-vc
-oV
-Af
-To
-UU
-TX
-Qm
-aO
-Nq
-Sm
-SP
-Nt
-Lw
-VJ
-VJ
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(85,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-jx
-NL
-NL
-Wb
-Jh
-Yi
-Yi
-IJ
-Kx
-Ez
-gP
-pR
-fl
-FR
-Wm
-HV
-tJ
-HV
-RK
-ev
-fl
-EZ
-SL
-wv
-mF
-mT
-TB
-Ns
-Ns
-pP
-wJ
-mT
-cI
-JY
-Tg
-Ot
-Hd
-Hd
-ST
-Po
-Hd
-Hd
-SR
-Hd
-YW
-rh
-xX
-Qd
-CW
-CW
-CW
-CW
-CW
-CW
-Yz
-CW
-cA
-CW
-zZ
-CW
-JF
-rY
-FQ
-yx
-QU
-Nz
-rq
-iv
-Ed
-LI
-fk
-SW
-AE
-QQ
-rw
-jY
-eQ
-uU
-fT
-yw
-iI
-To
-xq
-oX
-aW
-Xz
-Nq
-Sm
-SP
-lk
-Lw
-nq
-nq
-Ds
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(86,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-lZ
-dk
-dk
-Di
-Jh
-Jh
-Yi
-Yi
-Yi
-Yi
-cQ
-Yi
-aN
-xI
-Wm
-HV
-eY
-HV
-RK
-mG
-fl
-Wl
-Xy
-wv
-NE
-mT
-Ma
-Ns
-Ns
-Zu
-wJ
-mT
-cI
-JY
-at
-Yb
-iQ
-fe
-KJ
-KJ
-fe
-YB
-un
-Hd
-KU
-Xd
-UA
-wb
-wb
-wb
-wb
-mm
-CC
-CC
-CC
-CC
-CC
-TI
-Co
-Co
-Co
-Co
-Gp
-dE
-QU
-ns
-rq
-NZ
-Ku
-Re
-OI
-da
-iw
-dW
-To
-To
-Vo
-Vo
-Vo
-Vo
-Vo
-Vo
-qr
-nH
-BB
-tE
-qP
-Sm
-mv
-qW
-Kr
-NL
-NL
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(87,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-jx
-NL
-Jh
-Jh
-iQ
-iQ
-YZ
-de
-oG
-aN
-VU
-yn
-eM
-rz
-Rm
-pV
-ev
-fl
-OJ
-Xy
-wv
-oT
-mT
-mQ
-UN
-UN
-wy
-wJ
-mT
-cI
-JY
-Ne
-Ot
-Bu
-Ts
-Ah
-rD
-Ts
-XT
-SR
-Hd
-us
-aL
-zS
-Wy
-<<<<<<< HEAD
-Mk
-Mk
-=======
-xh
-XE
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-Mk
-fs
-Tk
-yu
-IX
-Mk
-Mk
-LH
-Mk
-pm
-Mk
-XE
-lv
-Aj
-LI
-Gz
-Tc
-uD
-YR
-LI
-fm
-Kv
-dS
-vb
-Nm
-eo
-OF
-Oq
-rf
-RG
-lN
-is
-OF
-vm
-KB
-gX
-lK
-JJ
-PI
-jA
-Lw
-nq
-nq
-CP
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(88,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-ur
-dk
-dk
-dk
-dk
-TV
-TV
-gk
-oG
-aN
-md
-iV
-Tj
-Cv
-Kj
-rI
-Du
-fl
-rE
-xK
-aw
-Dd
-mT
-KC
-Bi
-XD
-jj
-uy
-uy
-Cg
-JY
-gv
-UJ
-Bu
-Ts
-GN
-pQ
-Ts
-XT
-SR
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-vp
-Hd
-Hd
-Hd
-Hd
-Hd
-Hd
-mO
-bZ
-rq
-iS
-Qk
-LI
-Be
-mM
-nx
-fU
-Mv
-OZ
-tg
-xb
-Sb
-xz
-Mg
-qJ
-tg
-cf
-TX
-KN
-jg
-Zh
-FV
-lX
-yA
-VJ
-Dw
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(89,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-Wb
-Jh
-Jh
-Bu
-Oo
-Nb
-aN
-aN
-aN
-HW
-HW
-HW
-sD
-aN
-aN
-rx
-Ey
-sN
-rx
-JY
-JY
-AM
-AM
-JY
-AM
-AM
-JY
-JY
-fd
-Pi
-iQ
-Ts
-TQ
-bC
-Ts
-YB
-Ir
-Tv
-Tv
-Tv
-ph
-Tv
-Tv
-Tv
-vQ
-Tv
-aI
-qh
-Ie
-HS
-am
-Cc
-Jw
-aM
-FT
-pj
-Np
-Np
-yi
-KW
-nf
-kh
-JD
-LI
-qd
-na
-oY
-rp
-Fs
-Ww
-ka
-RJ
-ng
-Pd
-Ry
-cL
-Qz
-tm
-az
-nO
-nO
-kT
-nO
-nO
-nq
-VJ
-VJ
-Wb
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(90,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-iQ
-iQ
-hb
-ri
-WO
-WO
-WO
-WO
-WO
-WO
-WO
-FZ
-WO
-WO
-ax
-oG
-oG
-oG
-oG
-oG
-oG
-oG
-oG
-oG
-yS
-rl
-ep
-iQ
-Ts
-fc
-pQ
-Ts
-YB
-YB
-PV
-jB
-pJ
-Xp
-Za
-vT
-Jf
-zW
-qa
-gd
-mj
-ha
-Xr
-tw
-VX
-gp
-tp
-PT
-vt
-jn
-Wg
-mO
-mO
-mO
-oI
-mO
-mO
-Mr
-qr
-ER
-qr
-qr
-qr
-qr
-kf
-Sb
-uw
-Sb
-hX
-OF
-OF
-lV
-OF
-il
-Qt
-on
-SG
-rT
-rT
-rT
-Ds
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(91,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-iQ
-Bu
-eA
-iQ
-iQ
-Bu
-Bu
-Bu
-iQ
-iQ
-eA
-iQ
-Bu
-Bu
-iQ
-iQ
-iQ
-Bu
-Bu
-iQ
-Bu
-Bu
-iQ
-iQ
-iQ
-iQ
-iQ
-Ts
-iL
-YA
-Ts
-YB
-YB
-YB
-YB
-XT
-XT
-YB
-YB
-YB
-YB
-YB
-xc
-Fg
-CU
-El
-Kz
-PQ
-LB
-ZX
-Nv
-jT
-jT
-xc
-tK
-cm
-pe
-Yr
-Hx
-lH
-DK
-HT
-qV
-Se
-NM
-qv
-qr
-vz
-Qv
-FF
-rB
-sw
-OF
-sm
-bz
-OF
-Ql
-zq
-NC
-NC
-TD
-Ja
-rT
-qi
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(92,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-jx
-Wb
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-jx
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Wb
-ZG
-Jh
-sM
-Ea
-CU
-CU
-CU
-GR
-Wb
-Jh
-NL
-tK
-zT
-cm
-Yr
-AK
-tS
-iG
-HT
-It
-oP
-QA
-Xj
-fZ
-ZP
-RV
-zy
-JE
-Lp
-OF
-cN
-Yq
-OF
-Ij
-sl
-Jg
-Jg
-AT
-iK
-rT
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(93,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-bD
-yZ
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-NL
-jx
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-hz
-Wb
-xc
-NA
-xc
-Jh
-Wb
-Wb
-Jh
-Jh
-Jh
-tK
-el
-el
-tX
-Os
-dd
-dd
-WT
-gE
-qr
-qr
-qr
-qr
-bj
-yj
-za
-yj
-fN
-OF
-OF
-Sw
-OF
-qX
-eK
-li
-tC
-vd
-UV
-Ra
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(94,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-lZ
-dk
-dk
-dk
-dk
-dk
-dk
-hk
-gi
-Di
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-kL
-NL
-NL
-Cf
-NL
-NL
-NL
-NL
-Jh
-Jh
-Wb
-tK
-tK
-gS
-wD
-eh
-DT
-gU
-lu
-nM
-qr
-Vf
-Vf
-Xo
-Vf
-Vf
-EP
-Vf
-Vf
-Xo
-pu
-UE
-OF
-ow
-ow
-ow
-Mh
-vd
-lw
-Ra
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(95,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-Wn
-NL
-jx
-NL
-NL
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-kL
-yH
-yH
-yH
-NL
-yH
-yH
-yH
-yH
-yH
-Wb
-Wb
-Wb
-tK
-tK
-Li
-By
-oR
-oR
-gV
-IP
-qr
-Vf
-Vf
-ib
-UF
-lx
-sQ
-iR
-UF
-Vx
-Vf
-Gu
-OF
-MW
-Cr
-ow
-qA
-vd
-bK
-Ra
-ZG
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(96,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-jx
-NL
-NL
-NL
-NL
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Ds
-Le
-kL
-wr
-Uh
-Uh
-Uh
-NL
-Ig
-Ig
-Ig
-Ig
-BE
-Wb
-Wb
-Jh
-Jh
-tK
-sy
-lE
-px
-px
-Jb
-JX
-qr
-Rs
-Vf
-EP
-Bs
-Vf
-Vf
-Vf
-Bs
-EP
-Vf
-mC
-OF
-gh
-kH
-Mz
-Jg
-pC
-ks
-rT
-ZG
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(97,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-lZ
-dk
-dk
-dk
-dk
-dk
-dk
-dk
-bw
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-yy
-uK
-Go
-Kh
-yH
-Cp
-Cp
-Cp
-Cp
-NL
-Cp
-Cp
-Cp
-Cp
-Cp
-NL
-Jh
-Jh
-Jh
-Jh
-KX
-MB
-px
-KI
-Jb
-Jb
-qr
-Gu
-Vf
-gW
-Vf
-Vf
-Vf
-Vf
-Vf
-gW
-Vf
-Gu
-OF
-XB
-Tx
-ow
-AS
-FN
-rT
-rT
-ZG
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(98,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-ZG
-iH
-Uh
-Uh
-Uh
-Uh
-Uh
-NL
-MN
-MN
-MN
-MN
-sC
-Ds
-Le
-Le
-Le
-Le
-kL
-Cl
-bT
-bT
-bT
-bT
-MB
-sY
-Vf
-EP
-Vf
-Vf
-KM
-Vf
-Vf
-EP
-Vf
-Ix
-ni
-Ra
-Ra
-rT
-rT
-rT
-rT
-NL
-ZG
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(99,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-NL
-ZG
-Mx
-Mx
-Mx
-Mx
-Mx
-Mx
-NL
-Mx
-Mx
-Mx
-Mx
-Mx
-ZG
-NL
-Wb
-Wb
-Wb
-Wb
-Wb
-NL
-NL
-NL
-tc
-RY
-Gu
-Vf
-Rb
-Vf
-Vf
-Vf
-Vf
-Vf
-Rb
-Vf
-Gu
-ni
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-ZG
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(100,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Pp
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-iU
-Le
-Le
-Le
-Le
-Le
-Uf
-Le
-cG
-Le
-SO
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-Ds
-Up
-Le
-Sj
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-RY
-Hf
-Vf
-Vf
-Bs
-Vf
-Vf
-Vf
-Bs
-Vf
-Vf
-mC
-ni
-NL
-NL
-NL
-NL
-NL
-NL
-NL
-ZG
-NL
-NL
-Jh
-Jh
-Pp
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(101,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-CP
-Le
-Le
-Le
-NU
-Le
-Le
-Le
-Le
-Le
-kL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-RY
-KP
-MT
-cr
-cr
-cr
-cr
-cr
-cr
-cr
-MT
-lA
-ni
-Wb
-NL
-NL
-NL
-NL
-NL
-NL
-ZG
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(102,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-RY
-ni
-ni
-Hv
-aQ
-aQ
-mr
-aQ
-aQ
-jO
-ni
-ni
-ni
-Wb
-Wb
-NL
-NL
-NL
-NL
-NL
-ZG
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(103,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jx
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-lq
-Le
-Le
-Le
-Le
-Le
-Le
-Le
-Lg
-Le
-Le
-SO
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(104,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-NL
-NL
-NL
-NL
-AF
-NL
-NL
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-NL
-AF
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(105,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(106,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(107,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(108,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(109,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(110,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(111,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(112,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(113,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(114,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(115,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(116,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(117,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-ob
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(118,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(119,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(120,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Oh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(121,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(122,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(123,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(124,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(125,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(126,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(127,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(128,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(129,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(130,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(131,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(132,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(133,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(134,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(135,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(136,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(137,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(138,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(139,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-"}
-(140,1,1) = {"
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-Jh
-=======
-"aa" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"ab" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard)
-"ac" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"ad" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"ae" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"af" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics)
-"ag" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"ah" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "CO2 Filter"; tag_north = 2; tag_south = 1; tag_west = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"ai" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"aj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics)
-"ak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"al" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"am" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"an" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"ao" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"ap" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"aq" = (/obj/effect/landmark/start/atmostech,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"ar" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"as" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"at" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"au" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"av" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/animal/goat{name = "Ted"},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"aw" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"ax" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"az" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"aA" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore)
-"aB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"aC" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"aD" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/combustionworkshop)
-"aE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"aF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"aG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"aH" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"aI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"aJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics)
-"aK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"aL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"aM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"aN" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/locker)
-"aO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"aP" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"aQ" = (/obj/structure/grille,/turf/simulated/floor/airless,/area/engineering/engine_room)
-"aR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"aS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/item/weapon/stool/padded{dir = 4},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics)
-"aT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"aU" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport)
-"aV" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"aW" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"aX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"aY" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"aZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ba" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"bb" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"bc" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"bd" = (/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"be" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"bf" = (/turf/simulated/open,/area/stellardelight/deck2/triage)
-"bg" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port)
-"bh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"bi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"bj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room)
-"bk" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"bl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"bm" = (/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/dorms{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport)
-"bn" = (/obj/structure/railing/grey{dir = 8},/obj/structure/cable/white{icon_state = "32-1"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage)
-"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"bp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"bq" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"br" = (/obj/structure/sign/directions/science{pixel_x = -32},/obj/structure/sign/directions/dorms{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard)
-"bs" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"bt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "botanylockdown"; name = "Window Lockdown"; pixel_x = -25},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"bu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"bv" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard)
-"bw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"bx" = (/obj/structure/sign/double/barsign,/turf/simulated/wall/bay/steel,/area/crew_quarters/bar)
-"by" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"bz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room)
-"bA" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"bC" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape)
-"bD" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"bE" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/quartermaster/storage)
-"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage)
-"bG" = (/obj/structure/cable/yellow{icon_state = "32-8"},/obj/structure/sign/department/miner_dock{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage)
-"bH" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"bI" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape)
-"bJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"bK" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/sleeper{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/sleeper_console{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/body_scanner{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/scanner_console,/obj/item/weapon/circuitboard/grinder{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/bioprinter{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/chem_master{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"bL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central)
-"bM" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/opossum/poppy,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"bN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"bO" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/mob/living/simple_mob/otie/red/chubby/cocoa,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"bP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"bQ" = (/obj/structure/closet/secure_closet/quartermaster,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"bR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring)
-"bS" = (/obj/machinery/biogenerator,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"bT" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"bU" = (/obj/structure/filingcabinet,/obj/machinery/light,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"bV" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/bar_guide,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"bW" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"bX" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"bY" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport)
-"bZ" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/requests_console/preset/engineering{pixel_y = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"ca" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cb" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"cc" = (/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 200000; name = "Engine"; output_level = 250000},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/storage)
-"cd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/engineering/storage)
-"ce" = (/obj/machinery/vending/wardrobe/cargodrobe,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"cg" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/requests_console/preset/bridge{pixel_y = 30},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"ch" = (/turf/simulated/wall/bay/r_wall/green,/area/crew_quarters/kitchen)
-"ci" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"ck" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"cl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring)
-"cm" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/storage)
-"cn" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"co" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"cp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/power/thermoregulator,/turf/simulated/floor/plating,/area/engineering/storage)
-"cq" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "burn_chamber"; output = 63},/obj/machinery/camera/network/engine,/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"cr" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"cs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"cu" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"cv" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"cw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"cx" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Void"; sortType = "Void"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/department/cargo{pixel_x = 32},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"cA" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"cB" = (/obj/structure/closet/crate/bin,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"cC" = (/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"cE" = (/obj/machinery/atmospherics/pipe/tank/oxygen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"cF" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"cG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"cH" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; dir = 8; pixel_x = 28},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"cI" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/structure/sign/painting/public{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/storage/art)
-"cJ" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"cK" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"cL" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"cM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"cN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "engine_airlock"; pixel_y = 24; req_one_access = list(10,11); tag_airpump = "engine_airpump"; tag_chamber_sensor = "engine_sensor"; tag_exterior_door = "engine_exterior"; tag_interior_door = "engine_interior"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room)
-"cO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"cP" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"cQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(25); stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/barbackroom)
-"cR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"cS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"cT" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"cU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{dir = 1; id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"cV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark{name = "morphspawn"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"cW" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/button/remote/blast_door{id = "kitchenlockdown"; name = "Window Lockdown"; pixel_x = 2; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"cX" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm)
-"cY" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"cZ" = (/obj/item/device/flashlight/lamp/green{pixel_x = 7; pixel_y = 16},/obj/item/weapon/folder/blue_captain{pixel_x = -6; pixel_y = 7},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/requests_console/preset/captain{pixel_x = -30},/obj/item/weapon/melee/chainofcommand,/obj/item/weapon/folder/blue_captain{pixel_x = -6},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"da" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"db" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/engineering/storage)
-"dc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"dd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"de" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"df" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/power/grid_checker,/turf/simulated/floor/plating,/area/engineering/storage)
-"dg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"dh" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"di" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/poster{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"dj" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"dk" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"dl" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/engineering/storage)
-"dm" = (/obj/item/device/radio/intercom{dir = 1; pixel_x = -32; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"do" = (/turf/simulated/wall/bay/brown,/area/quartermaster/storage)
-"dp" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"dr" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"ds" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"du" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"dv" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"dw" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"dx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"dy" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"dz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"dA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/workshop)
-"dB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"dC" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck2/portaft)
-"dD" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"dE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"dF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/grass,/area/hydroponics)
-"dG" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"dH" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/machinery/camera/network/engine{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"dI" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"dJ" = (/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"dK" = (/obj/machinery/computer/transhuman/designer{dir = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"dL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftport)
-"dM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"dN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"dO" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"dP" = (/turf/simulated/floor/grass,/area/hydroponics)
-"dQ" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"dR" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"dT" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"dU" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"dV" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production)
-"dW" = (/obj/structure/closet/secure_closet/engineering_electrical/double{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"dX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"dY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"ea" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d2_portmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_portmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_portmaint_airpump"; tag_chamber_sensor = "d2_portmaint_sensor"; tag_exterior_door = "d2_portmaint_exterior"; tag_interior_door = "d2_portmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_portmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"ec" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"ed" = (/turf/simulated/floor/wood,/area/quartermaster/qm)
-"ee" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"ef" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage)
-"eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"ei" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"ej" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics)
-"ek" = (/obj/structure/sign/directions/recreation{dir = 4; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"el" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/engineering/storage)
-"em" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"en" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/aftstarboard)
-"eo" = (/obj/structure/closet/secure_closet/engineering_welding/double,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"ep" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"eq" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage)
-"er" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"es" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"et" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"eu" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ev" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"ew" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{id = "bridgelockdown"; name = "Bridge Lockdown"; pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/corner,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"ex" = (/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"ez" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"eA" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore)
-"eB" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"eC" = (/turf/simulated/wall/bay/steel,/area/storage/primary)
-"eD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/directions/stairs_up{pixel_x = 32},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"eE" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"eF" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"eG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"eH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"eI" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"eJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"eK" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"eL" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"eM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"eO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"eP" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"eQ" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/requests_console/preset/engineering{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"eR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"eS" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"eT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"eU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"eV" = (/obj/structure/sign/directions/recreation{dir = 8; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"eW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"eX" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"eY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"eZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"fa" = (/obj/machinery/door/window/westright{dir = 1; req_one_access = list(35,28)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics)
-"fb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/medical/psych)
-"fc" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "starboard_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape)
-"fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"fe" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape)
-"ff" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"fg" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"fh" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"fi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"fj" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"fk" = (/obj/machinery/vending/engivend,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"fl" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/locker)
-"fm" = (/obj/machinery/vending/wardrobe/engidrobe,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"fn" = (/obj/structure/sign/directions/evac{dir = 6; pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"fo" = (/obj/machinery/recharger{pixel_y = 4},/obj/item/device/perfect_tele{name = "manager's translocator"},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"fp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"fq" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"fr" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"fs" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"ft" = (/obj/machinery/vitals_monitor,/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"fu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"fv" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"fw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"fx" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"fy" = (/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/closet/crate/medical{desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; name = "NanoTrasen Emergency Supply Crate"},/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"fA" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"fB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"fC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"fD" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"fE" = (/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/dicecup,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards/casino,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"fG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"fH" = (/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4},/obj/item/paint_palette,/obj/item/paint_palette,/obj/item/paint_brush,/obj/item/paint_brush,/obj/effect/landmark/vines,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled,/area/storage/art)
-"fI" = (/obj/effect/floor_decal/milspec/color/white/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"fJ" = (/turf/simulated/open,/area/stellardelight/deck2/aftstarboard)
-"fK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"fL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/obj/machinery/station_slot_machine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"fM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/radio,/obj/item/device/radio,/obj/structure/closet/walllocker_double/command/east,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"fN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room)
-"fO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"fP" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"fQ" = (/obj/structure/lattice,/obj/structure/cable/orange{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/atmos)
-"fR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"fS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/sd_guide,/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"fT" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/wood,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/item/stack/material/plasteel{amount = 30},/obj/structure/closet/walllocker_double/engineering/east{name = "material sheets"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"fU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"fV" = (/turf/simulated/floor,/area/bridge)
-"fW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"fX" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape)
-"fY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"fZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage)
-"ga" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"gb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/smartfridge/sheets/persistent_lossy,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"gc" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/tesla_engine,/obj/structure/closet/walllocker_double/engineering/west,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"gd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"ge" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"gf" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"gg" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"gh" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/mecha_control,/obj/item/weapon/circuitboard/aifixer{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"gi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"gj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"gk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"gl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"gm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "port_escape_berth"; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"gn" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"go" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Ports"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"gp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"gq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"gr" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"gs" = (/obj/machinery/atmospherics/unary/vent_pump/engine{external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"gt" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/cargo/east,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"gu" = (/obj/machinery/firealarm/angled,/obj/item/device/defib_kit/loaded,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"gv" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore)
-"gw" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"gx" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"gy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"gz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"gA" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore)
-"gB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"gC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"gD" = (/obj/structure/table/reinforced,/obj/random/powercell,/obj/random/tech_supply,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"gE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"gF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"gG" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled,/area/hydroponics)
-"gH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"gI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/weapon/circuitboard/tesla_coil,/obj/item/weapon/circuitboard/tesla_coil,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"gJ" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"gK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"gL" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"gM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"gN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"gO" = (/obj/structure/table/standard,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"gP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"gQ" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"gR" = (/obj/structure/closet/firecloset,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"gS" = (/obj/structure/dispenser,/turf/simulated/floor/plating,/area/engineering/storage)
-"gT" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"gU" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"gV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage)
-"gW" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"gX" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"gY" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"ha" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"hb" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"hd" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"he" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"hf" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/green,/area/hydroponics)
-"hg" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/floor,/area/stellardelight/deck2/portescape)
-"hh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"hi" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/body_record_disk,/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"hj" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"hk" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"hl" = (/turf/simulated/wall/bay/green,/area/crew_quarters/kitchen)
-"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"hn" = (/turf/simulated/wall/bay/white,/area/medical/cryo)
-"ho" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"hp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"hq" = (/obj/structure/sign/department/ass,/turf/simulated/wall/bay/brown,/area/storage/primary)
-"hr" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering EVA Storage"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop)
-"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"hu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"hv" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"hw" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"hx" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"hy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"hz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"hA" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"hB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"hC" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"hD" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"hE" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"hF" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"hH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"hI" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"hJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"hK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"hL" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"hM" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"hN" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2/O2 Filter"; tag_east = 4; tag_north = 2; tag_south = 3; tag_west = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"hO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"hP" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/disposal/wall/cleaner{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"hQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"hR" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"hS" = (/obj/effect/floor_decal/milspec/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"hT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Resleeving"; sort_tag = "Resleeving"},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"hU" = (/obj/structure/disposalpipe/tagger/partial{dir = 8; name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"hV" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"hW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"hX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"hY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"hZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"ib" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"ic" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"ie" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"if" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"ig" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ih" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"ii" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics)
-"ij" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32; pixel_y = -32},/obj/structure/table/bench/steel,/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"ik" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"il" = (/obj/machinery/vending/assist,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"im" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"in" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"io" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 8},/obj/effect/landmark/start/intern,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"ip" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych)
-"ir" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar)
-"is" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"it" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"iu" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"iv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"ix" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"iy" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"iz" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"iA" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage)
-"iB" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/requests_console/preset/cargo{pixel_y = 30},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"iC" = (/obj/structure/sink/kitchen{pixel_y = 20},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"iD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"iE" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard)
-"iF" = (/obj/machinery/door/window/brigdoor/northleft{dir = 4; name = "Kitchen"; req_access = list(28)},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"iG" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Power - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; name = "Main"; output_level = 1e+006},/turf/simulated/floor/plating,/area/engineering/storage)
-"iH" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"iI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"iJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"iK" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"iL" = (/obj/structure/grille,/obj/structure/shuttle/window,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "starboard_escape_berth"; landmark_tag = "starboard_ship_berth"; name = "Stellar Delight Escape Pod Starboard"},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape)
-"iN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen)
-"iO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"iP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/requests_console/preset/medical{pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"iQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore)
-"iR" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/engineering/engine_room)
-"iS" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"iT" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"iU" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"iW" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 8; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = 25},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"iX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar)
-"iY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"iZ" = (/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"ja" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"jc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"jd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"jf" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/injector_maker{pixel_y = 21},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"jg" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"ji" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jj" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/storage/art)
-"jk" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"jm" = (/obj/structure/table/reinforced,/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"jn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"jo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/turf/simulated/floor,/area/hydroponics)
-"jp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"jq" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"jr" = (/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"js" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"jt" = (/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"jw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"jx" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"jy" = (/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = -35},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -29},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"jA" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"jB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"jC" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jD" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"jE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"jF" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jG" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"jI" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; pixel_y = 6},/turf/simulated/floor/wood,/area/medical/psych)
-"jJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jK" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"jL" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"jM" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hydroponics)
-"jN" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"jO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room)
-"jP" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"jQ" = (/turf/simulated/floor/reinforced,/area/quartermaster/storage)
-"jS" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"jT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"jU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "bridgelockdown"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/bridge)
-"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"jW" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"jX" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/medical/psych)
-"jY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"jZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"ka" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room)
-"kb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage)
-"kc" = (/obj/machinery/computer/power_monitor,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"kd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"ke" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/medical/psych)
-"kf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"kg" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"kh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"ki" = (/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 32},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"kj" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"kk" = (/obj/machinery/vending/blood,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"kl" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"km" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ko" = (/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,/obj/structure/table/reinforced,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"kp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"kq" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"kr" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"ks" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/mech_recharger{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/cell_charger{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/recharger{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/recharge_station{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/arcade/battle,/obj/item/weapon/circuitboard/arcade/clawmachine{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/jukebox{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"kt" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/aftport)
-"ku" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"kv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"kx" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"ky" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"kz" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "cold loop pump"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"kA" = (/obj/structure/table/reinforced,/obj/random/toolbox,/obj/item/device/geiger,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"kB" = (/obj/structure/table/standard,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"kC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"kD" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom)
-"kE" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area)
-"kF" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"kG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"kH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"kI" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"kJ" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"kK" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"kL" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"kM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"kN" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"kO" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"kP" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"kQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"kR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/turf/simulated/floor,/area/hydroponics)
-"kS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"kT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Tech Storage"; req_access = list(23); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva)
-"kV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"kW" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"kX" = (/obj/machinery/vending/dinnerware,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"kY" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"kZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"la" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"lc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych)
-"ld" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Medical"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#a6753d"; fill_color = "#75736f"; name = "Quartermaster"; req_access = list(41); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/qm)
-"lf" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"lg" = (/obj/structure/closet/secure_closet/captains,/obj/item/clothing/glasses/omnihud/all,/obj/item/weapon/disk/nuclear,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/storage)
-"li" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"lj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"lk" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/southright{dir = 1; name = "Engineering Hardsuits"; req_one_access = list(11)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"ll" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"lm" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"ln" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"lo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"lq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"lr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"ls" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"lt" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"lv" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"lw" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/powermonitor{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rcon_console,/obj/item/weapon/circuitboard/atmoscontrol{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/drone_control{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"lx" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"ly" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"lz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"lA" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/engineering/engine_room)
-"lB" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"lC" = (/obj/machinery/computer/communications{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"lD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"lF" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"lG" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"lI" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westleft{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"lJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area)
-"lK" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"lL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"lM" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/space,/area/space)
-"lN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"lO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"lP" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"lQ" = (/obj/structure/sign/directions/chapel{dir = 1; pixel_x = 32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 1; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore)
-"lR" = (/obj/machinery/vending/wardrobe/virodrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"lS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"lT" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/structure/sign/department/bar{pixel_y = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"lU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"lV" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_interior"; locked = 1; name = "Engine Airlock"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "engine_airlock"; name = "interior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room)
-"lW" = (/obj/machinery/medical_kiosk{pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"lX" = (/obj/machinery/door/window/southright{dir = 1; name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"lY" = (/obj/structure/sign/directions/library{dir = 1; pixel_x = -32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 1; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore)
-"lZ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"ma" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"mb" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"md" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/loadout_misc,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"me" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"mf" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"mg" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"mh" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"mi" = (/obj/structure/sign/department/bridge{pixel_x = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"mj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"mk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"ml" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics)
-"mm" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"mn" = (/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"mo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"mq" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage)
-"mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room)
-"ms" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"mt" = (/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"mu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring)
-"mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"mw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"mx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"mz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"mA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"mB" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"mC" = (/obj/machinery/power/emitter{anchored = 1; dir = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"mD" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"mE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"mG" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"mH" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/light{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"mI" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos)
-"mJ" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"mK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 2"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery2)
-"mL" = (/obj/structure/flora/pottedplant/small,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area)
-"mM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"mN" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"mO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engineering_monitoring)
-"mP" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/wood,/area/medical/psych)
-"mQ" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"mR" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"mS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/grass,/area/hydroponics)
-"mT" = (/turf/simulated/wall/bay/steel,/area/storage/art)
-"mU" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"mV" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"mW" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"mX" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"mY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"mZ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"na" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 8},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"nb" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"nd" = (/turf/simulated/wall/bay/white,/area/medical/surgery2)
-"nf" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"ng" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room)
-"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"nm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"no" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"np" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange,/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"nq" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva)
-"nr" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage)
-"ns" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Engineering"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"nt" = (/turf/simulated/wall/bay/brown,/area/crew_quarters/recreation_area)
-"nu" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#c9892e"; id_tag = "captaindoor"; name = "Captain's Office"; req_access = list(20); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/captain)
-"nv" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"nw" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"ny" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/co2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"nA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"nB" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"nC" = (/obj/machinery/appliance/cooker/grill,/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"nD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"nE" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"nF" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"nG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"nH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"nI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"nJ" = (/obj/structure/cable/white{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"nK" = (/turf/simulated/wall/bay/r_wall/blue,/area/bridge)
-"nL" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"nM" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"nN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"nO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_eva)
-"nP" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"nQ" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/machinery/requests_console{department = "Service"; dir = 1; pixel_y = -26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"nR" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"nS" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"nT" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"nU" = (/obj/structure/table/steel_reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"nV" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"nW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"nX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"nZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"oa" = (/turf/simulated/wall/bay/brown,/area/maintenance/stellardelight/substation/engineering)
-"ob" = (/obj/effect/shuttle_landmark/premade/sd/deck2/starboard,/turf/space,/area/space)
-"oc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"od" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"oe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"of" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"og" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"oh" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"oi" = (/obj/structure/sign/department/bridge{pixel_x = -32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"oj" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"ok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics)
-"ol" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"om" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"on" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"oo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"op" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"oq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"os" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/blue,/obj/structure/sign/deck2{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central)
-"ot" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"ou" = (/obj/machinery/computer/supplycomp/control{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"ov" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop)
-"ow" = (/turf/simulated/wall/bay/r_wall/orange,/area/storage/tech)
-"ox" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"oy" = (/obj/machinery/door/blast/angled{dir = 4; id = "burnchamberlockvent"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"oz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics)
-"oA" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"oB" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"oC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"oD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(28); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen)
-"oE" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production)
-"oF" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"oG" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"oH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"oI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring)
-"oJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar)
-"oK" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"oL" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"oM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Art Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art)
-"oO" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"oP" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage)
-"oQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"oR" = (/turf/simulated/floor/plating,/area/engineering/storage)
-"oS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 4},/obj/effect/landmark/start/entertainer,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"oT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"oU" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"oV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"oX" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"oY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"oZ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"pa" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"pc" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"pd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics)
-"pe" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage)
-"pf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo)
-"pg" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"ph" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"pj" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"pk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Port Solar Array"; name_tag = "Port Solar Array"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"pl" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Cargo"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"pn" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/recharge_station,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"po" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"pp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"pq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"pr" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"pu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport)
-"pw" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port)
-"px" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage)
-"py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"pz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"pA" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"pB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"pC" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"pD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"pG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"pH" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"pI" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"pJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"pK" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring)
-"pL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"pM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"pN" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics)
-"pO" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"pP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/storage/art)
-"pQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape)
-"pR" = (/obj/structure/closet/gmcloset{name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"pS" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"pT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring)
-"pU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"pV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"pW" = (/obj/machinery/media/jukebox,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"pX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics)
-"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"qa" = (/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"qb" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"qd" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"qe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"qf" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/surgery2)
-"qg" = (/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"qh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"qi" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"qj" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/device/flashlight/lamp/green{pixel_y = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"qk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"ql" = (/obj/machinery/atmospherics/pipe/tank/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"qm" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"qn" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"qo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"qp" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics)
-"qq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"qr" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/storage)
-"qs" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/storage/art)
-"qt" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"qu" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"qv" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/storage)
-"qw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"qx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"qy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"qz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"qA" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/skills{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/med_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/secure_data{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/security,/obj/item/weapon/circuitboard/security/engineering{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/security/mining{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/stationalert_security{pixel_x = 3; pixel_y = -3},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"qC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"qD" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"qF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"qG" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"qH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"qI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"qJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"qL" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"qM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"qN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"qO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"qP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"qQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry)
-"qS" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"qT" = (/obj/structure/lattice,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftport)
-"qV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"qW" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"qX" = (/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/item/device/integrated_circuit_printer,/obj/structure/table/steel,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"qY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"qZ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck2{pixel_x = 32},/obj/structure/sign/directions/medical/morgue{pixel_x = -32},/obj/structure/sign/directions/medical/resleeving{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical/virology{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"ra" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"rb" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production)
-"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"rd" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"re" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"rg" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"rh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"ri" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"rk" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"rl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"rm" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"rn" = (/obj/machinery/appliance/cooker/fryer,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"rp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"rq" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"rr" = (/obj/structure/closet/walllocker_double/south{color = "#8da4a6"; pixel_x = -5},/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchen"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -25},/obj/machinery/light_switch{dir = 1; pixel_x = -1; pixel_y = -42},/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchenhallway"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -36},/obj/random/donkpocketbox,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"rs" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics)
-"ru" = (/obj/structure/bed/chair/bay/comfy/yellow{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"rv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Workshop"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop)
-"rx" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/primary)
-"ry" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Captain's Storage"; req_access = list(20)},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/card/id/gold/captain/spare{name = "\improper Captain's spare ID"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"rz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"rB" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"rC" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"rD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape)
-"rE" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/newscaster{pixel_y = 28},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"rF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"rG" = (/obj/structure/bed/chair/comfy,/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"rH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"rI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"rM" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"rN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/captain)
-"rO" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/belt/utility,/obj/item/stack/material/sandstone{amount = 5},/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled,/area/hydroponics)
-"rP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics)
-"rQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"rR" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portaft)
-"rT" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/tech)
-"rV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar)
-"rW" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos)
-"rX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#9c9c9c"; name = "Laundry"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker)
-"rY" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 23},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"rZ" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard)
-"sa" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"sb" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"sc" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"sd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics)
-"se" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"sg" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics)
-"si" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/structure/disposalpipe/down{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore)
-"sj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"sk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage)
-"sl" = (/obj/item/weapon/stool/padded{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"sm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/airlock_sensor{id_tag = "engine_sensor"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room)
-"sn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"so" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"sp" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"sq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/chemistry)
-"sr" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"su" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/floortube{dir = 1; pixel_y = -10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"sw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"sx" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos)
-"sy" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"sz" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"sA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics)
-"sB" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"sC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"sD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker)
-"sE" = (/obj/machinery/honey_extractor,/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"sF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"sG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/bay/brown,/area/quartermaster/storage)
-"sH" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"sI" = (/obj/structure/sign/deck2{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"sJ" = (/obj/machinery/vending/wardrobe/medidrobe,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"sK" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"sL" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"sM" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"sN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary)
-"sO" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"sP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"sQ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"sR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"sS" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/blue,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central)
-"sT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"sU" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/o2{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"sV" = (/obj/machinery/firealarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"sW" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/port)
-"sX" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"sY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = 32},/obj/machinery/camera/network/engine,/turf/simulated/floor/airless,/area/engineering/engine_room)
-"sZ" = (/obj/structure/closet/crate{icon_state = "crate"; name = "Grenade Crate"},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/tool/screwdriver,/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"ta" = (/turf/simulated/wall/bay/brown,/area/engineering/workshop)
-"tb" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"tc" = (/obj/structure/lattice,/turf/space,/area/stellardelight/deck2/exterior)
-"td" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"te" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"tf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"tg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room)
-"th" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"ti" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"tj" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"tm" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"tn" = (/obj/structure/table/standard,/obj/item/device/camera{pixel_x = -2; pixel_y = 9},/obj/item/device/camera{pixel_x = 2; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"ts" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"tt" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "qmwindows"; name = "Privacy Shutters"; pixel_y = 15},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"tu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"tv" = (/obj/structure/bed/psych,/obj/structure/sign/painting/library_secure{pixel_y = -30},/turf/simulated/floor/wood,/area/medical/psych)
-"tw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Starboard Solar Array"; name_tag = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"ty" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"tz" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"tA" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"tB" = (/obj/machinery/firealarm/angled,/obj/structure/frame,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"tC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"tD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"tE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"tF" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"tI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"tK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"tL" = (/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port)
-"tM" = (/obj/structure/table/rack,/obj/structure/bed/chair/wheelchair{dir = 4},/obj/structure/bed/chair/wheelchair{dir = 4},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"tN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"tP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"tQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"tT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"tU" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"tV" = (/obj/item/weapon/storage/box/nifsofts_medical{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/nifsofts_medical,/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -4; pixel_y = 4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = 7; pixel_y = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"tW" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"tX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"tZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"ua" = (/obj/effect/floor_decal/milspec/color/blue/corner,/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -29},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = -35},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"ub" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"uc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"ud" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"ue" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom)
-"uh" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"ui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/space,/area/space)
-"uj" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"uk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production)
-"ul" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"um" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"un" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"uo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering)
-"up" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"uq" = (/obj/structure/sign/directions/medical{dir = 8; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 22},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 47},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"ur" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"us" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/recharge_station,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"ut" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"uu" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop)
-"uv" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"uw" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"ux" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"uy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art)
-"uz" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"uA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/grass,/area/hydroponics)
-"uB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"uC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"uD" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"uE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"uF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/halls,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"uG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"uI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"uJ" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"uK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"uL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"uM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva)
-"uN" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"uO" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"uP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"uQ" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central)
-"uR" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"uT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"uU" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"uW" = (/obj/machinery/appliance/mixer/candy,/obj/machinery/light,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"uX" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"uY" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"uZ" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "bar"; name = "Bar Shutter Control"; pixel_x = 24},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -9},/obj/machinery/button/remote/blast_door{dir = 8; id = "barlockdown"; name = "Window Lockdown"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"va" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/medical/psych)
-"vb" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"vc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"vd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"ve" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"vf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"vg" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"vh" = (/obj/structure/closet/crate/freezer,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"vi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"vj" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"vk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"vo" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"vp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"vq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"vu" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"vw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"vx" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"vy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"vz" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"vA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"vB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"vC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"vD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"vF" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"vG" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/gloves/sterile/nitrile,/obj/item/clothing/gloves/sterile/nitrile,/obj/random/tetheraid,/obj/random/tetheraid,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"vH" = (/obj/effect/floor_decal/milspec/color/white/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"vI" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"vJ" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos)
-"vK" = (/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"vL" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"vM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"vN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"vO" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"vP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"vQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"vR" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"vS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"vU" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"vV" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"vW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"vX" = (/obj/machinery/vending/fitness,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"vY" = (/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"wa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"wb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"wd" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"we" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"wf" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"wg" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"wh" = (/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"wi" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central)
-"wk" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"wl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"wm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"wn" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/portescape)
-"wo" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"wp" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/combustionworkshop)
-"wq" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"wr" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"ws" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych)
-"wt" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"wu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"ww" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"wy" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"wz" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"wA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"wB" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port)
-"wC" = (/obj/machinery/recharger,/obj/item/weapon/storage/box/syringegun,/obj/item/weapon/gun/launcher/syringe,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"wD" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"wE" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"wF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"wG" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"wH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"wJ" = (/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/tiled,/area/storage/art)
-"wK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"wL" = (/obj/machinery/appliance/mixer/cereal,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"wM" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"wN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"wO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard)
-"wP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"wR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"wS" = (/obj/structure/bed/chair,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"wT" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck2/triage)
-"wV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"wW" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard)
-"wX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"wY" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftport)
-"wZ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"xa" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"xb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"xd" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/briefingroom)
-"xe" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"xg" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"xh" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"xi" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2O Filter"; tag_east = 2; tag_south = 1; tag_west = 7},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"xj" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"xk" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"xl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/structure/sign/atmos_air{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"xm" = (/obj/machinery/alarm/angled,/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"xn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "vinestart"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"xo" = (/obj/machinery/computer/supplycomp/control,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"xp" = (/turf/simulated/wall/bay/white,/area/medical/psych)
-"xq" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"xr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"xt" = (/obj/machinery/pipedispenser/disposal,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"xu" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"xv" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{pixel_x = 9},/obj/item/weapon/paper_bin{pixel_x = -7; pixel_y = -2},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"xw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"xy" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central)
-"xz" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"xA" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"xB" = (/obj/machinery/computer/station_alert/all,/obj/structure/panic_button{pixel_y = 32},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"xC" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"xD" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"xE" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"xG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"xH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Mental Health"; req_access = list(64); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/psych)
-"xI" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/accessory,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"xJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/biochemistry/full,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"xK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"xL" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"xM" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"xN" = (/mob/living/simple_mob/animal/passive/mouse/brown/feivel,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"xO" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"xP" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"xQ" = (/obj/structure/sign/redcross,/turf/simulated/wall/bay/white,/area/medical/reception)
-"xR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"xU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"xV" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"xW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/phoron{pixel_x = -32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"xX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"xY" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"xZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"ya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/nosmoking_1{pixel_y = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"yc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport)
-"ye" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"yf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"yg" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"yh" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"yi" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_access = list(11,24); req_one_access = null; stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring)
-"yj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room)
-"yk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"yl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage)
-"ym" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/department/atmos{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"yn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"yo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych)
-"yp" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape)
-"yq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"yr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"ys" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"yu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"yv" = (/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"yw" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"yx" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"yy" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"yz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"yA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva)
-"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"yC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"yE" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"yF" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"yG" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"yH" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"yJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge)
-"yK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"yM" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"yN" = (/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; locked = 1; name = "Burn Chamber"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor/reinforced,/area/stellardelight/deck2/combustionworkshop)
-"yP" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"yQ" = (/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"yR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"yT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"yU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"yV" = (/obj/item/device/sleevemate,/obj/item/device/denecrotizer/medical,/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/gun/energy/mouseray/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"yW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftstarboard)
-"yX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westleft{dir = 4; name = "Animal Pen"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics)
-"yY" = (/obj/machinery/camera/network/halls{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"yZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"za" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room)
-"zb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"zc" = (/obj/structure/sign/department/chem{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"zd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"zf" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"zh" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"zi" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"zj" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"zk" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"zm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"zo" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"zp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"zq" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"zr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics)
-"zs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"zt" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"zu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"zv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"zw" = (/obj/structure/bed/chair/backed_red{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"zy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"zz" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"zC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"zD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"zG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"zH" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"zI" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars)
-"zJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"zK" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"zL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/firealarm/angled,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/medical/cryo)
-"zM" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"zN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"zO" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"zP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"zQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore)
-"zR" = (/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"zS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"zT" = (/obj/machinery/shieldgen,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/engineering/storage)
-"zU" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery)
-"zV" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"zW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/trash_pile,/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"zX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"zY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"zZ" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Aa" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"Ab" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"Ae" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"Af" = (/obj/structure/table/reinforced,/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Ah" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape)
-"Ai" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Aj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Ak" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Al" = (/obj/structure/table/fancyblack,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"Am" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"An" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Ao" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Ap" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Ar" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"As" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Scrubber to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"At" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"Au" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space)
-"Av" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Aw" = (/obj/machinery/light{dir = 8},/obj/structure/sign/directions/engineering/atmospherics{dir = 8; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard)
-"Ax" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/vending/wallmed1/public{pixel_x = 29},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Ay" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Az" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage)
-"AA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"AB" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"AC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"AE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"AF" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"AG" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"AI" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"AK" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage)
-"AL" = (/obj/machinery/light{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 6; pixel_x = 32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport)
-"AM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/art)
-"AN" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"AO" = (/obj/structure/table/darkglass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/button/remote/airlock{id = "captaindoor"; pixel_x = -15; pixel_y = 2},/obj/item/weapon/stamp/captain{pixel_x = 10; pixel_y = 6},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"; pixel_x = 11; pixel_y = -3},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"AP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"AR" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics)
-"AS" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/algae_farm{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"AT" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"AU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"AW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"AX" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"AY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"AZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ba" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Bb" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Bc" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Bd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Be" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Bf" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Bg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard)
-"Bh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art)
-"Bj" = (/obj/machinery/smartfridge/produce/persistent_lossy,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/kitchen)
-"Bk" = (/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"Bl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 1"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery)
-"Bm" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Bn" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder{pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Bo" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Bp" = (/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"Bq" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"Br" = (/obj/structure/shuttle/window,/obj/structure/grille,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "port_escape_berth"; landmark_tag = "port_ship_berth"; name = "Stellar Delight Escape Pod Port"},/turf/simulated/floor,/area/stellardelight/deck2/portescape)
-"Bs" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Bu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Bv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Bw" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port)
-"Bx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"BA" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore)
-"BB" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"BC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"BD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area)
-"BE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"BF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"BG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"BH" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"BI" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"BJ" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"BK" = (/obj/item/weapon/stool/padded,/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"BL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"BM" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/cargo,/obj/item/device/retail_scanner/cargo,/obj/item/weapon/stamp/accepted,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"BN" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering)
-"BO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"BP" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"BQ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"BR" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"BS" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = 9; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"BT" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/storage)
-"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"BV" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"BW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"BX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"BY" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Cb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"Cc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Cd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Ce" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"Cf" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Cg" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"Ch" = (/obj/machinery/atmospherics/pipe/tank/oxygen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Cj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Ck" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Cl" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"Cm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Cn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Co" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Cp" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Cq" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Cr" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Ct" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Cu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Cv" = (/obj/machinery/gear_painter,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Cx" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/engineering,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"CA" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"CB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"CC" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"CD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"CE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"CF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"CG" = (/obj/machinery/computer/ship/helm,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"CH" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"CI" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"CJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"CK" = (/obj/structure/table/fancyblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/toy/desk/stellardelight{pixel_x = -11; pixel_y = -8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"CL" = (/obj/structure/table/reinforced,/obj/random/maintenance/clean,/obj/random/powercell,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"CM" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/orange{icon_state = "1-8"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"CO" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"CP" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"CQ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"CR" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"CS" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"CT" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"CU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"CV" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/clothing,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"CW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"CY" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"CZ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Da" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Dc" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Dd" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"De" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Df" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Dg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Dh" = (/obj/machinery/computer/med_data,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Di" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Dj" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Dk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#ffffff"; id_tag = "MedbayFoyer W"; name = "Medbay Foyer"; req_access = list(5); req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage)
-"Dl" = (/obj/structure/bed/chair/bay/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"Dm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Dn" = (/turf/simulated/floor/wood,/area/medical/psych)
-"Do" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"Dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"Ds" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Dt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Du" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/undies_wardrobe,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"Dv" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Dw" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_eva)
-"Dx" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 4},/obj/item/weapon/clipboard,/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"Dy" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Dz" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Chemistry"; req_access = list(33); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/chemistry)
-"DA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport)
-"DB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"DC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"DD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/freezer{pixel_y = 24},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"DF" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"DG" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"DH" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"DI" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"DJ" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-8"},/turf/simulated/floor,/area/medical/cryo)
-"DL" = (/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"DM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"DN" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"DO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"DP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"DQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"DR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"DS" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"DT" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"DV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/department/cargo{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"DW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"DX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"DY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"DZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ea" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "d2_starmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_starmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_starmaint_airpump"; tag_chamber_sensor = "d2_starmaint_sensor"; tag_exterior_door = "d2_starmaint_exterior"; tag_interior_door = "d2_starmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_starmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Ec" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Ed" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tape_roll,/obj/item/weapon/clipboard,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Ee" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Ef" = (/turf/simulated/open,/area/stellardelight/deck2/aftport)
-"Eg" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ei" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Ej" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Ek" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"El" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Em" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"En" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Eo" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Ep" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"Eq" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Er" = (/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Es" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Et" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"Eu" = (/obj/effect/shuttle_landmark{base_area = /area/quartermaster/storage; base_turf = /turf/simulated/floor/reinforced; docking_controller = "cargo_bay"; landmark_tag = "supply_station"; name = "Ship Cargo Bay"},/turf/simulated/floor/reinforced,/area/quartermaster/storage)
-"Ev" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Ew" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"Ex" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5,24); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo)
-"Ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary)
-"Ez" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"EA" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"EC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"ED" = (/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/table/darkglass,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"EE" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"EF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production)
-"EG" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"EI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"EJ" = (/obj/machinery/computer/crew{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"EK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"EL" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"EM" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"EN" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"EO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/black,/obj/effect/landmark/start/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"EP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"EQ" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"ER" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/storage)
-"ES" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics)
-"ET" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"EU" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"EV" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"EW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"EX" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"EZ" = (/obj/machinery/vending/tool,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"Fa" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Fb" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Fc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Fd" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"Fe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Ff" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Fg" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Fh" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Fi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; pixel_y = 24; req_one_access = null; tag_door = null},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Fk" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"Fl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Fm" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Fn" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"Fo" = (/obj/machinery/power/solar_control{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Fq" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Fr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"Fs" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Ft" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Fw" = (/obj/structure/table/gamblingtable,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"Fx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/button/ignition{id = "castfireball"; pixel_y = 28},/obj/machinery/light{dir = 4},/obj/machinery/button/remote/blast_door{id = "burnchamberlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 31},/obj/machinery/button/remote/blast_door{id = "burnchamberlockvent"; name = "Chamber Vent"; pixel_x = -1; pixel_y = 37},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; sensors = list("burn_chamber" = "Burn Chamber"); throwpass = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Fy" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Fz" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"FA" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/nifsoft_shop,/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"FB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"FC" = (/obj/structure/closet/secure_closet/bar,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"FD" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "atmos_out"; use_power = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"FE" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"FF" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"FG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"FH" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"FI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"FJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar)
-"FK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"FM" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"FN" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/grinder{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/grill{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/fryer{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/oven{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/cerealmaker{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/candymachine{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/biogenerator{pixel_x = 3; pixel_y = -3},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"FP" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"FQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"FR" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/overwear,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"FS" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"FT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"FU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"FV" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"FW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/floortube{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"FX" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"FY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"FZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Ga" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Gb" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Gd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Ge" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Gf" = (/turf/simulated/wall/bay/orange,/area/maintenance/stellardelight/substation/engineering)
-"Gg" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"Gh" = (/obj/machinery/atmospherics/binary/pump{name = "CO2 to O2 Generators"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Gi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Gj" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Gl" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Gn" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Go" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Gp" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Gq" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore)
-"Gr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"Gs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport)
-"Gt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"Gu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Gv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Gw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Gx" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Gy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Gz" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"GA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"GB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"GD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production)
-"GE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"GF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"GG" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"GI" = (/obj/effect/landmark{name = "Observer-Start"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight/center,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"GJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos)
-"GK" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"GL" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"GM" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics)
-"GN" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape)
-"GO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"GP" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"GQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/closet/firecloset,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"GR" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"GS" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 10},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"GT" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"GV" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"GX" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"GY" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"GZ" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Ha" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"Hb" = (/obj/item/modular_computer/console/preset/command,/obj/machinery/camera/network/command,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Hc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Hd" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard)
-"He" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Hf" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Hg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central)
-"Hh" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Hi" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Hj" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Hk" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Hl" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Hm" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring)
-"Ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Hp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"Hq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering)
-"Hr" = (/turf/simulated/wall/bay/white,/area/medical/surgery)
-"Hs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Ht" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Hu" = (/obj/structure/table/standard,/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Hv" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room)
-"Hw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Hx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/engineering/storage)
-"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Hz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"HA" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"HB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/medical/psych)
-"HC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"HD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"HE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"HF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"HG" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"HH" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"HI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"HJ" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/kitchen)
-"HK" = (/turf/simulated/wall/bay/orange,/area/engineering/locker_room)
-"HL" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"HM" = (/obj/structure/table/reinforced,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"HN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"HO" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"HP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Primary Tool Storage"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary)
-"HQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar)
-"HR" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"HS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"HT" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage)
-"HV" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"HW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/locker)
-"HX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"HY" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/emblem/stellardelight{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"HZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Ia" = (/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/random/medical,/obj/item/weapon/storage/box/beakers{pixel_x = 14; pixel_y = 10},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Ib" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Id" = (/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Ie" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"If" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Ig" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ih" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Ii" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ij" = (/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module/nano,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive/micro,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card/wired,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit/small,/obj/item/weapon/computer_hardware/tesla_link,/obj/item/weapon/computer_hardware/nano_printer,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/device/multitool,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Ik" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Il" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Im" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"In" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Io" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/device/retail_scanner/command,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Ip" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftport)
-"Iq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Ir" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"Is" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"It" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"Iu" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Iv" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Iw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Ix" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = -32},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Iz" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"IA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"IB" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"IC" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"ID" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"IE" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area)
-"IF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"IG" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"IH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"II" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Glass"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/locker_room)
-"IJ" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"IL" = (/obj/structure/table/steel_reinforced,/obj/machinery/keycard_auth{pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"IN" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Distro"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"IO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"IQ" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"IR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/cargo{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"IT" = (/obj/machinery/vending/wardrobe/chemdrobe,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"IU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production)
-"IV" = (/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"IW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"IX" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"IY" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"IZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Ja" = (/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/partslathe,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Jb" = (/obj/machinery/shield_capacitor,/turf/simulated/floor/plating,/area/engineering/storage)
-"Jd" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Je" = (/obj/structure/sign/directions/bar{dir = 1; pixel_y = 25},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Jf" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardaft)
-"Jg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Jh" = (/turf/space,/area/space)
-"Ji" = (/obj/machinery/computer/arcade/orion_trail,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Jj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva)
-"Jl" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Jm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Jn" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage)
-"Jp" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/grass,/area/hydroponics)
-"Jq" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/fore)
-"Jr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Js" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Jt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Jv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Jw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Jx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Jy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"JB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art)
-"JC" = (/obj/structure/sign/department/cargo{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"JD" = (/obj/machinery/computer/power_monitor{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"JE" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"JF" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"JG" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"JH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"JI" = (/obj/effect/floor_decal/milspec/color/green/half,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"JJ" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"JK" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"JL" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"JM" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"JN" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"JP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"JQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"JR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area)
-"JS" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"JT" = (/obj/machinery/reagentgrinder,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"JV" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"JW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"JX" = (/obj/machinery/shield_gen,/turf/simulated/floor/plating,/area/engineering/storage)
-"JY" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/art)
-"JZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm)
-"Ka" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Kb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"Kc" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics)
-"Kd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Ke" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary)
-"Kf" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Kg" = (/obj/structure/table/glass,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Kh" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Kj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/vending/event,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Kk" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Kl" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage)
-"Km" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Kn" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Ko" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Kp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Kq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/obj/machinery/light{dir = 1},/obj/machinery/vending/wardrobe/atmosdrobe,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Kr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva)
-"Ks" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Kt" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Ku" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Kv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Kw" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Kx" = (/obj/structure/table/woodentable,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/item/weapon/flame/lighter/zippo{pixel_x = 2},/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"Ky" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Kz" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars)
-"KA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"KB" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"KD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"KG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"KH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"KI" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage)
-"KJ" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/starboard)
-"KK" = (/turf/simulated/wall/bay/r_wall/green,/area/hydroponics)
-"KL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore)
-"KM" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"KN" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"KP" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"KQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"KR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"KS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage)
-"KT" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"KU" = (/obj/machinery/vending/coffee,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"KV" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"KW" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"KX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"KY" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"La" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Lb" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-"Lc" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"Ld" = (/obj/item/modular_computer/console/preset/medical{dir = 4},/obj/effect/floor_decal/milspec/color/white/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Le" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Lf" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Lg" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Lh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Li" = (/obj/machinery/floodlight,/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/storage)
-"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Lm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ln" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Lp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"Lq" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Lr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Ls" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Lt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"Lu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/northright{dir = 2; name = "Cargo Ordering"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage)
-"Lv" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Lw" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva)
-"Lx" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Ly" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"Lz" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"LB" = (/obj/machinery/power/solar_control{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"LC" = (/obj/machinery/computer/crew{dir = 8},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"LD" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"LE" = (/turf/simulated/wall/bay/r_wall/steel,/area/quartermaster/storage)
-"LF" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/fiftyspawner/cardboard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"LG" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"LH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"LI" = (/turf/simulated/wall/bay/orange,/area/engineering/engineering_monitoring)
-"LK" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"LL" = (/obj/machinery/door/window/brigdoor/northleft{name = "Bar"; req_access = list(25)},/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"LM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/portescape)
-"LN" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"LO" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hydroponics)
-"LP" = (/obj/structure/table/woodentable,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/civilian,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"LQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"LR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"LS" = (/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics)
-"LT" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"LU" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Distro Loop Drain"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"LV" = (/obj/structure/table/glass,/obj/structure/sign/department/operational{pixel_x = 32},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"LW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"LX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"LY" = (/turf/simulated/wall/bay/brown,/area/engineering/engine_eva)
-"LZ" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Ma" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/stack/cable_coil/random,/obj/item/weapon/hand_labeler,/obj/item/stack/cable_coil/random,/obj/item/device/floor_painter,/obj/machinery/camera/network/civilian,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"Mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Mc" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Md" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Me" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Mf" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "Phoron Filter"; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"Mh" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/rdserver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/protolathe{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/autolathe{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/mechfab{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/prosthetics{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Mi" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Mj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Mk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Ml" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard)
-"Mm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Mn" = (/obj/machinery/beehive,/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics)
-"Mo" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Mp" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage)
-"Ms" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Mt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/keycard_auth{pixel_x = 32},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"Mu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/n2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Mw" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 1},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Mx" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"My" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Mz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/secure{name = "Secure Tech Storage"; req_access = list(19,23)},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/tech)
-"MA" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/evac{dir = 8; pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port)
-"MB" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage)
-"MC" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"MD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"ME" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage)
-"MF" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"MG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"MH" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"MJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"MK" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"MM" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/obj/machinery/light/floortube{pixel_y = -4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"MN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"MP" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Direct Injector"},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"MQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"MR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"MS" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"MT" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"MU" = (/turf/simulated/wall/bay/green,/area/hydroponics)
-"MV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"MW" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/card,/obj/item/weapon/circuitboard/communications{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"MX" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"MY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Medical"; sortType = "Medical"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"MZ" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Na" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Nb" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Nc" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Nd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Ne" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore)
-"Nf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm)
-"Ng" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Nh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Nj" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Nk" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Nl" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Nm" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Nn" = (/obj/machinery/computer/ship/engines,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"No" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Np" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Nq" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Nr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Ns" = (/turf/simulated/floor/tiled,/area/storage/art)
-"Nt" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Nu" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/button/remote/blast_door{dir = 1; id = "psychshutter"; name = "Shutter Control"; pixel_x = -15; pixel_y = -28},/obj/effect/landmark/start/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych)
-"Nv" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Nw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Kitchen/Botany"; sortType = "Kitchen/Botany"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Ny" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Nz" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"NA" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars)
-"NB" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"NC" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"ND" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"NE" = (/obj/structure/reagent_dispensers/foam,/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"NF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"NG" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = 23},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"NH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"NJ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"NK" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"NM" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/storage)
-"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage)
-"NO" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = 32},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"NP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage)
-"NS" = (/obj/structure/table/rack/steel,/obj/item/instrument/violin,/obj/item/instrument/piano_synth,/obj/item/instrument/recorder,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area)
-"NU" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"NW" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard)
-"NX" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"NY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"NZ" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Oa" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Quartermaster-Office"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"Ob" = (/obj/structure/table/gamblingtable,/obj/random/coin/sometimes,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"Od" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage)
-"Og" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"Oh" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"Oi" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Oj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"Ol" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Om" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"On" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Oo" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Op" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Oq" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"Or" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Os" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"Ot" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Ou" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Ov" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Ow" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"Ox" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Oz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"OA" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"OC" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"OD" = (/obj/machinery/camera/network/command{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"OF" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room)
-"OG" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery2)
-"OH" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"OI" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"OJ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"OK" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"OL" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"OM" = (/obj/structure/foodcart,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"ON" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"OO" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers{name = "box of measuring cups"; pixel_x = 2; pixel_y = 3; starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"OP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"OQ" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"OR" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"OS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"OT" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/requests_console/preset/atmos{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"OU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"OV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"OW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"OX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"OY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"OZ" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Pc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Pd" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"Pe" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Pf" = (/obj/structure/sign/directions/evac{dir = 4; pixel_x = -32},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard)
-"Pg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/book/manual/cook_guide,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Ph" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Pi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Pj" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Pk" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"Pl" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/flora/pottedplant/smallcactus{pixel_y = 14},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"Pm" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Pn" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Po" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"Pp" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space)
-"Pq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Pr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Ps" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Pt" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Pu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore)
-"Pw" = (/obj/machinery/sparker{id = "castfireball"; pixel_x = 20},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"Px" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars)
-"Py" = (/obj/machinery/alarm/angled,/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Pz" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/medical/cryo)
-"PA" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage)
-"PC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"PD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/quartermaster/qm)
-"PE" = (/turf/simulated/wall/bay/white,/area/medical/reception)
-"PF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"PG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port)
-"PH" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"PJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"PK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"PL" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/sign/department/mail{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"PM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"PO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"PP" = (/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom)
-"PQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars)
-"PR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar)
-"PS" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{dir = 1; id = "cargounload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"PT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable/orange{icon_state = "4-8"},/obj/random/snack,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"PU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"PV" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"PW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"PY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/medical/cryo)
-"PZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Qa" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Qc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Qd" = (/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Qe" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Qf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Qg" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"Qh" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Qi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Qj" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Qk" = (/obj/machinery/computer/rcon{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Ql" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/console_screen,/obj/item/device/pipe_painter,/obj/item/weapon/pipe_dispenser,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/steel,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Qm" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Qn" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Qo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"Qp" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/structure/sign/department/operational{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"Qq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Qr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Qt" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"Qu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"Qv" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"Qw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Qx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Qy" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"Qz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room)
-"QA" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"QB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych)
-"QC" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"QD" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"QE" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"QG" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"QH" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"QI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"QJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -32},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"QK" = (/obj/machinery/atmospherics/omni/mixer{name = "Air Mixer"; tag_east = 1; tag_east_con = 0.79; tag_north = 1; tag_north_con = 0.21; tag_south = 2; tag_south_con = null; tag_west_con = null},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"QN" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -27},/obj/item/bodybag/cryobag{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag{pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"QP" = (/turf/simulated/wall/bay/white,/area/medical/cmostore)
-"QQ" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"QR" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"QT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring)
-"QU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engineering_monitoring)
-"QV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area)
-"QW" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"QZ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Ra" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/tech)
-"Rb" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Rc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"Rd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge)
-"Re" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Monitoring Room"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring)
-"Rf" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/book/manual/sd_guide,/obj/effect/floor_decal/milspec/color/blue/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Rh" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Ri" = (/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Rj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Rk" = (/obj/structure/sign/department/eng{pixel_x = 32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Rl" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"Rm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Rn" = (/obj/structure/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"Ro" = (/obj/machinery/vending/wardrobe/hydrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"Rq" = (/turf/simulated/open,/area/stellardelight/deck2/fore)
-"Rr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Rs" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Ru" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard)
-"Rv" = (/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production)
-"Rx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ry" = (/obj/machinery/particle_accelerator/control_box,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"Rz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"RA" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics)
-"RD" = (/obj/structure/sign/directions/kitchen{dir = 1; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"RE" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"RF" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"RG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"RH" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"RI" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"RJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"RK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"RL" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"RM" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"RN" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"RO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"RP" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"RQ" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/body_scanconsole{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"RR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"RS" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"RT" = (/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"RV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"RW" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/medical/psych)
-"RX" = (/obj/structure/table/standard,/obj/item/device/camera_film{pixel_x = 4; pixel_y = 11},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"RY" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room)
-"Sb" = (/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room)
-"Sc" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Tanks To Engines"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"Sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Se" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/plating,/area/engineering/storage)
-"Sf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Sg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Sh" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Sj" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Sk" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Sm" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Sn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"So" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/requests_console/preset/bridge{pixel_x = -30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Sp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Sq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/qm,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"Sr" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Ss" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"St" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"Su" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"Sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Sw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "engine_airlock"; name = "exterior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_exterior"; locked = 1; name = "Engine Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room)
-"Sx" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/bar)
-"Sy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics"; req_one_access = list(35,28); stripe_color = "#00ab03"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics)
-"Sz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production)
-"SA" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering)
-"SD" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"SE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore)
-"SF" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"SG" = (/obj/structure/table/rack/steel,/obj/item/device/slime_scanner,/obj/item/device/sleevemate,/obj/item/device/robotanalyzer,/obj/item/device/reagent_scanner,/obj/item/device/healthanalyzer,/obj/item/device/geiger,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"SH" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "privacyshutters"; name = "Shutter Control"; pixel_x = 25},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"SI" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"SK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/monitoring)
-"SL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"SM" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"SN" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"SO" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"SP" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"SQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"SR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ST" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"SU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"SV" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Bridge"; sortType = "Bridge"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"SW" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"SX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"SY" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"SZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Ta" = (/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Tc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Td" = (/obj/structure/sign/directions/evac{dir = 10; pixel_x = 32},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Te" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Port"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Tf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Tg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/cable/blue{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Th" = (/obj/machinery/computer/station_alert,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"Ti" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Tj" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Tk" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Tl" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Tm" = (/obj/structure/table/rack,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Tn" = (/obj/machinery/chem_master,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"To" = (/turf/simulated/wall/bay/orange,/area/engineering/workshop)
-"Tp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych)
-"Tq" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Waste to Filter"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Tr" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Ts" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/starboardescape)
-"Tt" = (/obj/effect/shuttle_landmark/premade/sd/deck2/port,/turf/space,/area/space)
-"Tu" = (/obj/machinery/atmospherics/binary/pump/fuel{dir = 8; name = "Tank Refuel"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"Tv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"Tw" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars)
-"Tx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"TA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"TB" = (/obj/structure/table/standard,/obj/item/weapon/storage/box{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box,/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"TC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"TD" = (/obj/structure/table/steel,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"TF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"TG" = (/obj/structure/table/reinforced,/obj/machinery/firealarm/angled,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"TH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"TI" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"TJ" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"TK" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"TL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"TM" = (/obj/effect/floor_decal/milspec/color/black/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"TN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"TO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"TP" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/white/corner,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"TQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape)
-"TR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"TS" = (/obj/structure/flora/pottedplant/tall,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"TU" = (/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar)
-"TV" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore)
-"TW" = (/obj/structure/sign/department/atmos{pixel_x = -32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"TX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"TZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Ua" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Ub" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Uc" = (/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard)
-"Ud" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Ue" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"Uf" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ug" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Uh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ui" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Uj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Uk" = (/obj/machinery/pipedispenser,/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Ul" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Um" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Un" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Ports to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Uo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"Up" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Uq" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Ur" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Us" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Ut" = (/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area)
-"Uu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom)
-"Uv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"Ux" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"Uy" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"Uz" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"UA" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"UB" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Engineering"; output_attempt = 0},/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"UC" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"UE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"UF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"UG" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage)
-"UH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop)
-"UJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"UK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"UL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"UM" = (/obj/effect/floor_decal/emblem/stellardelight,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"UN" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/storage/art)
-"UO" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"UQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"UR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port)
-"US" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"UT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"UU" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"UV" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/body_designer{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"UX" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"UZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Vb" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck2/triage)
-"Vc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Vd" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen)
-"Ve" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"Vf" = (/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Vg" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom)
-"Vh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Bar Backroom"; req_access = list(25); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar)
-"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Vj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage)
-"Vk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"Vl" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Trash"; sortType = "Trash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Vm" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage)
-"Vo" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/workshop)
-"Vp" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Vr" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"Vt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Vu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3; pixel_y = 13},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -1; pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Vw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"Vx" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Vy" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Vz" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/landmark/start/botanist,/turf/simulated/floor/grass,/area/hydroponics)
-"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"VB" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop)
-"VC" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"VD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore)
-"VE" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"VF" = (/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; name = "Briefing Room"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom)
-"VG" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"VH" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"VI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"VJ" = (/turf/simulated/floor/airless,/area/engineering/engine_eva)
-"VK" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"VL" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/tool/wrench,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"VN" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central)
-"VO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"VP" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port)
-"VS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 10},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 10},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"VT" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape)
-"VU" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker)
-"VV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"VW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"VY" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"VZ" = (/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Wa" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen)
-"Wb" = (/obj/structure/lattice,/turf/space,/area/space)
-"Wc" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/computer/stockexchange{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"We" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"Wf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"Wg" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Wh" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"Wi" = (/obj/machinery/computer/crew,/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Wj" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"Wk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Wl" = (/obj/machinery/vending/assist,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"Wm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Wn" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"Wo" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"Wq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore)
-"Wr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central)
-"Ws" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"Wu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Wv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Wx" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Wy" = (/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/reception)
-"WA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Atmospherics"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring)
-"WB" = (/obj/structure/table/glass,/mob/living/simple_mob/animal/passive/cat/jones,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"WC" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"WE" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"WF" = (/obj/structure/sign/directions/medical{dir = 4; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = 29},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 47},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = -32; pixel_y = 23},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"WG" = (/obj/structure/railing/grey,/turf/simulated/open,/area/quartermaster/storage)
-"WH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"WI" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"WJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"WK" = (/obj/structure/closet/emcloset,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"WL" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"WM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"WN" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/grass,/area/hydroponics)
-"WO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"WP" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/portescape)
-"WQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"WR" = (/obj/structure/table/wooden_reinforced,/obj/random/paicard,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"WS" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"WT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"WU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#e6ab22"; fill_color = "#877242"; name = "Fuel Storage"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/fuelstorage)
-"WV" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"WW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"WX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/captain,/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain)
-"WY" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/camera/network/medbay{dir = 8},/obj/machinery/injector_maker{pixel_x = 29},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"WZ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker)
-"Xa" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/chemistry)
-"Xb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Xc" = (/obj/machinery/shipsensors{dir = 1},/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar)
-"Xd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"Xe" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Xf" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop)
-"Xg" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Xh" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"Xi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Xj" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/storage)
-"Xk" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen)
-"Xl" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Xo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room)
-"Xp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"Xq" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"Xs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"Xt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"Xu" = (/obj/machinery/atmospherics/unary/freezer{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"Xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"Xx" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area)
-"Xy" = (/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"Xz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"XB" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/circuit_imprinter{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/borgupload{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech)
-"XC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"XD" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art)
-"XE" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"XF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv{name = "human repair kit"; pixel_x = -9; pixel_y = 9},/obj/item/weapon/storage/firstaid/adv{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 9},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"XG" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"XH" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering)
-"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"XJ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"XK" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"XL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard)
-"XM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "starboard_escape_berth"; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard)
-"XN" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage)
-"XO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"XP" = (/obj/machinery/status_display{pixel_y = 32},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"XQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"XR" = (/obj/machinery/suit_cycler/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"XS" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/computer/security/engineering,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"XT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"XU" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"XV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"XW" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/orange,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos)
-"XX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/turf/simulated/floor/wood,/area/quartermaster/qm)
-"XY" = (/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"XZ" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/medical/psych)
-"Ya" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Air to Distro"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"Yb" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Yc" = (/obj/structure/musician/piano{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Yd" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Ye" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Yf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/barbackroom)
-"Yg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/brown,/area/quartermaster/storage)
-"Yh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft)
-"Yi" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/barbackroom)
-"Yj" = (/obj/structure/table/standard,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Yk" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"Yl" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"Ym" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"Yn" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "chemistry"; name = "Chemistry Shutters"; pixel_x = -24; pixel_y = -30; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Yo" = (/obj/machinery/atmospherics/unary/heater{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"Yp" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Yq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room)
-"Yr" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage)
-"Ys" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry)
-"Yu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"Yv" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/n2o{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage)
-"Yw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hydroponics)
-"Yx" = (/obj/structure/sign/deck2{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"Yy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Yz" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"YA" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/floor,/area/stellardelight/deck2/starboardescape)
-"YB" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardaft)
-"YC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"YD" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"YE" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring)
-"YF" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art)
-"YG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"YH" = (/obj/machinery/beehive,/obj/machinery/camera/network/civilian{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"YI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception)
-"YJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics)
-"YK" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics)
-"YL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"YM" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom)
-"YN" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area)
-"YO" = (/obj/structure/table/gamblingtable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area)
-"YP" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"YQ" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port)
-"YR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring)
-"YS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"YT" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"YU" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"YV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"YW" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"YX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard)
-"YY" = (/turf/simulated/wall/bay/brown,/area/quartermaster/qm)
-"YZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore)
-"Za" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft)
-"Zb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; fill_color = "#ffffff"; name = "Kitchen Cold Room"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen)
-"Zc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "port_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape)
-"Zd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop)
-"Ze" = (/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"Zf" = (/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room)
-"Zh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva)
-"Zi" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/bodybag/cryobag{pixel_x = 1; pixel_y = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = 1},/obj/item/weapon/storage/box/lights/mixed{pixel_y = 4},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -2},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Zj" = (/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Zk" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard)
-"Zl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "kitchenlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/kitchen)
-"Zm" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Zo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Zp" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Zq" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"Zs" = (/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop)
-"Zt" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage)
-"Zu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art)
-"Zv" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/rxglasses{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/rxglasses,/obj/item/device/glasses_kit,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Zw" = (/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore)
-"Zx" = (/obj/item/modular_computer/console/preset/engineering{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge)
-"Zy" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen)
-"ZA" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/storage/primary)
-"ZC" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar)
-"ZD" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage)
-"ZE" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage)
-"ZF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport)
-"ZG" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior)
-"ZH" = (/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard)
-"ZI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"ZJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars)
-"ZK" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage)
-"ZL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen)
-"ZM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore)
-"ZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production)
-"ZO" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/device/radio/intercom{pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"ZP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room)
-"ZQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port)
-"ZR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/door/window/westright{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring)
-"ZS" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ZT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/button/remote/blast_door{id = "atmoswindowlockdown"; name = "Window Lockdown"; pixel_y = 56},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring)
-"ZU" = (/obj/machinery/computer/ship/sensors,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge)
-"ZV" = (/turf/simulated/floor,/area/stellardelight/deck2/aftport)
-"ZW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics)
-"ZX" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Starboard"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars)
-"ZY" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{id = "cargoload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage)
-"ZZ" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area)
-
-(1,1,1) = {"
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLbDNLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbseWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLseyKjxjxlZJhJhJhNLbDJhJhJhJhJhJhJhJhJhJhJhbDNLJhJhJhsejxyKjxjxlZNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbJhDilZWbNLNLdkJhJhJhJhWbJhWbJhJhJhJhdkNLNLWbsenPJhWbNLNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbWbJhJhDijxjxjxdMJhJhJhWbTUXcTUWbJhJhJhDijxtjjxnPJhJhWbWbNLdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLCZnPNLWbWbJhJhJhWbNLNLHQiroJoJoJHQoJoJoJHQoJoJoJHQHQdkNLWbJhJhJhWbWbDijxurNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLJhJhWbJhJhJhXkXkXkHQpnGnwGGnNkGnLPGnbOGnwGGnLTHQPRoJHQJhJhJhWbJhJhNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkJhJhXkXkXkZlZlXkiCiFYDQSMKMKMKYUMKzwMKYUMKMKzwaspWPemJHQHQYfYfYiYiJhJhdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbdkJhXkXkOAnCQGgrcWTaPnEVQSYUYUYUYUYUJloBlUfififiuXsPbpsPvgSxrGUCcBYiYiJhdkWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkXkXkrndmTaBmTagjTaPnEVQSNcGnicYUNcGnwqasVCdwdwdwdwdwdwAxSxbVTYUCIJYiiQdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVdXkFmoOYCBnAkOOpzTaPnEVBJNcCYlsqeUxCIwqasXUOnBVOnOnOnOnLLSxLNOgyMKxYiiQTVJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLhOZykXkiCElzyfPgVvBoGBYuZCFbdUGnoFYUxDiTWIRrsrrdpyhYpypywVGXVhKGFBLyEzYiYZTVBuiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLMdoDGiYpIWhZIWIWIWcwzJnUFMTCTCTCTCTCPcTCLRAYXqANfpfpfpfpaKuZSxRnUCNYgPcQdegkOoiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbDJhhOMdUbchwLuWVLlrYjrrpITaZLPnEVDIYUYUaYYUfBkubyYUqSsLmnMZDjZOnQHiSxFCJTYMpRYioGoGNbhbBuJhbDJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhseyKjxSEQxchchchchhliNBjhlGyGyNgHJSxSxrVrVbxSxiXSxFJSxSxrVrVSxSxSxSxSxSxflflflflaNaNaNaNrieAjxyZlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLWbKLGvchBkDDgQhlYKmlMUZoGjglRDpojrVGlTVGVGUQJeOWLsEElTVGXlpoVYaCiyFAflAeCVFRxIVUmdaNWOiQWbNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLdkNLJhaTGvchWaavcuhlgGBHjoNDjCaBKHtdKHKHKHKHKHkSDWpGKHKHKHKHKHAIKHKHmVZrHWRmWmWmWmyniVaNWOiQJhNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchvhACVHhlbqBHjoNDXCTMzzjFzzHOCtzzzzPKJLcozzzzCtHOzzjFzzjPXCsjflWZtWHVHVeMTjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTtJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchWaDPLWZbYJjMajauXCHRntntntntntntntJRntBDntntntntntntntTlrQFUrXCFeYtJeYrzCvHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhobJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhKLGvchOMBFHahlufBHjoNDXCofntJiMpGLWCmtycxABSudycfEYlXPSFfLntpHxThBflwttWHVHVRmKjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhNLNLNLdkJhJhaTGvchhlhlhlhlbtYHMUSrXCcPntYNdYmtmtBpDlDSDlEpDlBpmtmtFymUnteXxTZrHWhTRKRKRKpVrIsDWOiQJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLArUTNLWbKLGvKKrOpNafMnDqRoMUzOXCyhntDecCmtmtoSUXUXYOUXUXiomtmtcCDOntGaxTvjflhPevevmGevDuaNWOiQWbNLhkWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLcTjxjxSEKDKKsVyvdQojIssEMUQeXCaHntQZiOmtmtoSUXBpBKBpUXiomtmtiOkpntaPxTpZflflflflflflflaNFZeAjxjxgiNLNLNLJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhsejxjxnPNLJhKLGvKKZWUoDoifhhbcjoQeXCXekEHomtmtmtoSUXObFwUXUXiomtmtmtGAkEzsxTDCeCZAvuEZWlOJrErxWOiQJhNLDijxjxlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRWpiZiZvPhHUejoQeihqoQVaECyCyjvBpvStsvStsvSBphmlOlOfKlJlSkdZrKezmXySLXyXyxKEyWOBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRLOESGMUyiYSYMUhEZMekntQJmtmtctmtmtUtUtUtmtmtVMmtRiijnteVSUOVHPGGwvwvwvwvawsNaxBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhaTGvkRrtealfapYwzrSyPZbNmNntWRYcSILqmtmtUtIEUtmtmtuJmtsHsHntKnxTZrhqgRramFNEoTDdrxoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhKLGvKKLzQomzzbiZbSMUGYMVkVntntntntctmtmtUtUtUtmtmtVMntntntntUSWHYemTmTmTmTmTmTmTJYoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRbbpXsAEAiZaSgxQeXOZrDNRqRqntHEDLDLDLXxDLDLDLBCntRqRqdvNDxTZrmTqsmXTBMamQfHJYoGiQJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRkGiZiZwPiZaGlIQeXOZrxPRqRqntxELbLbtbNShDLbLblGntRqRqImNDxTZrAMRXNsNsNsUNBiAMoGBuJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkJhJhJhJhJhKLGvKKsdejiiJIKcRAMUHkXOZrWqRqlQntyGixscrgmLwfscixZZntlYRqGbNDxTZmmTtnNsNsNsUNXDAMoGBuJhJhJhJhJhdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbwJhJhJhJhJhaTGvkRVzWNWNfaWNqpjoQeXOZrVraAgAntntntntntntntntntntntBAaAklNDxgOVJBOkZupPZuwyjjJYoGiQJhJhJhJhJhbwJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRozokokaJokdFjoQeXOsOWkJqJqPAkrrHyFdGHYpayFYyysPAJqJqWksOjJZroMKEwJwJwJwJuyAMoGBuJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRpddPLSrPdPshyXQehdXiXiXiXiXiMiQXuEwKGIrjuEHyIKIKIKIKIKIKljZrmTNJmTmTmTmTuyAMoGBuJhlMJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLGvKKuAARJprPARmSjoQeuTuaRTRTkFcYRTRTRTGSUMENRTRTRTcYkFRTRTjyjisjmTYFcIcIcIcICgJYoGiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLUvKKKKKKKKhfKKKKKKnSuTRjnKnKnKnKnKjUjUjUjUjUjUjUnKnKnKnKnKBcjiZrJYJYJYJYJYJYJYJYySiQJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLVDOQGqsiJHNwbPmYBwVwjwVwnKfVnKnKxBkcLxewHbMwTPWiDhnKnKfVnKyrXvyrHdzKGQTgatNegvfdrliQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLyzEvCupSFcIwkKqyBweLRRminKnKnKSoZjruZxRfHLILLdhclooZnKnKnKoiEnMmanRSSVOtYbOtUJPiepiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLKLhOhOKLKLHzURURzPYVbARdzHRdlDSpXsULUjnDUjUjGPlBgCyJuCyJGdjklvHdHdZkHdiQBuBuiQiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwgmAapwVPVPMAxdxdxdxdIoCwBXZUCGNnfynvGWrNrNrNrNPfRuRurZrMXMHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhBrZcypVTLMsWBWPGsgYkVPVPtLxdmHPlxdkJCwVyJQwoJQZjJKfMrNSNlgrNwWRuRuzNBqHDSTKJAhGNTQfciLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhgfXbIfXLMsWBWPGsgCeVPVPVPugAdOLxdxdkDxdnKnKrNrNnurNrNDGEOrNRuRuRuEwBqHDPoKJrDpQbCpQYAJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwCbprpwMDVebAugrFcJcgdZMtxdnKnKrNryRHVEfSvKEDrNnLCCMkrZzkGtHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhrRrRrRQYQYrRrRRpBwBweLVebAugGVcbCKeritxdbLuQrNsBkyocuPuPforNWLCCMkHdHdZkHdYBXTXTYBYBYBJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhrRrREGKbKbRzKbWsFSBwpAVebAugGVAlcbGgSHxdwixyrNcZAOxvIVIVXRrNWLCClvHdpJSMSRunSRSRIrYBYBJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRREYhBwBwBwBwBwyPBwEIVembxdODFkFkPPVgVFVNHgrNlCWXOwIVsXgnrNIvCCMkHdEXHdHdHdHdHdTvPVYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRumYhBwYQvXmgBwBwBwMDVebAxdxdUuUuxdxdxdsSosrNrNrNrNrNrNrNrNiuCCMkHdHdHdYWKUusHdTvjBYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYizYhBwGcEcpLdnKoEcWFVeBPoHMjMjlldpABrkMjemMjzoHhIGuFmkweoHecCCuqXdIYPsrhXdaLHdTvpJXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYsnAPBwdXkICJMswFwFwFwFwFSDDaDaxZDaDaDaDaPOWrWrWrAAdBeZdBNrYXYXYXYXYXbaxXUAzSHdphXpXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVcNLNLyyJhJhJhJhJhrRkgFIBwfrtihrMoSXSXSXSXFPfvvHIbxnVZVZVZVZwlVZVZVZrcaFVZfIfvvRJGJGJGJGdyQdwbWyHdTvZaYBJhJhJhJhJhyyNLNLUfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLuKJhJhJhJhJhrRizYhBwMDtiCjxpxpipipipxpxpPEPEPEPEWzxQvNCivNxQWzXaXasqsqsqXasqsqsqXaXaNxJWxhHdTvpJYBJhJhJhJhJhuKNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFhZGZGbHCPJhJhJhJhrRdCYhBwoxtiCjxpqnsoGrmPkexpQhpMdKPELvlWRFzGRFwSQqXaeJvOxJjfTnOrLnBRKYXaCWNdXEHdTvJfYBJhJhJhJhDsGoZGZGcGJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeyHiHmZLeJhJhJhJhrRcVuLBwMDtiCjQBhCNudhTplcxHbiXbmekZRFRFRFwXRFRFKmRcJVFtfhjcXgFtckFtjcsqCWNdMkHdvQzWYBJhJhJhJhLeKhiHMxLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLyHUhMxSOCPJhJhJhrRaVYhBwzpIBCjQBDxECFrHBDnxpNhhpgHyaYImoXtPrwasvMqtfYnDvMSdgKyKyKyKyBbsqCWmmfsHdTvqaYBJhJhJhDskLyHUhMxSOCPJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqqGSOCPJhWbieqCYmBweLtiCjQByowswsfbRWxpVbDkkbVbKtIQeSqjeSUdxLXaHcolNFShFtRIadFtUHsqCWcSTkHdaIgdxcWbJhDskLwrCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxSOZGZGTwzvqYBwfrtiCjxpXZvatvjIjXxpZDdsiWVbEJefjGldWBggLCXaXaDzqQXavOYsmWvYhLXaCWcSyuHdqhmjFgZGhzkLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxNLWbJhFzXmfwBwvUtiZQHrHrHrHrHrHrHrHMhxuhKSWQxOiPrCrCHHyQNQzcrmexqfqfqfqfqfqfqfYzcSIXHdIehaCUJhWbNLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhwgNLyHUhCqUhMxNLieaaPkeEucBwWVtiCjHrOjhwzUdDDyHrFHhxOxVbVbVbVbVbVbVbVbVbujhjzXndxYhMOGVKoKndCWcSMkHdHSXrElsMxcNLyHUhCpUhMxNLNUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLNLNLNLNLCfzIebPxpkJPBwMDqItPHrHthVEesKuvHrbuAyfOKTwhfPKgHAOlwTwTqmLlkCvfndohXhhoOphQndcAcSgzHdamtwKzEaNACfNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLieFzsaFeDHbhfRxetUHrFqRMBhGeELHrQpLZJywzwzvewzwzFGBUzDWudrvILVndbsvLLhBvSsndCWTILHvpCcVXPQCUxcNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeIzyHIgCqIgMxNLJhFzFoPUCAwBICMYjdHrQyOmiDyUIZBlIhbJnTZKRQTLfxTRZKRQikGFhxNPGTmKOUHwGwcDVtndzZCoMkHdJwgpLBCUJhNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbFzTeGONBBwTZtihvHrwdztcaxjOCHrKVLlykZeZeQDzCKlKsZeZehRhxCdlPndOXfggJhFKwndCWCofCHdaMtpZXCUWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbjLCOGKLfBwcntiBfHrHrHrHrHrHrHrjKhxMbnjEoBafxviZKFEogfutTOEWYndndndndndndndJFCoMkHdFTPTNvGRWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOCPyHBECqBEMxJhJhWbuxZJdOBwTZtiNGEcGsjtxmnBHrHrVbEUwwQihAjpMHZeZeLahAdcIuEUVbndndIkqDPyXLXdrYCoXEHdpjvtjTWbJhJhyHBECpsCMxDskLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhMXZGCPNLWbWbJhJhJhuxMyAUBwdREscOcOydgKdjcjOiGxQPQPQPPvQPQPLZAyhxQPQPzQQPQPQPuzjzTNCxPFwOFQFQGplvHdNpjnjTJhJhJhWbWbNLDsZGUpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLLeJhWbWbWbJhFDMCPWdxbgWKteBxBxpvePYSFXbYDAQPQNUqlLguQPVbqZVbQPsJfFITlRQPBgMldIhJONXLKayxdEAjHdNpWgxcNLJhWbWbWbJhLeNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjWbLeJhJhWbBTBTBTBTeqlhbFeqeqeqeqeqyYYSCDaUbmQPZiKfcRKftVVbbnVbkknJaXLQjqQPbrbveNhJTdLIQUQUQULImOyimOtKtKtKtKWbJhJhLeWbSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhJhmIBTcxcxYvWvgMWxRNMuCTCTeqfnYSCDktEfQPtMKfeeKfIdVbbfVbxVkjQcnVZwQPfJeneNhJOuQUThNznsGzbZKWmOcmzTeltKtKJhJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhmImIeqezJSxuxioehNgYxuJSkQeqHGuleDwYwYQPkoXFcRKfyVVbVbVbjWPbTmftDfQPyWyWEjhyLrZRPhrqrqTcrqnfmOpecmelgStKtKJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLemImIfQeqQHQHoAoQAXqgqgoABYBYeqbkYSCDIpdLQPIaVSyIKfKfhiZvvGKfVqhnhnhnhnNWabeNhJOuQTrqivNZuDiSkhoIYrYrtXwDLisyKXkLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbrWsxuRtheqeqeqoooQDcacacTAeqeqeqMcYSCDZVqTQPXYXYXYXYXYXYKfKfKfkOpfzLDJhniEUceNhJOuQUGZEdKuYRQkJDmOHxAKOsehcdcpMBClWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLGJDBDBWoeqqlqlxWzMheWxvBsUcEcEeqMcYSFXbYALQPpgpgpgpgpgpgsZwCAGyEhnPYPzhnAwMldIhJRkLILILIReLILILImOdbdfddDTdlpxpxbTNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLGJrsDBXWeqezJSxuMfCRezNlxuJSuOeqfDYSFXFXsIQPQPQPQPQPQPQPQPQPQPQPhnExhnhnYxONdIfWkvHKaifkOIfmBeqdMrcciGddgUoRpxKIbTNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDsZGZGvJDBStQgeqmBmBoAoQAXacwIoAChCheqSQYSgwFXFXeicsRvQfjNtATJHjcKPtjNQfZFeOOzONONeThJZHHKMFSWdaKvmMnaqrHTHTWTlugVJbJbbTNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLNLtcmIDBWoeqeqeqeqmAoQAXQKAiNXeqeqeqnXdzcicizlBtciciMRcicicilnVkciciqbciJnKAJnJnnNbXOSIIgTAEiwdSnxoYERqVItgEnMoRJXJbbTtcNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSkuuovovovovHmbReqnEnEnykWwAheffRNxlmfmfeqSQYSFXHlAoeBeBeBUaeBeBeBxCBLeBeBUaeBzhXQLKVuupjSgLHKZfQQdWvbfUrpqrSeoPqrqrqrqrqrMBRYRYRYRYJxJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeoyubcqPwwpHmxriAJSJSxueIahAXnGtFHXsboLnrymEWJCdodododododoOPdqdqxGKRrvgqYYcXcXJZcXtadAdAdAToTorwToNmMvFsqrNMQAqrVfVfRsGusYGuHfKPniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovVBubgswpHmGheqNKNKoAWSueaoCHINOHwZwZylQngfzfdoMEbGWGWGdoTSzjzjzjwHzjHZNfedOaHpxotaLtRPLDtBxMjYToeoOZWwqrqvXjqrVfVfVfVfVfVfVfMTniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovvVyNIfwpwpnWeqeqeqooUnAsAXAWKizdeqeqylnwDQCDdoblLmHugbdoXNWeGEGESvDVNjNfduttSqNOtaXfAtZdEgqzeQVoOFtgkaqrqrfZqrXoibEPgWEPRbVfcrHvLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovNHgZVOFxwpRLbeszXSErAbTqQrLUYaYEOTCzWAxxQRpqVjhUYPakkxdoNNLuNNdoskdoNNYYdJBIXXcHtaLcbdYGqHUzuUVoOqxbRJkfvzZPbjVfUFBsVfVfVfBscraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeFfZsaqkPziaDDYZTtokMlaAboUagjavFlytyHsclTWzRczdododoMeRxTiouCSBMiBgNEMaelemEPDDrkYtakAUKYLbMvcfTVogcSbngSbQvRVyjVflxVfVfVfVfVfcraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhIxRQOZskPBGwpHmHmdTZSlaEkxNXKEqAngoltknpTHmHmHmHmvCAzarJjDMvyvqROvqUmuYgtYYbQedFnbUtagDAtGHFdoVywVoRGxzPduwFFzyzaEPsQVfVfKMVfVfcrmrLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLDtovkzlFkPKdMQHmEmAgVAtzQCZqqNVWuBUDOYZpvxBQwMvxHmUONNuIPHJNmwRhplXJwRhSWEYYYYcXJZYYtaCLWhvojYAfiIVolNMgRySbrBJEyjVfiRVfVfVfVfVfcraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovdHopSgVIvWHmAmFlkmeuuNVVCMCnXILknZdtFLFLFLboHmPCquSnwEhSmwgOLFMMwRhSUixkcenFPMSftaToToTohsToToVoisqJcLhXswLpfNVfUFBsVfVfVfBscraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfzuTrYTDXNyHmEtspNaiggyetqwmDimoqDmOvgBgBeHUkHmPLrewkeshSjDvqoCnzfzbWBOBOBOBOwNTKLYjmeFTGnbUUxqqrOFtgQzOFOFOFOFXoVxEPgWEPRbVfcrjOLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfIFpBApFavwHmAmhKUltNSSCaiJvDvnomCBalHCyBcMxtHmPCpcCmRxzjzjhShShSbBzjUiUiUiUirKkqLYyqtlSmfATXoXnHgIcftmOFsmcNOFpuVfVfVfVfVfVfMTniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovvksFADjEnAmunRPqFvmxDgYoXuqLqFIHqFqFfGqFXVtIHmUONNQjVidNPSdNdNdNORZYdNdNdNcyVlvAuMTOIlpUxaQmaWBBKBTXazlVbzYqSwUEGumCGuIxGumClAniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhiUJmovUIJdovukEFoERwoEGDoEoEUGUGUGUGWUUGUGUGUGTfgaHmPjNNAZpDpDcULXpDsufYETpDpDpDtuqkVpLYFYnoYdUgaOXztEgXKNnOOFOFOFOFOFOFOFOFnininininilqAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOsRWbuiKpQwIUIneUodKqCktDZNUGdiJMBdzVRlotDFUGaZqxHmsGYghtjQjQjQjQjQjQjQjQjQjQjQHNEhWcoaGfHqGflmNqNqqPlKjgnOilQlIjqXowMWghXBRaNLNLWbWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmAuPuPumaIUhuTHUYgeJtUYpYOdIqGUNoTuSdMGRUJoxUMJpKpbFiyejQjQjQjQjQjQjQjQjQjQjQHNSZkBoaXHtQGfWWSmSmSmJJZhkTQtzqsleKowCrkHTxRaNLNLNLWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukBZqOWJIAutOKDEUGEQSuzYJsZESuWjegjVGlHmJrEKDZjQjQjQjQjQjQjQjQjQjQjQHNJvHeoaUBvMGfQESPSPmvPIFVnOonNCJgliowowMzowrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaukTFpOpOeGXGpOsTUGZtLGygScMPayDRegKQFKHmUreRDZEujQjQjQjQjQjQjQjQjQjQHNjZaRoanpkNuocFNtlkqWjAlXnOSGNCJgtCMhqAJgASrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukukPmHIEiPJQuWMcvqMAVAVPBPBwmAVtkeyqqSKEHEKDZjQjQjQjQjQjQjQjQjQjQjQHNppIRBNBNSABNJkLwLwKrLwyAnqrTTDATvdvdvdpCFNrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaNLukukAvjsKkfjfqcvVmVmcvNLcvVmVmcvLeWbLEyTqtDZjQjQjQjQjQjQjQjQjQjQjQHNyRxwLEWbLenqVJVJnqNLnqVJVJrTJaiKUVlwbKksrTrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwukdVukrbSzSzcvmqVmcvNLcvmqVmcvLeWbLEUZWfDZjQjQjQjQjQjQjQjQjQjQjQHNHFZILEWbLenqDwVJnqNLnqDwVJrTrTrTRaRaRarTrTNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhUseWwuwuwuwumsZGmhZGmRZGQWCPWbWbDsZGCPWbWbDsgFNLLEyCIDinQaQaQaQaQaFWQaQaQaQaQanmIOhWLENLuGCPWbWbDsZGCPWbWbDsqiZGZGZGZGZGZGZGZGZGZGZGLgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwNLJhJhJhJhJhSOZGZGkLJhSOZGZGkLIiCPLELEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbELELENLLeSOZGZGkLJhSOZGZGkLJhJhJhJhJhNLNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLnIPuPuPuPuPumaJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjSOZGZGZGZGZGZGZGZGCPJhNLNLWbWbJhWbWbNLNLNLSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLNLNLLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhCQkLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
-JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh
->>>>>>> 5e30d29614... Merge pull request #14566 from Heroman3003/wall-locker-color
-=======
(1,1,1) = {"
Jh
@@ -58908,7 +35219,7 @@ WZ
CF
wt
hT
-hP
+hG
fl
ZA
zm
@@ -67097,5 +43408,4 @@ Jh
Jh
Jh
Jh
->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2
"}
diff --git a/maps/stellar_delight/stellar_delight_defines.dm b/maps/stellar_delight/stellar_delight_defines.dm
index b048663f34..c75d8ce7aa 100644
--- a/maps/stellar_delight/stellar_delight_defines.dm
+++ b/maps/stellar_delight/stellar_delight_defines.dm
@@ -15,6 +15,7 @@
#define Z_LEVEL_OFFMAP1 14
#define Z_LEVEL_GATEWAY 15
#define Z_LEVEL_OM_ADVENTURE 16
+#define Z_LEVEL_REDGATE 17
//Camera networks
#define NETWORK_HALLS "Halls"
@@ -157,6 +158,13 @@
list("Grass Cave")
)
+ lateload_redgate = list(
+ list("Teppi Ranch"),
+ list("Innland"),
+ list("Abandoned Island"),
+ list("Dark Adventure")
+ )
+
ai_shell_restricted = TRUE
ai_shell_allowed_levels = list(
Z_LEVEL_SHIP_LOW,
diff --git a/maps/submaps/surface_submaps/plains/dogbase.dmm b/maps/submaps/surface_submaps/plains/dogbase.dmm
new file mode 100644
index 0000000000..b652282219
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/dogbase.dmm
@@ -0,0 +1,1855 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"ae" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"ay" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/tajaran,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"aF" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/submap/DogBase)
+"aX" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/tajaran,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"bl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"bw" = (
+/obj/item/weapon/storage/belt/janitor,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"bx" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"bT" = (
+/obj/structure/safe,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"cS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"ec" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eA" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eI" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eZ" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"fg" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"fI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"hl" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"hp" = (
+/turf/template_noop,
+/area/template_noop)
+"hA" = (
+/obj/structure/table/woodentable,
+/obj/item/stolenpackage,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"hZ" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"ik" = (
+/obj/random/mob/merc/all,
+/turf/template_noop,
+/area/template_noop)
+"iv" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone/ribs,
+/obj/random/maintenance/research,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"jz" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"jD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"jO" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/unathi,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"kl" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"km" = (
+/obj/effect/decal/remains/human,
+/turf/template_noop,
+/area/template_noop)
+"lb" = (
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lh" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"lk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"lm" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lr" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"lN" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"lX" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"ng" = (
+/mob/living/bot/cleanbot{
+ faction = "malf_drone"
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"np" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/gun/projectile/pistol,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"oW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"pR" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qk" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qI" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"qO" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qZ" = (
+/obj/effect/decal/remains/ribcage,
+/turf/template_noop,
+/area/template_noop)
+"re" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"rH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"se" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"tp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"tt" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"tz" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"tN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"vq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"vX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"wI" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"wQ" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"wS" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/template_noop,
+/area/template_noop)
+"xc" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"xe" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_shotgun,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"xp" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/human,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"yl" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"yx" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"yX" = (
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Am" = (
+/obj/machinery/door/blast/gate/thin,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"AJ" = (
+/obj/machinery/door/airlock/engineering,
+/turf/simulated/floor/tiled,
+/area/submap/DogBase)
+"AY" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile,
+/obj/random/projectile,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Bk" = (
+/turf/simulated/wall/r_wall,
+/area/submap/DogBase)
+"Bx" = (
+/obj/structure/table/woodentable,
+/obj/random/projectile/scrapped_pistol,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"BA" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"BB" = (
+/obj/structure/table/woodentable,
+/obj/random/cash/big,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ce" = (
+/obj/structure/janitorialcart,
+/obj/item/weapon/storage/bag/trash,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Cz" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"CQ" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"Dt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Dv" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ez" = (
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/template_noop,
+/area/template_noop)
+"Fm" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled,
+/area/submap/DogBase)
+"FD" = (
+/obj/structure/fence,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"FO" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ge" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/random/cash/huge,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Gf" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"GB" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"GJ" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile,
+/obj/random/projectile,
+/obj/effect/landmark/loot_spawn,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Hl" = (
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"HF" = (
+/obj/random/mob/merc/all,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"HM" = (
+/obj/structure/table/woodentable,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Iz" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Jm" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"Ki" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Kt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Le" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Lm" = (
+/obj/effect/landmark/loot_spawn,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"LJ" = (
+/obj/effect/decal/remains/tajaran,
+/turf/template_noop,
+/area/template_noop)
+"LP" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ng" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ni" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ok" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/phone,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ol" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone/leg,
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"OR" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"OS" = (
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Pi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"PB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"PJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/obj/structure/table/rack/shelf/steel,
+/obj/item/stack/material/phoron{
+ amount = 10
+ },
+/obj/item/stack/material/phoron{
+ amount = 10;
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Qp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/template_noop,
+/area/template_noop)
+"Qu" = (
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"QB" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Rz" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/phone,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"RW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"SW" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"To" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"UW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"UY" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"Vm" = (
+/obj/structure/loot_pile/maint/technical,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Vy" = (
+/obj/effect/decal/remains/unathi,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"VG" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wm" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/random/curseditem,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wq" = (
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wu" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"WH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"WU" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/random/cash/huge,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Xz" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Ya" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Yi" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Yr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"YJ" = (
+/obj/random/mob/merc/all,
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/DogBase)
+"YX" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/DogBase)
+"ZK" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "Unknown APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+
+(1,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+"}
+(2,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(3,1,1) = {"
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(4,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(5,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+FD
+FD
+FD
+FD
+FD
+To
+Qp
+hp
+hp
+hp
+hp
+Xz
+hp
+hp
+km
+hp
+hp
+"}
+(6,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Bk
+fg
+ng
+Vm
+Bk
+iv
+yl
+YX
+qI
+jO
+GB
+Qp
+LJ
+hp
+hp
+Xz
+Xz
+Ez
+hp
+SW
+hp
+hp
+"}
+(7,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+ik
+wS
+hp
+Bk
+Yi
+Qu
+Vm
+Bk
+UY
+Gf
+Ol
+Vy
+fI
+Am
+oW
+oW
+oW
+oW
+oW
+hp
+SW
+hp
+hp
+hp
+hp
+"}
+(8,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Bk
+lg
+Qu
+bw
+Bk
+aX
+lk
+ae
+kl
+lk
+Am
+oW
+oW
+QB
+oW
+hp
+hp
+hp
+hp
+SW
+hp
+hp
+"}
+(9,1,1) = {"
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+hp
+Bk
+eI
+Qu
+Ce
+Bk
+Jm
+xp
+ay
+CQ
+YX
+GB
+LJ
+hp
+hp
+Qp
+Qp
+tp
+lN
+hp
+hp
+hp
+hp
+"}
+(10,1,1) = {"
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Fm
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+km
+hp
+hp
+"}
+(11,1,1) = {"
+hp
+hp
+hp
+Bk
+pR
+RW
+Wu
+vq
+Bk
+Ng
+wQ
+FO
+Bk
+Dt
+tN
+tN
+Dv
+RW
+vq
+Bk
+Pi
+tN
+qk
+vq
+Bk
+Hl
+Hl
+hp
+hp
+hp
+"}
+(12,1,1) = {"
+km
+hp
+Ez
+Bk
+Ge
+Wq
+Bx
+lX
+Bk
+GJ
+lb
+OS
+Bk
+Yr
+VG
+HM
+wI
+Wq
+lX
+Bk
+eZ
+hl
+se
+UW
+Bk
+lr
+Hl
+hp
+hp
+SW
+"}
+(13,1,1) = {"
+hp
+Ez
+hp
+Bk
+qO
+Wq
+BA
+lX
+Bk
+AY
+Wq
+OS
+Bk
+Yr
+HF
+Rz
+wI
+Wq
+Ni
+RW
+PB
+eA
+Bk
+Bk
+Bk
+OR
+Hl
+SW
+SW
+hp
+"}
+(14,1,1) = {"
+hp
+Hl
+Hl
+Bk
+hA
+Wq
+Iz
+lX
+Bk
+xe
+Wq
+OS
+Bk
+rH
+VG
+HM
+wI
+Wq
+hl
+se
+WH
+lX
+Bk
+jz
+aF
+bl
+Hl
+SW
+hp
+hp
+"}
+(15,1,1) = {"
+hp
+lN
+Hl
+Bk
+qO
+lb
+BA
+lX
+LP
+Cz
+Wq
+OS
+LP
+Yr
+VG
+Ok
+wI
+re
+lX
+Bk
+Yr
+lX
+yx
+Wq
+yx
+lr
+YJ
+SW
+SW
+SW
+"}
+(16,1,1) = {"
+hp
+Hl
+Hl
+Bk
+hA
+Wq
+BB
+lX
+Bk
+Wm
+Wq
+OS
+Bk
+rH
+VG
+np
+wI
+Wq
+Ni
+tN
+PB
+lX
+Bk
+jz
+aF
+bl
+Hl
+SW
+SW
+hp
+"}
+(17,1,1) = {"
+hp
+Ez
+hp
+Bk
+qO
+Wq
+BA
+lX
+Bk
+yX
+wI
+OS
+Bk
+Yr
+VG
+HM
+wI
+lb
+hl
+jD
+WH
+eA
+Bk
+Bk
+Bk
+OR
+Hl
+SW
+SW
+hp
+"}
+(18,1,1) = {"
+hp
+hp
+Ez
+Bk
+lm
+Wq
+Iz
+lX
+Bk
+WU
+lb
+OS
+Bk
+Yr
+VG
+HM
+wI
+Wq
+lX
+Bk
+Yr
+Ni
+tN
+vq
+Bk
+lr
+Hl
+hp
+SW
+hp
+"}
+(19,1,1) = {"
+km
+hp
+hp
+Bk
+bT
+jD
+se
+UW
+Bk
+ab
+tz
+qg
+Bk
+Lm
+se
+se
+se
+jD
+Ya
+Bk
+ec
+se
+bx
+UW
+Bk
+Hl
+Hl
+hp
+hp
+hp
+"}
+(20,1,1) = {"
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+AJ
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+hp
+hp
+hp
+"}
+(21,1,1) = {"
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+hp
+Bk
+ZK
+Le
+Ki
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+km
+"}
+(22,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+Bk
+PJ
+xc
+vX
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+wS
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(23,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+wS
+hp
+Bk
+lh
+cS
+lh
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+hp
+"}
+(24,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+ik
+hp
+hp
+Bk
+hZ
+Kt
+tt
+Bk
+hp
+hp
+km
+hp
+hp
+km
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+km
+hp
+"}
+(25,1,1) = {"
+hp
+hp
+km
+hp
+hp
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+hp
+hp
+Ez
+hp
+hp
+qZ
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(26,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(27,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+km
+hp
+hp
+km
+hp
+hp
+"}
+(28,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(29,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(30,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
diff --git a/maps/submaps/surface_submaps/plains/emptycabin.dmm b/maps/submaps/surface_submaps/plains/emptycabin.dmm
new file mode 100644
index 0000000000..707aaa9bab
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/emptycabin.dmm
@@ -0,0 +1,328 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/effect/decal/cleanable/filth,
+/obj/item/weapon/bone/arm,
+/obj/item/weapon/bone/skull/unathi,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"c" = (
+/obj/structure/curtain/black,
+/obj/structure/simple_door/sifwood,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"d" = (
+/obj/structure/closet/wardrobe,
+/obj/item/weapon/material/fishing_rod/modern,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/lunchbox/nymph/filled,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"e" = (
+/turf/simulated/wall/sifwood,
+/area/submap/EmptyCabin)
+"f" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"g" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/purpledouble,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"h" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/template_noop,
+/area/template_noop)
+"i" = (
+/obj/structure/bed/chair/sofa/left/blue{
+ dir = 1
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"j" = (
+/obj/effect/decal/cleanable/blood,
+/mob/living/simple_mob/vore/otie/friendly/chubby{
+ desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit";
+ faction = "spiders";
+ max_co2 = 0;
+ max_tox = 0
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"k" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/left{
+ dir = 8
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"l" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa{
+ dir = 8
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"n" = (
+/obj/structure/table/sifwoodentable,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/paper/crumpled/bloody{
+ info = "I found an otie while picking flowers today. He's so cute! I took him back home, and he seemed quite happy to share food with me. He really likes fish. Though, he never really seems to not be hungry..."
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"q" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/template_noop,
+/area/submap/EmptyCabin)
+"r" = (
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"t" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"y" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/curtain/black,
+/obj/structure/grille/rustic,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"z" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"A" = (
+/obj/structure/bonfire/permanent/sifwood,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/submap/EmptyCabin)
+"B" = (
+/turf/template_noop,
+/area/submap/EmptyCabin)
+"C" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"D" = (
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"G" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 1
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"I" = (
+/obj/structure/table/sifwoodentable,
+/obj/item/pizzabox/meat,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"J" = (
+/obj/structure/bed/chair/sofa/right/blue{
+ dir = 1
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"L" = (
+/obj/structure/table/sifwoodentable,
+/obj/item/weapon/flame/candle/candelabra,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"M" = (
+/obj/item/weapon/bone/leg,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"O" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/right{
+ dir = 8
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"Q" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"T" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/template_noop,
+/area/submap/EmptyCabin)
+"V" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"W" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"X" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+"Z" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/turf/simulated/floor/wood/sif/virgo3b,
+/area/submap/EmptyCabin)
+
+(1,1,1) = {"
+a
+q
+e
+O
+l
+l
+k
+C
+e
+a
+"}
+(2,1,1) = {"
+a
+B
+D
+D
+D
+D
+D
+D
+t
+a
+"}
+(3,1,1) = {"
+a
+T
+f
+e
+e
+c
+e
+e
+t
+a
+"}
+(4,1,1) = {"
+a
+a
+e
+e
+b
+M
+D
+e
+e
+a
+"}
+(5,1,1) = {"
+a
+a
+e
+g
+j
+X
+L
+i
+e
+a
+"}
+(6,1,1) = {"
+a
+a
+y
+n
+W
+D
+I
+G
+e
+a
+"}
+(7,1,1) = {"
+a
+a
+e
+d
+Z
+r
+D
+J
+e
+a
+"}
+(8,1,1) = {"
+a
+a
+e
+e
+z
+V
+Q
+e
+e
+a
+"}
+(9,1,1) = {"
+a
+a
+h
+e
+e
+A
+e
+e
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+h
+e
+e
+e
+a
+a
+a
+"}
diff --git a/maps/submaps/surface_submaps/plains/greatwolfden.dmm b/maps/submaps/surface_submaps/plains/greatwolfden.dmm
new file mode 100644
index 0000000000..d8ac2577ee
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/greatwolfden.dmm
@@ -0,0 +1,1597 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/effect/decal/cleanable/blood/drip,
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
+ faction = "sif";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"bp" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"bz" = (
+/obj/structure/flora/bboulder1,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"bI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"bY" = (
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"dM" = (
+/obj/structure/flora/bboulder2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"dX" = (
+/obj/structure/cliff/automatic{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"eq" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"fh" = (
+/obj/structure/cliff/automatic{
+ dir = 2
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"fX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"ge" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"hJ" = (
+/obj/structure/cliff/automatic{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"iX" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"jg" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"ju" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"kg" = (
+/obj/item/weapon/bone/skull/unathi,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"kk" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gib2_flesh"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"kL" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass3"
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"lu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/a10mm,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"lL" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"lQ" = (
+/obj/effect/decal/cleanable/filth,
+/obj/item/weapon/card/emag_broken,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"mk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"mm" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"nd" = (
+/obj/structure/flora/rocks2,
+/obj/effect/decal/remains/lizard,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"nv" = (
+/mob/living/simple_mob/vore/greatwolf{
+ dir = 8;
+ max_co2 = 0;
+ min_oxy = 0
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"pS" = (
+/turf/template_noop,
+/area/template_noop)
+"qb" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"rn" = (
+/obj/structure/loot_pile/mecha/gygax/dark/adv,
+/obj/effect/decal/cleanable/blood/gibs/robot/down,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"rM" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "eyeplant2"
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"tb" = (
+/obj/structure/flora/smallbould,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"tm" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"tC" = (
+/obj/effect/decal/remains/mouse,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"uz" = (
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
+ faction = "sif";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"uY" = (
+/obj/item/ammo_casing/a10mm,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"vu" = (
+/obj/item/weapon/bone/skull/tajaran,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"wc" = (
+/obj/item/weapon/bone/skull/unathi,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"xt" = (
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"xu" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"xK" = (
+/obj/effect/decal/remains/human,
+/obj/item/clothing/under/syndicate,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"yi" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"yF" = (
+/obj/structure/flora/smallbould,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"yG" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"yH" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"zl" = (
+/obj/structure/flora/bboulder1,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"zs" = (
+/obj/structure/flora/bboulder2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"zV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"AG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/rocks/virgo3b,
+/area/submap/GreatWolfDen)
+"AK" = (
+/obj/structure/cliff/automatic/ramp{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"BR" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Cd" = (
+/mob/living/simple_mob/vore/otie/feral/chubby{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit.";
+ faction = "sif";
+ minbodytemp = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"CR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Dj" = (
+/obj/structure/cliff/automatic/corner,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"DV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/outcrop,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"EU" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Fy" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "eyeplant1"
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"GZ" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Hb" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"HC" = (
+/obj/random/outcrop,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Ic" = (
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Id" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/template_noop,
+/area/template_noop)
+"If" = (
+/obj/effect/decal/cleanable/blood/gibs/robot/limb,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Iw" = (
+/obj/effect/decal/remains/deer,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Kb" = (
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Ko" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gibdown1_flesh"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Kp" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"KU" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass3"
+ },
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"Lx" = (
+/obj/structure/cliff/automatic{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Lz" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gib1_flesh"
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"LJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"LP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"LT" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Mc" = (
+/obj/effect/decal/cleanable/ash,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Mv" = (
+/obj/random/outcrop,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"MD" = (
+/obj/structure/flora/tree/sif{
+ icon_state = "tree_sif4"
+ },
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"OB" = (
+/obj/item/stack/material/log{
+ amount = 25
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"OL" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"OV" = (
+/obj/structure/cliff/automatic{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"OW" = (
+/obj/structure/cliff/automatic{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Pa" = (
+/obj/structure/cliff/automatic/ramp,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Pf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Pl" = (
+/obj/effect/decal/remains/lizard,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"PC" = (
+/obj/structure/closet/crate/secure/loot,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"PX" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Qb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks1,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Qv" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"QA" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass2"
+ },
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"QJ" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"QM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Rb" = (
+/obj/item/weapon/bone/leg,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Rf" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle"
+ },
+/obj/item/weapon/gun/projectile/pistol,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Rj" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"Rx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"RW" = (
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"SO" = (
+/obj/item/weapon/telecube/mated,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"SQ" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Tf" = (
+/obj/item/weapon/paper/card/heart{
+ desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??"
+ },
+/obj/item/weapon/paper/crumpled{
+ icon_state = "scrap_bloodied";
+ info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you.";
+ name = "survivor's note"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Tn" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"Ty" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"UV" = (
+/obj/structure/cliff/automatic{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Vq" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"WH" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"WR" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant1"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"WY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Xx" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass1"
+ },
+/turf/simulated/floor/outdoors/snow/virgo3b,
+/area/submap/GreatWolfDen)
+"Xy" = (
+/obj/item/weapon/bone/ribs,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Yw" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Yy" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Zj" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/submap/GreatWolfDen)
+"Zk" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant2"
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+"Zu" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/submap/GreatWolfDen)
+
+(1,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(2,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Ty
+pS
+pS
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(3,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+HC
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+"}
+(4,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+Qv
+Qv
+Qv
+bp
+dX
+dX
+dX
+dX
+dX
+dX
+dX
+Dj
+Qv
+HC
+Qv
+pS
+pS
+pS
+pS
+Qv
+Qv
+pS
+pS
+"}
+(5,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+bp
+dX
+dX
+OV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+dX
+dX
+Dj
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+"}
+(6,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+dX
+Dj
+Qv
+Qv
+pS
+pS
+pS
+pS
+"}
+(7,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+Qv
+bp
+OV
+tm
+tm
+tm
+tm
+jg
+BR
+Mv
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+Dj
+Qv
+pS
+pS
+pS
+pS
+"}
+(8,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+fh
+tm
+tm
+tm
+yi
+CR
+xK
+uY
+xu
+Zu
+zs
+xu
+xu
+Mv
+tm
+tm
+tm
+tm
+OW
+Dj
+Qv
+pS
+pS
+pS
+"}
+(9,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+fh
+tm
+tm
+Mc
+QJ
+qb
+lu
+mk
+uY
+xu
+xu
+kk
+xu
+xu
+xu
+tb
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+pS
+"}
+(10,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+mm
+Rb
+EU
+lQ
+BR
+Kb
+QM
+Iw
+xu
+RW
+Zk
+xu
+xu
+tm
+tm
+tm
+OL
+Qv
+Qv
+Qv
+pS
+"}
+(11,1,1) = {"
+pS
+pS
+pS
+Qv
+Qv
+Qv
+fh
+tm
+tm
+bz
+Pl
+bI
+DV
+tm
+wc
+xu
+xu
+xu
+xu
+xu
+Cd
+xu
+kg
+tm
+tm
+OW
+Dj
+Qv
+Qv
+pS
+"}
+(12,1,1) = {"
+pS
+pS
+pS
+Qv
+HC
+Qv
+LT
+UV
+tm
+tm
+bI
+CR
+tm
+tm
+rn
+PX
+Tn
+Zj
+Zj
+uz
+xu
+xu
+BR
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(13,1,1) = {"
+pS
+pS
+Id
+pS
+Qv
+Qv
+Qv
+fh
+tm
+tm
+Tf
+Ko
+tm
+tm
+OB
+uz
+Zj
+Xx
+rM
+Zj
+Iw
+xu
+xu
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(14,1,1) = {"
+pS
+pS
+pS
+pS
+Id
+Qv
+Qv
+fh
+tm
+tm
+CR
+CR
+tm
+yF
+Yy
+Fy
+Zj
+Rj
+Kp
+Lz
+Zj
+xu
+uz
+Xy
+tm
+tm
+OL
+Qv
+Qv
+Qv
+"}
+(15,1,1) = {"
+pS
+Qv
+Id
+fX
+pS
+dM
+Pa
+OV
+tm
+LJ
+Pf
+CR
+tm
+ju
+aa
+Lz
+eq
+bY
+MD
+yG
+Zj
+xu
+If
+xu
+tm
+tm
+OL
+Qv
+HC
+Qv
+"}
+(16,1,1) = {"
+Qv
+pS
+Qv
+Id
+Rx
+zV
+LP
+Qb
+AG
+CR
+CR
+CR
+tm
+SO
+tC
+Zj
+Zj
+bY
+QA
+Zj
+kL
+uz
+xu
+Mv
+tm
+tm
+OL
+Qv
+Qv
+Qv
+"}
+(17,1,1) = {"
+pS
+pS
+Qv
+Rx
+WY
+Rx
+AK
+UV
+tm
+tm
+tm
+tm
+tm
+vu
+WR
+GZ
+nv
+KU
+Rj
+Zj
+xu
+xu
+xu
+xu
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(18,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+zs
+xu
+xK
+Ic
+Zj
+Zj
+bY
+Zj
+nd
+xu
+xu
+lL
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(19,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+Hb
+xu
+uz
+xu
+Zj
+Zj
+Zj
+xu
+uz
+xt
+tm
+tm
+hJ
+SQ
+Qv
+pS
+Qv
+"}
+(20,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+PC
+xu
+Yy
+kk
+Ic
+uz
+xu
+Vq
+xt
+Rf
+tm
+tm
+OL
+Qv
+Qv
+pS
+pS
+"}
+(21,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+tm
+xu
+WH
+iX
+yH
+Yy
+xu
+Vq
+Yw
+tm
+tm
+tm
+OL
+Qv
+Qv
+Qv
+pS
+"}
+(22,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+HC
+fh
+tm
+tm
+tm
+tm
+zl
+BR
+xu
+ge
+xu
+Vq
+xt
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Ty
+Qv
+pS
+"}
+(23,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Qv
+pS
+pS
+pS
+"}
+(24,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+LT
+Lx
+UV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Qv
+Qv
+pS
+pS
+pS
+"}
+(25,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+pS
+Qv
+Qv
+Qv
+LT
+Lx
+UV
+tm
+tm
+hJ
+Lx
+Lx
+Lx
+Lx
+SQ
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+"}
+(26,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+Qv
+Ty
+LT
+Lx
+Lx
+SQ
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(27,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(28,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+HC
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+pS
+pS
+pS
+"}
+(29,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(30,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
diff --git a/maps/submaps/surface_submaps/plains/leopardmanderden.dmm b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm
new file mode 100644
index 0000000000..006b3c6689
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm
@@ -0,0 +1,1055 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aK" = (
+/obj/item/weapon/ore/silver,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"aT" = (
+/obj/structure/table/bench/sifwooden/padded,
+/mob/living/simple_mob/animal/sif/siffet{
+ faction = "neutral";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0;
+ minbodytemp = 0
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"bj" = (
+/obj/item/weapon/bluespace_crystal,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"bO" = (
+/obj/item/stack/material/gold,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"cu" = (
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"dA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/simple_door/sifwood,
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"eD" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"eF" = (
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/rocks/virgo3b,
+/area/template_noop)
+"fe" = (
+/obj/item/weapon/coin/diamond,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"fQ" = (
+/obj/effect/landmark/loot_spawn/low,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"gg" = (
+/obj/random/obstruction,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"gC" = (
+/obj/item/weapon/flame/lighter/zippo/gold,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"gD" = (
+/obj/structure/flora/smallbould,
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"gP" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"gU" = (
+/obj/item/weapon/coin/gold,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"hi" = (
+/obj/structure/sign/warning/falling,
+/turf/simulated/wall/gold,
+/area/submap/LeopardmanderDen)
+"hr" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"hw" = (
+/obj/structure/cliff/automatic{
+ dir = 9
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"iV" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"jb" = (
+/obj/machinery/crystal/ice,
+/turf/template_noop,
+/area/template_noop)
+"jE" = (
+/obj/structure/cliff/automatic{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"ki" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/item/clothing/head/pin/flower/violet,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"kx" = (
+/obj/item/stack/material/gold,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"kO" = (
+/obj/structure/cliff/automatic{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"lb" = (
+/obj/structure/cliff/automatic{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"ll" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"mi" = (
+/obj/structure/cliff/automatic/ramp{
+ dir = 9
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"mu" = (
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"mW" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"nG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"nR" = (
+/mob/living/simple_mob/animal/sif/sakimm,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"oD" = (
+/obj/fiftyspawner/silver,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"pQ" = (
+/obj/structure/cliff/automatic/corner,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"qa" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"qg" = (
+/obj/structure/bed/chair/sofa/right{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"rn" = (
+/turf/template_noop,
+/area/template_noop)
+"ro" = (
+/obj/structure/flora/lily3,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"rD" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"rG" = (
+/obj/structure/flora/pottedplant/flower,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"sl" = (
+/obj/machinery/crystal/ice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"sN" = (
+/mob/living/simple_mob/vore/otie/red/chubby{
+ desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit. It has a collar around one of its ankles that reads 'Tawny'.";
+ name = "Tawny"
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"sY" = (
+/mob/living/simple_mob/animal/sif/sakimm{
+ faction = "neutral";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0;
+ minbodytemp = 0
+ },
+/turf/template_noop,
+/area/template_noop)
+"tC" = (
+/obj/item/weapon/ore/diamond,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"tP" = (
+/mob/living/simple_mob/animal/sif/sakimm{
+ faction = "neutral";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0;
+ minbodytemp = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"uw" = (
+/obj/structure/ledge/ledge_stairs{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/virgo3b,
+/area/template_noop)
+"uz" = (
+/obj/structure/cliff/automatic{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"xf" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"xg" = (
+/obj/item/weapon/ore/silver,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"xL" = (
+/obj/random/outcrop,
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"yl" = (
+/turf/simulated/wall/golddiamond,
+/area/submap/LeopardmanderDen)
+"zJ" = (
+/mob/living/simple_mob/animal/sif/siffet{
+ faction = "neutral";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0;
+ minbodytemp = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"zW" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Ah" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"AF" = (
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"AP" = (
+/obj/structure/bed/chair/sofa/right{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"BE" = (
+/obj/item/stack/material/diamond,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"DI" = (
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"DJ" = (
+/obj/structure/flora/log1,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Ez" = (
+/obj/structure/flora/bboulder2,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"EH" = (
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Gl" = (
+/obj/structure/cliff/automatic{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Gw" = (
+/obj/item/weapon/ore/gold,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Hx" = (
+/obj/structure/sign/warning/falling,
+/turf/simulated/wall/sifwood,
+/area/template_noop)
+"HV" = (
+/obj/structure/bed/chair/sofa/left{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Ih" = (
+/obj/random/obstruction,
+/turf/template_noop,
+/area/template_noop)
+"IQ" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/LeopardmanderDen)
+"Jk" = (
+/turf/simulated/floor/outdoors/rocks/virgo3b,
+/area/template_noop)
+"Kd" = (
+/obj/structure/cliff/automatic,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Kv" = (
+/obj/random/outcrop,
+/turf/template_noop,
+/area/template_noop)
+"KT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/tree/bigtree,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Lb" = (
+/obj/structure/cliff/automatic{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Ls" = (
+/obj/structure/cliff/automatic{
+ dir = 2
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"MQ" = (
+/obj/machinery/crystal/ice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"NS" = (
+/obj/structure/cliff/automatic{
+ dir = 10
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Pc" = (
+/obj/item/stack/material/diamond,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"PO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Qa" = (
+/obj/machinery/crystal/ice,
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"QQ" = (
+/obj/item/stack/material/gold,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"RA" = (
+/obj/fiftyspawner/gold,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Sk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Sm" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"SM" = (
+/obj/structure/flora/log2,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Te" = (
+/obj/item/weapon/coin/silver,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Tj" = (
+/mob/living/simple_mob/animal/sif/tymisian{
+ faction = "neutral";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0;
+ minbodytemp = 0
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"Tt" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/item/weapon/coin/iron,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"TF" = (
+/obj/structure/bed/chair/sofa/left{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Uc" = (
+/obj/item/weapon/ore/diamond,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Ul" = (
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"UA" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/item/weapon/coin/gold,
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Vi" = (
+/obj/structure/flora/lily2,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"VM" = (
+/turf/simulated/wall/gold,
+/area/submap/LeopardmanderDen)
+"VV" = (
+/obj/structure/flora/lily1,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"WB" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/rocks/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Xt" = (
+/mob/living/simple_mob/vore/leopardmander{
+ max_co2 = 0;
+ min_oxy = 0
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"XR" = (
+/obj/effect/map_effect/interval/effect_emitter/steam,
+/turf/simulated/floor/water/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Yq" = (
+/obj/structure/cliff/automatic{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/template_noop)
+"YJ" = (
+/obj/item/weapon/ore/diamond,
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+"Zj" = (
+/mob/living/simple_mob/animal/sif/tymisian{
+ faction = "neutral"
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b{
+ outdoors = 0
+ },
+/area/submap/LeopardmanderDen)
+
+(1,1,1) = {"
+rn
+Ih
+iV
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+pQ
+Sm
+Sm
+Sm
+Sm
+rn
+rn
+rn
+rn
+rn
+"}
+(2,1,1) = {"
+rn
+iV
+kO
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+Lb
+Yq
+Yq
+Yq
+pQ
+Sm
+sY
+rn
+Sm
+rn
+"}
+(3,1,1) = {"
+iV
+kO
+IQ
+IQ
+Qa
+yl
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+Lb
+Yq
+pQ
+Sm
+Ih
+rn
+"}
+(4,1,1) = {"
+Ls
+IQ
+IQ
+cu
+xf
+bj
+Pc
+xf
+IQ
+cu
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+Lb
+pQ
+Sm
+rn
+"}
+(5,1,1) = {"
+Ls
+IQ
+IQ
+xL
+BE
+DI
+PO
+DI
+kx
+gU
+DI
+Uc
+xL
+cu
+IQ
+IQ
+IQ
+Lb
+Yq
+pQ
+"}
+(6,1,1) = {"
+Ls
+IQ
+IQ
+xf
+fe
+Xt
+AF
+Vi
+YJ
+AF
+Ah
+xg
+Zj
+Qa
+cu
+IQ
+IQ
+IQ
+IQ
+gP
+"}
+(7,1,1) = {"
+Ls
+IQ
+IQ
+RA
+DI
+AF
+SM
+AF
+AF
+ro
+AF
+nR
+DI
+Pc
+xL
+IQ
+IQ
+IQ
+IQ
+gP
+"}
+(8,1,1) = {"
+Ls
+IQ
+cu
+xf
+mu
+AF
+AF
+AF
+UA
+XR
+AF
+DJ
+hr
+tC
+Uc
+IQ
+Qa
+IQ
+IQ
+gP
+"}
+(9,1,1) = {"
+Ls
+IQ
+IQ
+IQ
+QQ
+AF
+AF
+rD
+KT
+Tt
+AF
+AF
+AF
+fQ
+xf
+IQ
+HV
+AP
+IQ
+gP
+"}
+(10,1,1) = {"
+Ls
+IQ
+IQ
+cu
+gC
+nG
+AF
+XR
+Ez
+VV
+AF
+AF
+ki
+Gw
+bO
+cu
+cu
+cu
+IQ
+gP
+"}
+(11,1,1) = {"
+Ls
+IQ
+IQ
+cu
+xL
+DI
+DI
+AF
+AF
+AF
+AF
+AF
+aT
+Ul
+qa
+VM
+qg
+TF
+IQ
+gP
+"}
+(12,1,1) = {"
+ll
+lb
+IQ
+IQ
+VM
+Qa
+sN
+aK
+Te
+DJ
+Ah
+rG
+Sk
+qa
+oD
+IQ
+IQ
+IQ
+IQ
+gP
+"}
+(13,1,1) = {"
+rn
+ll
+lb
+IQ
+IQ
+IQ
+IQ
+Qa
+DI
+hr
+DI
+xf
+xf
+xL
+cu
+IQ
+IQ
+IQ
+IQ
+gP
+"}
+(14,1,1) = {"
+rn
+gg
+Ls
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+IQ
+xf
+cu
+cu
+Qa
+cu
+IQ
+IQ
+IQ
+Gl
+zW
+"}
+(15,1,1) = {"
+rn
+Sm
+ll
+jE
+lb
+IQ
+IQ
+IQ
+IQ
+IQ
+gD
+cu
+WB
+IQ
+IQ
+IQ
+IQ
+Gl
+zW
+rn
+"}
+(16,1,1) = {"
+rn
+Sm
+gg
+Sm
+ll
+lb
+IQ
+IQ
+IQ
+IQ
+IQ
+hi
+dA
+VM
+IQ
+Gl
+jE
+zW
+rn
+Kv
+"}
+(17,1,1) = {"
+rn
+rn
+Sm
+rn
+Sm
+ll
+jE
+jE
+jE
+jE
+jE
+NS
+uw
+hw
+jE
+zW
+Sm
+jb
+zJ
+rn
+"}
+(18,1,1) = {"
+rn
+Sm
+Sm
+Sm
+Tj
+Sm
+Sm
+Hx
+Sm
+sl
+eD
+mW
+uw
+Kd
+tP
+rn
+Tj
+rn
+rn
+rn
+"}
+(19,1,1) = {"
+rn
+rn
+Sm
+rn
+Sm
+tP
+Sm
+zJ
+Sm
+EH
+eF
+eF
+Jk
+Kd
+Sm
+Ih
+rn
+rn
+rn
+rn
+"}
+(20,1,1) = {"
+rn
+rn
+rn
+rn
+rn
+Sm
+Sm
+Sm
+Sm
+MQ
+mi
+uz
+uz
+zW
+rn
+rn
+rn
+rn
+rn
+rn
+"}
diff --git a/maps/submaps/surface_submaps/plains/otieshelter.dmm b/maps/submaps/surface_submaps/plains/otieshelter.dmm
new file mode 100644
index 0000000000..137930b5f8
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/otieshelter.dmm
@@ -0,0 +1,1095 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ag" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"aj" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"ar" = (
+/obj/structure/closet/secure_closet/medical_wall/anesthetics,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"cq" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"cU" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"eI" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"fw" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"gr" = (
+/obj/machinery/porta_turret/poi,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"gN" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"hh" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"hk" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"hD" = (
+/obj/effect/decal/cleanable/filth,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"iv" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"iC" = (
+/obj/effect/decal/cleanable/blood,
+/mob/living/simple_mob/vore/otie/friendly{
+ health = 0
+ },
+/turf/template_noop,
+/area/template_noop)
+"iY" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/item/trash/bowl,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"jc" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"jo" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"jy" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"jI" = (
+/obj/item/weapon/material/shard{
+ icon_state = "medium"
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 4;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"kF" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"kX" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"lv" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"lP" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"lQ" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"lY" = (
+/obj/machinery/light,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"mu" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/mob/living/simple_mob/vore/otie/friendly/chubby,
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"mC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"mJ" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/submap/OtieShelter)
+"nK" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"nR" = (
+/obj/structure/table/marble,
+/obj/item/weapon/newspaper,
+/obj/item/weapon/paper/card/heart,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"ob" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"od" = (
+/obj/machinery/door/window,
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"op" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"pa" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/filth,
+/obj/random/handgun/sec,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"pd" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"rb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"sJ" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"tt" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/cotie,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"tz" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"tP" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"uw" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"uD" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"uS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"vA" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"vB" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"vV" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"wg" = (
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"wO" = (
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"xf" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"xj" = (
+/obj/structure/table/marble,
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"xI" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/friendly,
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"yD" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Aa" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/cotie/phoron,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"At" = (
+/obj/structure/table/marble,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"AO" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"AQ" = (
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"BM" = (
+/obj/item/weapon/melee/baton/cattleprod,
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 4;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/obj/effect/decal/cleanable/filth,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Cw" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"CM" = (
+/obj/structure/closet/wardrobe,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"EE" = (
+/obj/machinery/door/airlock/engineering,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"EI" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Hk" = (
+/obj/machinery/door/window,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"HV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Ih" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Ij" = (
+/mob/living/simple_mob/vore/otie/cotie{
+ max_co2 = 0;
+ max_tox = 0
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"IF" = (
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"JY" = (
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"KJ" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Lr" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/plating/external/virgo3b,
+/area/submap/OtieShelter)
+"LF" = (
+/obj/structure/ghost_pod/manual/lost_drone/dogborg,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Mc" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Mg" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Mn" = (
+/mob/living/simple_mob/vore/otie/red/chubby,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Mz" = (
+/turf/simulated/wall/r_wall,
+/area/submap/OtieShelter)
+"MK" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"Nd" = (
+/obj/structure/table/marble,
+/obj/structure/table/marble,
+/obj/item/device/radio/phone,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"Nh" = (
+/obj/item/weapon/bedsheet/browndouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"Np" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"NJ" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Of" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"OJ" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/obj/effect/decal/cleanable/blood/tracks/paw{
+ icon_state = "paw1"
+ },
+/obj/item/ammo_casing/spent,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Pn" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Px" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"Qr" = (
+/turf/template_noop,
+/area/template_noop)
+"Ro" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"RW" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "PAPC";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"Sn" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"SD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"TP" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"UF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"UH" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"VE" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/effect/decal/cleanable/blood/tracks/paw{
+ icon_state = "paw1"
+ },
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"VL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/carpet/turcarpet/virgo3b,
+/area/submap/OtieShelter)
+"VY" = (
+/mob/living/simple_mob/vore/otie/cotie/chubby,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Wl" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/windoor_assembly,
+/obj/structure/windoor_assembly{
+ dir = 2
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/submap/OtieShelter)
+"WY" = (
+/obj/machinery/oxygen_pump/mobile/anesthetic,
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"XB" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/virgo3b,
+/area/submap/OtieShelter)
+"XG" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/red/friendly,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+
+(1,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(2,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(3,1,1) = {"
+Qr
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+"}
+(4,1,1) = {"
+Qr
+Mz
+wO
+Of
+kF
+Of
+kF
+Of
+xI
+Of
+kF
+Of
+Mz
+Nh
+MK
+gN
+Mz
+Qr
+Qr
+Qr
+"}
+(5,1,1) = {"
+Qr
+Mz
+IF
+VY
+tt
+IF
+Aa
+Ih
+lQ
+IF
+lQ
+IF
+Mz
+vV
+Ro
+Ro
+Mz
+Qr
+Qr
+Qr
+"}
+(6,1,1) = {"
+Qr
+Mz
+hh
+Hk
+tP
+Hk
+Np
+od
+Np
+Hk
+mu
+Hk
+Mz
+CM
+Ro
+Ro
+Mz
+gr
+Qr
+Qr
+"}
+(7,1,1) = {"
+Qr
+Mz
+ar
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Mz
+Mz
+fw
+Mz
+mJ
+rb
+Lr
+Qr
+"}
+(8,1,1) = {"
+Qr
+Mz
+jo
+AQ
+AQ
+AQ
+AQ
+AQ
+AQ
+AQ
+AQ
+AQ
+fw
+mC
+nK
+ag
+AQ
+aj
+op
+iC
+"}
+(9,1,1) = {"
+Qr
+Mz
+Mc
+AQ
+AQ
+AO
+Cw
+yD
+AO
+AQ
+AQ
+uD
+Mz
+Mz
+lv
+Mz
+mJ
+rb
+JY
+Qr
+"}
+(10,1,1) = {"
+Qr
+Mz
+HV
+WY
+jc
+AO
+iv
+AO
+AO
+vA
+hD
+AQ
+sJ
+Sn
+tz
+wg
+Mz
+gr
+Qr
+Qr
+"}
+(11,1,1) = {"
+Qr
+Mz
+jo
+AQ
+AQ
+AQ
+AQ
+AQ
+hD
+pa
+OJ
+AQ
+ob
+jy
+Nd
+nR
+Mz
+Qr
+Qr
+Qr
+"}
+(12,1,1) = {"
+Qr
+Mz
+LF
+UF
+UF
+UF
+UF
+UF
+UF
+BM
+kX
+EI
+hk
+wg
+xj
+cq
+Mz
+Qr
+Qr
+Qr
+"}
+(13,1,1) = {"
+Qr
+Mz
+UH
+NJ
+Pn
+vB
+Pn
+NJ
+Mg
+jI
+xf
+lY
+Mz
+VL
+At
+wg
+Mz
+Qr
+Qr
+Qr
+"}
+(14,1,1) = {"
+Qr
+Mz
+IF
+Ij
+XG
+IF
+lQ
+Mn
+iY
+lP
+XB
+pd
+Wl
+VE
+wg
+wg
+Mz
+Qr
+Qr
+Qr
+"}
+(15,1,1) = {"
+Qr
+Mz
+wO
+uS
+kF
+uS
+kF
+uS
+uw
+SD
+KJ
+AQ
+Mz
+wg
+wg
+wg
+Mz
+Qr
+Qr
+Qr
+"}
+(16,1,1) = {"
+Qr
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+EE
+Mz
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+"}
+(17,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+RW
+cU
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(18,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+TP
+eI
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(19,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(20,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
diff --git a/maps/submaps/surface_submaps/plains/plains.dm b/maps/submaps/surface_submaps/plains/plains.dm
index 518be7521a..70ad1907c8 100644
--- a/maps/submaps/surface_submaps/plains/plains.dm
+++ b/maps/submaps/surface_submaps/plains/plains.dm
@@ -2,17 +2,17 @@
// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
-#include "boathouse.dmm"
+#include "Boathouse.dmm"
#include "bonfire.dmm"
-#include "buriedtreasure.dmm"
-#include "buriedtreasure2.dmm"
-#include "buriedtreasure3.dmm"
+#include "Buriedtreasure.dmm"
+#include "Buriedtreasure2.dmm"
+#include "Buriedtreasure3.dmm"
#include "camp.dmm"
#include "chemspill1.dmm"
#include "construction.dmm"
-#include "diner.dmm"
-#include "epod.dmm"
-#include "epod2.dmm"
+#include "Diner.dmm"
+#include "Epod.dmm"
+#include "Epod2.dmm"
#include "explorerhouse.dmm"
#include "farm.dmm"
#include "field.dmm"
@@ -24,12 +24,12 @@
#include "methlab.dmm"
#include "oldhotel.dmm"
#include "oldlibrary.dmm"
-#include "pascalb.dmm"
+#include "Pascalb.dmm"
#include "pooledrocks.dmm"
#include "priderock.dmm"
-#include "rationcache.dmm"
+#include "Rationcache.dmm"
#include "rockyoutcrop.dmm"
-#include "shakden.dmm"
+#include "Shakden.dmm"
#include "snow1.dmm"
#include "snow2.dmm"
#include "snow3.dmm"
diff --git a/maps/submaps/surface_submaps/valley/CultBar.dmm b/maps/submaps/surface_submaps/valley/CultBar.dmm
index 50fe66a53a..d9ece8fa2d 100644
--- a/maps/submaps/surface_submaps/valley/CultBar.dmm
+++ b/maps/submaps/surface_submaps/valley/CultBar.dmm
@@ -849,7 +849,9 @@
/area/submap/CultBar)
"LD" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_mob/humanoid/cultist/elite,
+/mob/living/simple_mob/humanoid/cultist/elite{
+ faction = "demon"
+ },
/turf/simulated/floor/wood/sif,
/area/submap/CultBar)
"LV" = (
@@ -1066,7 +1068,9 @@
"Vk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_mob/humanoid/cultist/elite,
+/mob/living/simple_mob/humanoid/cultist/elite{
+ faction = "demon"
+ },
/turf/simulated/floor/wood/sif/broken,
/area/submap/CultBar)
"Vr" = (
diff --git a/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm b/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm
index 455551b21b..a482154a6c 100644
--- a/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm
+++ b/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm
@@ -1,196 +1,1988 @@
-"ab" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"aE" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"aJ" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/generic,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"bj" = (/obj/machinery/door/airlock/security{icon_state = "door_locked"; locked = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"bl" = (/mob/living/simple_mob/mechanical/hivebot/tank,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"bI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"bZ" = (/obj/effect/graffitispawner,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"cH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0})
-"dl" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"do" = (/obj/effect/wingrille_spawn,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"dG" = (/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/blood/drip{pixel_x = -3; pixel_y = 16},/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"dI" = (/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"dO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"eg" = (/obj/item/weapon/material/shard,/obj/structure/grille/broken,/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"en" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/dirt,/obj/random/medical/pillbottle,/obj/structure/sign/periodic{pixel_x = 32},/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"fl" = (/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/cobweb2,/obj/structure/boulder,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"gk" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"gn" = (/obj/effect/decal/remains/human,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"gt" = (/obj/structure/bed/chair/bay{dir = 4},/turf/template_noop,/area/template_noop)
-"gI" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/poi,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"gP" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"hl" = (/obj/structure/bed/chair/bay{dir = 4},/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib1_flesh"},/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"hs" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"hH" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/projectile/shotgun,/obj/random/ammo,/obj/random/ammo,/obj/item/weapon/storage/box/empslite,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"hP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"hT" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"ia" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/rust,/obj/machinery/light/poi{dir = 1},/obj/effect/landmark/loot_spawn/low,/obj/structure/table/rack,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"ie" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"iv" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 1; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"iA" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0})
-"iL" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 5; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/maintenance/research,/obj/effect/gibspawner/robot,/obj/structure/table,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"iS" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"jE" = (/obj/effect/wingrille_spawn,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"jN" = (/obj/effect/decal/cleanable/dirt,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"jW" = (/obj/machinery/light/small/poi{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/replicator/clothing,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"ka" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"kc" = (/obj/effect/decal/cleanable/generic,/obj/structure/closet/crate/hydroponics/exotic,/obj/item/seeds/ambrosiagaiaseed,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"kd" = (/obj/structure/sign/xenobio,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0})
-"ku" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/AbandonedLab{requires_power = 0})
-"kA" = (/obj/structure/salvageable/computer,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"kF" = (/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm{dir = 5},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"mc" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"mu" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0})
-"mE" = (/obj/structure/table/reinforced,/obj/structure/window/basic{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/random/maintenance/research,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"mQ" = (/obj/structure/disposalpipe/broken{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/material/shard/shrapnel,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0})
-"ne" = (/obj/structure/prop/rock/small/alt,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"no" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"nr" = (/obj/effect/decal/cleanable/blood/drip,/turf/template_noop,/area/template_noop)
-"oc" = (/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/obj/effect/decal/cleanable/ash,/obj/random/maintenance/research,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"ol" = (/obj/structure/sign/chemistry,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"om" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"ot" = (/obj/structure/sign/hydro,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"ou" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"oI" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"oQ" = (/obj/effect/decal/cleanable/dirt,/obj/random/contraband/nofail,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"oW" = (/obj/random/vendorfood,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"pd" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"pV" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"qH" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"qO" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"rd" = (/obj/structure/salvageable/implant_container,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"rs" = (/obj/structure/closet/cabinet,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/medical,/obj/random/cash,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"sb" = (/turf/simulated/wall/solidrock,/area/submap/AbandonedLab{requires_power = 0})
-"sn" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"tf" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0})
-"to" = (/obj/structure/bed/chair/bay{dir = 8},/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"tv" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/firstaid,/obj/structure/table/glass,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"ty" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/skipjack,/area/submap/AbandonedLab{requires_power = 0})
-"uu" = (/obj/structure/table/rack/shelf/steel,/obj/random/energy,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"uC" = (/obj/item/weapon/material/shard/shrapnel,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"uZ" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/template_noop)
-"vz" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"vP" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/poi,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"xd" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"xj" = (/obj/item/weapon/material/shard/shrapnel,/obj/structure/grille/broken/rustic,/obj/item/ammo_casing/a10mm{dir = 8},/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/robot,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"xy" = (/obj/structure/railing{dir = 4},/obj/structure/boulder,/turf/template_noop,/area/submap/AbandonedLab{requires_power = 0})
-"ya" = (/obj/structure/grille/rustic,/obj/structure/window/basic/full,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"yd" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/window/brigdoor/southright{name = "Containment Pen"; req_access = null},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/melee/baton/slime/loaded{pixel_y = 13},/turf/simulated/floor/tiled/techmaint,/area/submap/AbandonedLab{requires_power = 0})
-"yq" = (/obj/effect/decal/cleanable/greenglow,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"yS" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/rustic,/obj/structure/window/basic/full,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"zd" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"zp" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"zM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/random/humanoidremains,/obj/item/clothing/under/rank/hydroponics/alt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"AB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"AP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"AZ" = (/obj/effect/decal/remains/robot,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Bb" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0})
-"BC" = (/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"BD" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0})
-"BP" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/vendordrink,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Cz" = (/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/random/projectile/scrapped_gun,/obj/item/ammo_casing/a10mm{dir = 6},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"Dh" = (/turf/template_noop,/area/template_noop)
-"Dt" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/junk,/obj/structure/curtain/black,/obj/item/weapon/card/id/silver,/obj/random/projectile/scrapped_gun,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Du" = (/obj/random/toolbox,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"DB" = (/obj/machinery/door/window,/obj/structure/table/reinforced,/obj/random/cigarettes,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"DQ" = (/obj/structure/boulder,/turf/template_noop,/area/submap/AbandonedLab{requires_power = 0})
-"DR" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/item/weapon/material/shard,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0})
-"DW" = (/obj/random/toolbox,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"EB" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"EG" = (/obj/effect/decal/remains/robot,/obj/effect/decal/cleanable/dirt,/obj/machinery/deployable/barrier{anchored = 1; icon_state = "barrier1"},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"EW" = (/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/machinery/deployable/barrier{anchored = 1; icon_state = "barrier1"},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Fb" = (/obj/effect/decal/cleanable/vomit,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"Fc" = (/obj/machinery/door/airlock,/obj/effect/floor_decal/rust/mono_rusted1,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"FN" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/item/weapon/storage/backpack/holding,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"FU" = (/obj/structure/salvageable/console{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"FV" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/light/flicker{dir = 4},/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Ge" = (/obj/effect/decal/cleanable/dirt,/obj/random/humanoidremains,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0})
-"Gk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/remains/human,/obj/item/weapon/broken_gun/ionrifle,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"GF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"GO" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"HM" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm{dir = 8},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"Id" = (/obj/effect/decal/cleanable/generic,/obj/structure/railing/grey{dir = 1},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"Im" = (/obj/effect/decal/cleanable/dirt,/obj/structure/door_assembly,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Iz" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"IE" = (/obj/structure/table/glass,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"IQ" = (/turf/simulated/wall/skipjack,/area/submap/AbandonedLab{requires_power = 0})
-"IU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/drip,/obj/item/weapon/material/shard/shrapnel,/obj/item/weapon/material/shard/shrapnel,/obj/item/weapon/material/shard/shrapnel,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/nosmoking_1{pixel_x = -30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Je" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0})
-"Jv" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"JC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/spacecash/c500,/obj/item/weapon/spacecash/c500,/obj/item/weapon/spacecash/c500,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"JZ" = (/obj/effect/decal/cleanable/blood/drip{pixel_x = -8; pixel_y = 16},/turf/template_noop,/area/template_noop)
-"Kb" = (/obj/structure/prop/rock/small,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"Kd" = (/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"KI" = (/obj/effect/floor_decal/stairs,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"KO" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"KR" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/item/stolenpackage,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"KT" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab)
-"KV" = (/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/turf/simulated/floor/outdoors/dirt,/area/submap/AbandonedLab{requires_power = 0})
-"Lk" = (/obj/structure/salvageable/console_broken_os{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Ll" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"Ln" = (/obj/machinery/chem_master,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"LL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/window/basic{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"LQ" = (/obj/effect/decal/cleanable/dirt,/obj/random/snack,/obj/random/snack,/obj/structure/table/steel,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"ML" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/structure/table/steel,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Nj" = (/obj/structure/prop/rock/round,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"Op" = (/obj/effect/decal/cleanable/blood/drip{pixel_x = -3; pixel_y = 5},/turf/template_noop,/area/template_noop)
-"Ox" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"ON" = (/obj/machinery/light/small/poi{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/table/standard{name = "plastic table frame"},/obj/fiftyspawner/steel,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"Pe" = (/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0})
-"Pg" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Ps" = (/obj/effect/floor_decal/rust,/obj/structure/railing/grey{dir = 4},/obj/effect/floor_decal/arrow{dir = 8; pixel_x = 11},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"PE" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"PK" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/material/shard/shrapnel,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0})
-"PO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/decal/cleanable/generic,/obj/machinery/light/poi{dir = 1},/obj/random/maintenance/research,/obj/structure/table,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"PP" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"Qp" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"QA" = (/obj/effect/decal/cleanable/cobweb2,/obj/random/maintenance/cargo,/obj/structure/catwalk,/obj/effect/floor_decal/rust{pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"Rr" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0})
-"Sx" = (/obj/effect/wingrille_spawn,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"SB" = (/obj/structure/boulder,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"SN" = (/obj/effect/decal/cleanable/dirt,/obj/random/empty_or_lootable_crate,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"SW" = (/obj/structure/sign/science,/obj/structure/sign/graffiti/pisoff{pixel_x = 1; pixel_y = -3},/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0})
-"Ta" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/structure/table/steel,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Tr" = (/obj/machinery/door/window/brigdoor/northright{name = "Containment Pen"; req_access = null},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/AbandonedLab{requires_power = 0})
-"Tx" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Uc" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"UQ" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"UR" = (/obj/effect/floor_decal/rust{pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0})
-"US" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"UT" = (/obj/machinery/door/airlock,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"UX" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"WL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0})
-"WZ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Xo" = (/obj/effect/floor_decal/rust,/obj/item/weapon/storage/pill_bottle/vermicetol,/obj/item/weapon/storage/pill_bottle/dermaline,/obj/item/weapon/storage/pill_bottle/dexalin_plus,/obj/item/weapon/storage/pill_bottle/carthatoline,/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"XB" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/full,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"XU" = (/obj/structure/closet/l3closet/general,/obj/effect/floor_decal/rust,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"XW" = (/obj/item/weapon/digestion_remains/skull,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0})
-"Yt" = (/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/hivebot/tank,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"YD" = (/obj/structure/table/steel,/obj/effect/decal/cleanable/blood/oil,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain2,/obj/structure/curtain/black,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0})
-"Za" = (/obj/effect/floor_decal/rust,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0})
-"Zh" = (/obj/machinery/door/window/survival_pod{dir = 2},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0})
-"Zi" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
-"Zr" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/obj/effect/floor_decal/rust{pixel_y = 1},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0})
-"ZJ" = (/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/random/trash,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"aE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"aJ" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"bj" = (
+/obj/machinery/door/airlock/security{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"bl" = (
+/mob/living/simple_mob/mechanical/hivebot/tank,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"bI" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"bZ" = (
+/obj/effect/graffitispawner,
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"cH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"dl" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"do" = (
+/obj/effect/wingrille_spawn,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"dG" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_x = -3;
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"dI" = (
+/obj/item/weapon/material/shard,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"dO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"eg" = (
+/obj/item/weapon/material/shard,
+/obj/structure/grille/broken,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"en" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/medical/pillbottle,
+/obj/structure/sign/periodic{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"fl" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/boulder,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"gk" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"gn" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"gt" = (
+/obj/structure/bed/chair/bay{
+ dir = 4
+ },
+/turf/template_noop,
+/area/template_noop)
+"gI" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/poi,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"gP" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"hl" = (
+/obj/structure/bed/chair/bay{
+ dir = 4
+ },
+/mob/living/simple_mob/humanoid/merc/ranged{
+ health = 15;
+ maxHealth = 15
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gib1_flesh"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"hs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/loot_spawn/low,
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"hH" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = null
+ },
+/obj/random/projectile/shotgun,
+/obj/random/ammo,
+/obj/random/ammo,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"hP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/generic,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"hT" = (
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ia" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/poi{
+ dir = 1
+ },
+/obj/effect/landmark/loot_spawn/low,
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ie" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"iv" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 1;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"iA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/reinforced,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"iL" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 5;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/effect/gibspawner/robot,
+/obj/structure/table,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"iS" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"jE" = (
+/obj/effect/wingrille_spawn,
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"jN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"jW" = (
+/obj/machinery/light/small/poi{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/replicator/clothing,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ka" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"kc" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/closet/crate/hydroponics/exotic,
+/obj/item/seeds/ambrosiagaiaseed,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"kd" = (
+/obj/structure/sign/xenobio,
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ku" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"kA" = (
+/obj/structure/salvageable/computer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"kF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/a10mm{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"mc" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"mu" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"mE" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"mQ" = (
+/obj/structure/disposalpipe/broken{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/floor/reinforced,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ne" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"no" = (
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"nr" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/template_noop,
+/area/template_noop)
+"oc" = (
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "cobweb1"
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/random/maintenance/research,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ol" = (
+/obj/structure/sign/chemistry,
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"om" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"ot" = (
+/obj/structure/sign/hydro,
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ou" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"oI" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"oQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/contraband/nofail,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"oW" = (
+/obj/random/vendorfood,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"pd" = (
+/obj/structure/bonfire/sifwood,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"pV" = (
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"qH" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"qO" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"rd" = (
+/obj/structure/salvageable/implant_container,
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"rs" = (
+/obj/structure/closet/cabinet,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/medical,
+/obj/random/cash,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"sb" = (
+/turf/simulated/wall/solidrock,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"sn" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"tf" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,
+/turf/simulated/floor/reinforced,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"to" = (
+/obj/structure/bed/chair/bay{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/mob/living/simple_mob/humanoid/merc/ranged{
+ health = 15;
+ maxHealth = 15
+ },
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"tv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/random/firstaid,
+/obj/structure/table/glass,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ty" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall/skipjack,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"uu" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/energy,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"uC" = (
+/obj/item/weapon/material/shard/shrapnel,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"uZ" = (
+/obj/structure/flora/tree/sif,
+/turf/template_noop,
+/area/template_noop)
+"vz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner/generic,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"vP" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/poi,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"xd" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"xj" = (
+/obj/item/weapon/material/shard/shrapnel,
+/obj/structure/grille/broken/rustic,
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/obj/item/weapon/material/shard,
+/obj/item/weapon/material/shard,
+/obj/item/weapon/material/shard,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner/robot,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"xy" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/boulder,
+/turf/template_noop,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ya" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/basic/full,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"yd" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Containment Pen";
+ req_access = null
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/melee/baton/slime/loaded{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"yq" = (
+/obj/effect/decal/cleanable/greenglow,
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"yS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille/rustic,
+/obj/structure/window/basic/full,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"zd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/trash,
+/obj/effect/decal/cleanable/chemcoating,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"zp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"zM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/random/humanoidremains,
+/obj/item/clothing/under/rank/hydroponics/alt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"AB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"AP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner/generic,
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"AZ" = (
+/obj/effect/decal/remains/robot,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Bb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/reinforced,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"BC" = (
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"BD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"BP" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/random/vendordrink,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Cz" = (
+/mob/living/simple_mob/humanoid/merc/ranged{
+ health = 15;
+ maxHealth = 15
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/random/projectile/scrapped_gun,
+/obj/item/ammo_casing/a10mm{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Dh" = (
+/turf/template_noop,
+/area/template_noop)
+"Dt" = (
+/obj/structure/table/steel,
+/obj/random/junk,
+/obj/random/junk,
+/obj/structure/curtain/black,
+/obj/item/weapon/card/id/silver,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Du" = (
+/obj/random/toolbox,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"DB" = (
+/obj/machinery/door/window,
+/obj/structure/table/reinforced,
+/obj/random/cigarettes,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"DQ" = (
+/obj/structure/boulder,
+/turf/template_noop,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"DR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/reinforced,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"DW" = (
+/obj/random/toolbox,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"EB" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/loot_spawn,
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"EG" = (
+/obj/effect/decal/remains/robot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/deployable/barrier{
+ anchored = 1;
+ icon_state = "barrier1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"EW" = (
+/obj/item/weapon/material/shard,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/deployable/barrier{
+ anchored = 1;
+ icon_state = "barrier1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Fb" = (
+/obj/effect/decal/cleanable/vomit,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chemcoating,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Fc" = (
+/obj/machinery/door/airlock,
+/obj/effect/floor_decal/rust/mono_rusted1,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"FN" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/stolenpackage,
+/obj/item/weapon/storage/backpack/holding,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"FU" = (
+/obj/structure/salvageable/console{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"FV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/flicker{
+ dir = 4
+ },
+/obj/effect/gibspawner/generic,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Ge" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/humanoidremains,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Gk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/remains/human,
+/obj/item/weapon/broken_gun/ionrifle,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"GF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner/generic,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"GO" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"HM" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Id" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Im" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/door_assembly,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Iz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"IE" = (
+/obj/structure/table/glass,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/beaker/bluespace,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"IQ" = (
+/turf/simulated/wall/skipjack,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"IU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/weapon/material/shard/shrapnel,
+/obj/item/weapon/material/shard/shrapnel,
+/obj/item/weapon/material/shard/shrapnel,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -30
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Je" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Jv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"JC" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/spacecash/c500,
+/obj/item/weapon/spacecash/c500,
+/obj/item/weapon/spacecash/c500,
+/obj/structure/window/reinforced/survival_pod,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"JZ" = (
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_x = -8;
+ pixel_y = 16
+ },
+/turf/template_noop,
+/area/template_noop)
+"Kb" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Kd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/a10mm,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"KI" = (
+/obj/effect/floor_decal/stairs,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"KO" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"KR" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/structure/window/reinforced/survival_pod,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"KT" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab)
+"KV" = (
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Lk" = (
+/obj/structure/salvageable/console_broken_os{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chemcoating,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Ll" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Ln" = (
+/obj/machinery/chem_master,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"LL" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"LQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/snack,
+/obj/random/snack,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ML" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/obj/structure/table/steel,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Nj" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"Op" = (
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/template_noop,
+/area/template_noop)
+"Ox" = (
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"ON" = (
+/obj/machinery/light/small/poi{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/fiftyspawner/steel,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Pe" = (
+/obj/effect/gibspawner/generic,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Pg" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Ps" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/arrow{
+ dir = 8;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"PE" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"PK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard/shrapnel,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"PO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/machinery/light/poi{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/structure/table,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"PP" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/prop/rock/flat,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Qp" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"QA" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/random/maintenance/cargo,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust{
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Rr" = (
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Sd" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Sx" = (
+/obj/effect/wingrille_spawn,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"SB" = (
+/obj/structure/boulder,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"SN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/empty_or_lootable_crate,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"SW" = (
+/obj/structure/sign/science,
+/obj/structure/sign/graffiti/pisoff{
+ pixel_x = 1;
+ pixel_y = -3
+ },
+/turf/simulated/wall/iron,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Ta" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Tr" = (
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Containment Pen";
+ req_access = null
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/techmaint,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Tx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Uc" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"UQ" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"UR" = (
+/obj/effect/floor_decal/rust{
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"US" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege,
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"UT" = (
+/obj/machinery/door/airlock,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"UX" = (
+/mob/living/simple_mob/mechanical/hivebot/tank/armored,
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"WL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"WZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Xo" = (
+/obj/effect/floor_decal/rust,
+/obj/item/weapon/storage/pill_bottle/vermicetol,
+/obj/item/weapon/storage/pill_bottle/dermaline,
+/obj/item/weapon/storage/pill_bottle/dexalin_plus,
+/obj/item/weapon/storage/pill_bottle/carthatoline,
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"XB" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chemcoating,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"XU" = (
+/obj/structure/closet/l3closet/general,
+/obj/effect/floor_decal/rust,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/effect/floor_decal/rust/color_rustedcee,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"XW" = (
+/obj/item/weapon/digestion_remains/skull,
+/obj/item/weapon/tool/crowbar,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Yt" = (
+/obj/effect/floor_decal/rust,
+/mob/living/simple_mob/mechanical/hivebot/tank,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"YD" = (
+/obj/structure/table/steel,
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/fountain2,
+/obj/structure/curtain/black,
+/turf/simulated/floor/tiled/dark,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Za" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/floor/tiled/steel,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Zh" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 2
+ },
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"Zi" = (
+/obj/item/weapon/pickaxe,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
+"Zr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/loot_spawn/low,
+/obj/effect/floor_decal/rust{
+ pixel_y = 1
+ },
+/turf/simulated/floor,
+/area/submap/AbandonedLab{
+ requires_power = 0
+ })
+"ZJ" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/template_noop)
(1,1,1) = {"
-DhuZDhDhkukukukukuDhDhkuneDhDhDhDhDhDhDhDhDhDhDh
-DhDhDhkukukuXWPPkukukukunonoKbkuDhDhDhDhDhDhDhDh
-DhkukukukukukukukukukukukukukukukukukuDhDhDhDhDh
-DhkukukusbkaBCkakasbkukuBCBCBCkukusbsbsbsbsbkuDh
-kukusbsbgkhsGePgBCrdsbsbXBIELnsbsbtytytytyIQsbku
-kukuBCouoIbIWLzMkaTxzpFbABabenBCkuIQuugPFNIQsbku
-DhkukakcjNPeBDsnBCXotvzdZavPLkBCkuIQKRZhJCtysbku
-DhkuBCkaotImdodoBCkaBCUToljEkaBCkutyPERrUStysbDh
-DhkukukuSBQpmciaAZoWBPaEiLPOkAkakutyjWxdONtysbDh
-DhDhkuSNWZIzJvdOGkiSKOoQivhPXUBCsbtyblAPGOIQsbku
-DhkukukabjkakaBCEWEGmucHFckdmumuKVtyvzUXEBtysbku
-DhkuBCrshTdIuCegkFYtmuocLlieCzcHkutytyKTIQtysbku
-DhDhbZhHqOHMhlDBIdFVcHmETrLLPKUQyqURaJQAsbsbkuDh
-DhkuBCFUGFKdqHSxPsYDcHyaydySxjJesbsbsbsbkuDhDhDh
-DhkuBCMLgITaLQBCIUDtmuZrtfmQDRJekukukukukuDhDhuZ
-kukuBCBCBCBCBCkapVSWcHmuiABbmukuDWUckuDhDhDhDhDh
-kukukukukudlkukuKIflkukumumukuNjOxDhDhDhZiDhomDh
-DhkuOxZJkunonexyDQdGdlDukukukuDhDhuZDhgtgnpdOxto
-DhDhDhDhDhDhDhDhDhDhDhDhOpDhDhDhJZDhOxDhnrOxOxDh
+Dh
+Dh
+Dh
+Dh
+ku
+ku
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
+ku
+ku
+Dh
+Dh
+"}
+(2,1,1) = {"
+uZ
+Dh
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+Dh
+ku
+ku
+Dh
+ku
+ku
+ku
+Sd
+ku
+Dh
+"}
+(3,1,1) = {"
+Dh
+Dh
+ku
+ku
+sb
+BC
+ka
+BC
+ku
+ku
+ku
+BC
+bZ
+BC
+BC
+BC
+ku
+Ox
+Dh
+"}
+(4,1,1) = {"
+Dh
+ku
+ku
+ku
+sb
+ou
+kc
+ka
+ku
+SN
+ka
+rs
+hH
+FU
+ML
+BC
+ku
+ZJ
+Dh
+"}
+(5,1,1) = {"
+ku
+ku
+ku
+sb
+gk
+oI
+jN
+ot
+SB
+WZ
+bj
+hT
+qO
+GF
+gI
+BC
+ku
+ku
+Dh
+"}
+(6,1,1) = {"
+ku
+ku
+ku
+ka
+hs
+bI
+Pe
+Im
+Qp
+Iz
+ka
+dI
+HM
+Kd
+Ta
+BC
+dl
+no
+Dh
+"}
+(7,1,1) = {"
+ku
+XW
+ku
+BC
+Ge
+WL
+BD
+do
+mc
+Jv
+ka
+uC
+hl
+qH
+LQ
+BC
+ku
+ne
+Dh
+"}
+(8,1,1) = {"
+ku
+PP
+ku
+ka
+Pg
+zM
+sn
+do
+ia
+dO
+BC
+eg
+DB
+Sx
+BC
+ka
+ku
+xy
+Dh
+"}
+(9,1,1) = {"
+ku
+ku
+ku
+ka
+BC
+ka
+BC
+BC
+AZ
+Gk
+EW
+kF
+Id
+Ps
+IU
+pV
+KI
+DQ
+Dh
+"}
+(10,1,1) = {"
+Dh
+ku
+ku
+sb
+rd
+Tx
+Xo
+ka
+oW
+iS
+EG
+Yt
+FV
+YD
+Dt
+SW
+fl
+dG
+Dh
+"}
+(11,1,1) = {"
+Dh
+ku
+ku
+ku
+sb
+zp
+tv
+BC
+BP
+KO
+mu
+mu
+cH
+cH
+mu
+cH
+ku
+dl
+Dh
+"}
+(12,1,1) = {"
+ku
+ku
+ku
+ku
+sb
+Fb
+zd
+UT
+aE
+oQ
+cH
+oc
+mE
+ya
+Zr
+mu
+ku
+Du
+Dh
+"}
+(13,1,1) = {"
+ne
+no
+ku
+BC
+XB
+AB
+Za
+ol
+iL
+iv
+Fc
+Ll
+Tr
+yd
+tf
+iA
+mu
+ku
+Op
+"}
+(14,1,1) = {"
+Dh
+no
+ku
+BC
+IE
+ab
+vP
+jE
+PO
+hP
+kd
+ie
+LL
+yS
+mQ
+Bb
+mu
+ku
+Dh
+"}
+(15,1,1) = {"
+Dh
+Kb
+ku
+BC
+Ln
+en
+Lk
+ka
+kA
+XU
+mu
+Cz
+PK
+xj
+DR
+mu
+ku
+ku
+Dh
+"}
+(16,1,1) = {"
+Dh
+ku
+ku
+ku
+sb
+BC
+BC
+BC
+ka
+BC
+mu
+cH
+UQ
+Je
+Je
+ku
+Nj
+Dh
+Dh
+"}
+(17,1,1) = {"
+Dh
+Dh
+ku
+ku
+sb
+ku
+ku
+ku
+ku
+sb
+KV
+ku
+yq
+sb
+ku
+DW
+Ox
+Dh
+JZ
+"}
+(18,1,1) = {"
+Dh
+Dh
+ku
+sb
+ty
+IQ
+IQ
+ty
+ty
+ty
+ty
+ty
+UR
+sb
+ku
+Uc
+Dh
+uZ
+Dh
+"}
+(19,1,1) = {"
+Dh
+Dh
+ku
+sb
+ty
+uu
+KR
+PE
+jW
+bl
+vz
+ty
+aJ
+sb
+ku
+ku
+Dh
+Dh
+Ox
+"}
+(20,1,1) = {"
+Dh
+Dh
+Dh
+sb
+ty
+gP
+Zh
+Rr
+xd
+AP
+UX
+KT
+QA
+sb
+ku
+Dh
+Dh
+gt
+Dh
+"}
+(21,1,1) = {"
+Dh
+Dh
+Dh
+sb
+ty
+FN
+JC
+US
+ON
+GO
+EB
+IQ
+sb
+ku
+ku
+Dh
+Zi
+gn
+nr
+"}
+(22,1,1) = {"
+Dh
+Dh
+Dh
+sb
+IQ
+IQ
+ty
+ty
+ty
+IQ
+ty
+ty
+sb
+Dh
+Dh
+Dh
+Dh
+pd
+Ox
+"}
+(23,1,1) = {"
+Dh
+Dh
+Dh
+ku
+sb
+sb
+sb
+sb
+sb
+sb
+sb
+sb
+ku
+Dh
+Dh
+Dh
+om
+Ox
+Ox
+"}
+(24,1,1) = {"
+Dh
+Dh
+Dh
+Dh
+ku
+ku
+ku
+Dh
+Dh
+ku
+ku
+ku
+Dh
+Dh
+uZ
+Dh
+Dh
+to
+Dh
"}
diff --git a/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm b/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm
index 60a549b105..ab004adfd3 100644
--- a/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm
+++ b/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm
@@ -1286,6 +1286,11 @@
temperature = 243.15
},
/area/submap/DugOutMercs)
+"Zs" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled,
+/area/submap/DugOutMercs)
"Zt" = (
/obj/effect/floor_decal/corner/blue/border{
dir = 8
@@ -1880,7 +1885,7 @@ sc
sc
uv
nZ
-yG
+Zs
pg
Eh
Eh
diff --git a/maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm b/maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm
index 6ae9468883..8519b5b0f9 100644
--- a/maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm
+++ b/maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm
@@ -29,6 +29,11 @@
temperature = 243.15
},
/area/submap/DugOutMercs)
+"aS" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled,
+/area/submap/DugOutMercs)
"bm" = (
/obj/machinery/light,
/obj/effect/floor_decal/corner/lightgrey/diagonal,
@@ -1763,7 +1768,7 @@ Cp
rg
bu
nJ
-aM
+aS
bu
XW
XW
diff --git a/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm b/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
index 5da5dd9da9..1966e0f0ff 100644
--- a/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
@@ -838,6 +838,10 @@
/obj/effect/floor_decal/borderfloor/full,
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
+"Zy" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
(1,1,1) = {"
aa
@@ -1375,7 +1379,7 @@ ay
bh
bl
bl
-bl
+Zy
bl
bF
ay
diff --git a/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm b/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
index 24bf9a19ab..3fca57da7b 100644
--- a/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
@@ -939,6 +939,11 @@
},
/turf/simulated/floor/tiled/red,
/area/submap/Blackshuttledown)
+"oi" = (
+/obj/effect/alien/weeds,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
"so" = (
/obj/structure/table/steel,
/obj/random/toolbox,
@@ -1604,7 +1609,7 @@ aR
bh
bI
ct
-ct
+oi
bI
bF
aR
diff --git a/maps/submaps/surface_submaps/wilderness/DoomP.dmm b/maps/submaps/surface_submaps/wilderness/DoomP.dmm
index 0d9f115936..bc5711ae38 100644
--- a/maps/submaps/surface_submaps/wilderness/DoomP.dmm
+++ b/maps/submaps/surface_submaps/wilderness/DoomP.dmm
@@ -942,6 +942,10 @@
/obj/machinery/door/airlock/hatch,
/turf/simulated/floor/tiled/asteroid_steel,
/area/submap/DoomP)
+"WU" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/DoomP)
"Xj" = (
/obj/structure/table/standard,
/obj/item/stolenpackage,
@@ -2808,7 +2812,7 @@ og
Ra
lc
VA
-bQ
+WU
bQ
Nl
at
diff --git a/maps/submaps/surface_submaps/wilderness/DoomPAlt.dmm b/maps/submaps/surface_submaps/wilderness/DoomPAlt.dmm
index 23848a819d..275e22fe78 100644
--- a/maps/submaps/surface_submaps/wilderness/DoomPAlt.dmm
+++ b/maps/submaps/surface_submaps/wilderness/DoomPAlt.dmm
@@ -156,6 +156,13 @@
/obj/structure/lattice,
/turf/simulated/floor/water,
/area/submap/DoomP)
+"ix" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/submap/DoomP)
"iC" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2879,7 +2886,7 @@ Yl
vq
UV
fc
-SD
+ix
Qh
Qh
et
diff --git a/maps/submaps/surface_submaps/wilderness/Manor1.dmm b/maps/submaps/surface_submaps/wilderness/Manor1.dmm
index 230f3cf96a..9a86b263f8 100644
--- a/maps/submaps/surface_submaps/wilderness/Manor1.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Manor1.dmm
@@ -1146,6 +1146,10 @@
/obj/item/weapon/bone/ribs,
/turf/simulated/floor/holofloor/wood,
/area/submap/Manor1)
+"yn" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/wall/wood,
+/area/submap/Manor1)
"yI" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_mob/animal/giant_spider/carrier,
@@ -2454,7 +2458,7 @@ ab
ab
ab
ab
-ab
+yn
ab
ab
ab
diff --git a/maps/submaps/surface_submaps/wilderness/Manor1Alt.dmm b/maps/submaps/surface_submaps/wilderness/Manor1Alt.dmm
index 06eea9f947..bd960372df 100644
--- a/maps/submaps/surface_submaps/wilderness/Manor1Alt.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Manor1Alt.dmm
@@ -553,6 +553,11 @@
/obj/effect/spider/stickyweb,
/turf/simulated/floor/holofloor/wood,
/area/submap/Manor1)
+"si" = (
+/obj/effect/map_helper/no_phaseshift,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/holofloor/wood,
+/area/submap/Manor1)
"sl" = (
/obj/random/humanoidremains,
/turf/simulated/floor/holofloor/wood,
@@ -2202,7 +2207,7 @@ CY
CY
CY
CY
-rh
+si
rh
CY
CY
diff --git a/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm b/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm
index 0526c84844..c307bd0f3e 100644
--- a/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm
+++ b/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm
@@ -55,6 +55,7 @@
"jF" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/loot_pile/mecha/phazon,
/turf/simulated/floor/tiled/red,
/area/submap/MechHangar)
"mP" = (
@@ -124,13 +125,6 @@
"uy" = (
/turf/template_noop,
/area/template_noop)
-"uK" = (
-/mob/living/simple_mob/mechanical/mecha/combat/phazon,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt{
- outdoors = 0
- },
-/area/submap/MechHangar)
"vy" = (
/turf/simulated/floor/outdoors/dirt{
outdoors = 0
@@ -182,7 +176,7 @@
/area/submap/MechHangar)
"AW" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/effect/decal/mecha_wreckage/marauder,
+/obj/structure/loot_pile/mecha/marauder/mauler,
/turf/simulated/floor/tiled/red,
/area/submap/MechHangar)
"BZ" = (
@@ -223,10 +217,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/submap/MechHangar)
-"IM" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/red,
-/area/submap/MechHangar)
"Ju" = (
/turf/simulated/floor/outdoors/rocks{
outdoors = 0
@@ -251,15 +241,6 @@
outdoors = 0
},
/area/submap/MechHangar)
-"KW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_mob/mechanical/mecha/combat/phazon,
-/turf/simulated/floor/outdoors/dirt{
- outdoors = 0
- },
-/area/submap/MechHangar)
"Le" = (
/obj/effect/floor_decal/corner/black/diagonal,
/obj/effect/decal/cleanable/dirt,
@@ -323,7 +304,7 @@
/area/submap/MechHangar)
"Ze" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/loot_pile/mecha/deathripley,
+/obj/structure/loot_pile/mecha/ripley/random_sprite,
/turf/simulated/floor/tiled/red,
/area/submap/MechHangar)
"ZC" = (
@@ -502,7 +483,7 @@ ha
sD
sD
LE
-KW
+ZC
Sk
Sk
LE
@@ -629,7 +610,7 @@ ha
ob
Hz
Le
-IM
+tt
ha
sD
sD
@@ -768,7 +749,7 @@ vP
sD
sD
sD
-uK
+LE
LE
vP
tF
diff --git a/maps/submaps/surface_submaps/wilderness/borglab.dmm b/maps/submaps/surface_submaps/wilderness/borglab.dmm
index e38cd87c7d..4fe3eaa5f5 100644
--- a/maps/submaps/surface_submaps/wilderness/borglab.dmm
+++ b/maps/submaps/surface_submaps/wilderness/borglab.dmm
@@ -1166,6 +1166,14 @@
"RP" = (
/turf/simulated/floor/outdoors/dirt,
/area/submap/BorgLab)
+"RZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/plating,
+/area/submap/BorgLab)
"Su" = (
/obj/effect/floor_decal/techfloor/orange,
/obj/item/stack/material/uranium{
@@ -1737,7 +1745,7 @@ KX
jf
Vc
bI
-RL
+RZ
Nj
lZ
YD
diff --git a/maps/submaps/surface_submaps/wilderness/borglabAlt.dmm b/maps/submaps/surface_submaps/wilderness/borglabAlt.dmm
index 28039e1e1f..9a46d1da90 100644
--- a/maps/submaps/surface_submaps/wilderness/borglabAlt.dmm
+++ b/maps/submaps/surface_submaps/wilderness/borglabAlt.dmm
@@ -1144,6 +1144,7 @@
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
+/obj/effect/map_helper/no_phaseshift,
/turf/simulated/floor/tiled,
/area/submap/BorgLab)
"Oy" = (
diff --git a/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm b/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm
new file mode 100644
index 0000000000..3fc58b5b58
--- /dev/null
+++ b/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm
@@ -0,0 +1,1195 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aH" = (
+/obj/machinery/button/remote/blast_door{
+ id = "bountycellA"
+ },
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"aP" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"aZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"cL" = (
+/obj/structure/table/sifwoodentable,
+/obj/structure/table/sifwoodentable,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/maintenance/morestuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"dd" = (
+/obj/structure/railing,
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"dF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"dR" = (
+/turf/template_noop,
+/area/submap/BountyHunters)
+"fM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"fW" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"jO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"kx" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"lT" = (
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"mi" = (
+/mob/living/simple_mob/clowns/destroyer,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"mS" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"oV" = (
+/obj/random/mob/merc/all,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"pn" = (
+/obj/machinery/door/airlock,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"qG" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"qQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"rt" = (
+/obj/structure/table/steel,
+/obj/random/projectile,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"sL" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"tU" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"ub" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"uu" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/medical,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"uC" = (
+/obj/item/weapon/bedsheet/purple,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"vv" = (
+/obj/structure/table/steel,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"vG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"wc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"xM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"zl" = (
+/turf/simulated/wall/r_concrete,
+/area/submap/BountyHunters)
+"DI" = (
+/obj/machinery/button/remote/blast_door{
+ id = "bountycellB"
+ },
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Fr" = (
+/obj/random/mob/merc/all,
+/obj/random/mob/merc/all,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"FN" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Gi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/mob/living/simple_mob/humanoid/merc/ranged/sniper,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Gq" = (
+/obj/structure/table/sifwoodentable,
+/obj/structure/table/sifwoodentable,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/random/maintenance/morestuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"GI" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Hj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Jp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"KN" = (
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"LV" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"LX" = (
+/obj/structure/table/steel,
+/obj/random/material/precious,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"MR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Nc" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"NE" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"NZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Oy" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Pv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"PP" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "PAPC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"QW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"QX" = (
+/mob/living/simple_mob/humanoid/cultist/noodle,
+/mob/living/simple_mob/humanoid/cultist/noodle,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"QY" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"RC" = (
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"SR" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Tc" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Uc" = (
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/obj/machinery/door/airlock,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Uz" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"VU" = (
+/turf/template_noop,
+/area/template_noop)
+"Yd" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Zj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"Zl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"Zm" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+
+(1,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
+(2,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
+(3,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
+(4,1,1) = {"
+VU
+VU
+Zm
+Zm
+Zm
+Zm
+Zm
+Zm
+Zm
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+VU
+VU
+VU
+VU
+"}
+(5,1,1) = {"
+VU
+VU
+Zm
+vG
+Zj
+Zj
+Zj
+Jp
+Zm
+zl
+aP
+QY
+Oy
+zl
+QY
+qG
+pn
+qG
+qG
+qG
+zl
+VU
+VU
+VU
+VU
+"}
+(6,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+MR
+qG
+qG
+qG
+xM
+qG
+qG
+zl
+qG
+qG
+qG
+lT
+VU
+VU
+VU
+VU
+"}
+(7,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+NZ
+qG
+QX
+qG
+Uc
+qG
+qG
+zl
+SR
+Tc
+qG
+NE
+VU
+VU
+VU
+VU
+"}
+(8,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+Hj
+qG
+qG
+qG
+wc
+qG
+RC
+zl
+PP
+Gi
+qG
+NE
+VU
+VU
+VU
+VU
+"}
+(9,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+uC
+Gq
+qG
+zl
+qG
+qG
+zl
+FN
+jO
+LV
+KN
+VU
+VU
+VU
+VU
+"}
+(10,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+kx
+zl
+zl
+zl
+zl
+zl
+qG
+qG
+zl
+zl
+zl
+zl
+zl
+VU
+VU
+VU
+VU
+"}
+(11,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+sL
+rt
+uu
+fW
+qG
+qG
+aH
+zl
+dR
+dR
+dR
+VU
+VU
+VU
+VU
+"}
+(12,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+qG
+qG
+oV
+qG
+qG
+qG
+LX
+zl
+dR
+dR
+dR
+VU
+VU
+VU
+VU
+"}
+(13,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+Yd
+qG
+qG
+qG
+qG
+qG
+oV
+qG
+Yd
+dR
+dR
+dR
+VU
+VU
+VU
+VU
+"}
+(14,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+qG
+qG
+Fr
+qG
+qG
+qG
+vv
+zl
+dR
+dR
+dR
+VU
+VU
+VU
+VU
+"}
+(15,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+sL
+uu
+rt
+GI
+qG
+qG
+DI
+zl
+dR
+dR
+dR
+VU
+VU
+VU
+VU
+"}
+(16,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+kx
+zl
+zl
+zl
+zl
+zl
+qG
+qG
+zl
+zl
+zl
+zl
+zl
+VU
+VU
+VU
+VU
+"}
+(17,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+zl
+uC
+cL
+qG
+zl
+qG
+qG
+zl
+SR
+Tc
+qG
+lT
+VU
+VU
+VU
+VU
+"}
+(18,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+ub
+qG
+qG
+qG
+qQ
+qG
+RC
+zl
+PP
+Gi
+qG
+NE
+VU
+VU
+VU
+VU
+"}
+(19,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+Nc
+qG
+mi
+qG
+Uc
+qG
+qG
+zl
+FN
+jO
+qG
+NE
+VU
+VU
+VU
+VU
+"}
+(20,1,1) = {"
+VU
+VU
+Zm
+QW
+Zm
+Zm
+Zm
+aZ
+Zm
+Uz
+qG
+qG
+qG
+fM
+qG
+qG
+zl
+qG
+qG
+qG
+dd
+VU
+VU
+VU
+VU
+"}
+(21,1,1) = {"
+VU
+VU
+Zm
+dF
+Pv
+Pv
+Pv
+Zl
+Zm
+zl
+aP
+tU
+mS
+zl
+tU
+qG
+pn
+qG
+qG
+qG
+zl
+VU
+VU
+VU
+VU
+"}
+(22,1,1) = {"
+VU
+VU
+Zm
+Zm
+Zm
+Zm
+Zm
+Zm
+Zm
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+VU
+VU
+VU
+VU
+"}
+(23,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
+(24,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
+(25,1,1) = {"
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+VU
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/bountyhunters2.dmm b/maps/submaps/surface_submaps/wilderness/bountyhunters2.dmm
new file mode 100644
index 0000000000..a8419757f5
--- /dev/null
+++ b/maps/submaps/surface_submaps/wilderness/bountyhunters2.dmm
@@ -0,0 +1,1214 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aB" = (
+/obj/structure/table/steel,
+/obj/random/projectile,
+/obj/machinery/recharger,
+/obj/item/weapon/gun/projectile/automatic/fal,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"be" = (
+/mob/living/simple_mob/humanoid/merc/ranged/space/suppressor/elite{
+ name = "elite bounty hunter"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"bw" = (
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"cI" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"db" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"dI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"eH" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/medical,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"eY" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"fY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"gT" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"hj" = (
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/obj/machinery/door/airlock,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"kn" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"lf" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"mf" = (
+/turf/simulated/wall/r_concrete,
+/area/submap/BountyHunters)
+"mY" = (
+/obj/structure/table/steel,
+/obj/random/projectile,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"nD" = (
+/obj/structure/table/sifwoodentable,
+/obj/structure/table/sifwoodentable,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/maintenance/morestuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"oX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"pF" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"pG" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"qy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"rC" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"sM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"tE" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"tM" = (
+/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"uh" = (
+/obj/structure/table/steel,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"wa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"wu" = (
+/obj/structure/table/steel,
+/obj/random/material/precious,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"xt" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"yz" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"zu" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "PAPC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"zM" = (
+/obj/machinery/button/remote/blast_door{
+ id = "bountycellB"
+ },
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Bu" = (
+/obj/machinery/button/remote/blast_door{
+ id = "bountycellA"
+ },
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"DA" = (
+/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Ej" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"EC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"Gz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Hj" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"HF" = (
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/obj/machinery/door/airlock,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Ii" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"IW" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Jn" = (
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Kq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"KF" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/medical,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Ly" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellB"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"MV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"Nt" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"NM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"Pr" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"PK" = (
+/turf/template_noop,
+/area/template_noop)
+"PN" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Re" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"SL" = (
+/obj/structure/table/sifwoodentable,
+/obj/structure/table/sifwoodentable,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/random/maintenance/morestuff,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Ur" = (
+/turf/template_noop,
+/area/submap/BountyHunters)
+"Us" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"VQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Wj" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/BountyHunters)
+"WC" = (
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"WF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/mob/living/simple_mob/humanoid/merc/ranged/sniper{
+ name = "bounty sniper"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"Yz" = (
+/obj/item/weapon/bedsheet/purple,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/bed/padded,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"ZK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "bountycellA"
+ },
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+"ZM" = (
+/obj/structure/railing,
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/concrete,
+/area/submap/BountyHunters)
+
+(1,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
+(2,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
+(3,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
+(4,1,1) = {"
+PK
+PK
+Wj
+Wj
+Wj
+Wj
+Wj
+Wj
+Wj
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+PK
+PK
+PK
+PK
+"}
+(5,1,1) = {"
+PK
+PK
+Wj
+EC
+Kq
+Kq
+Kq
+MV
+Wj
+mf
+lf
+Nt
+kn
+mf
+Nt
+rC
+eY
+rC
+rC
+rC
+mf
+PK
+PK
+PK
+PK
+"}
+(6,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+oX
+rC
+rC
+rC
+fY
+rC
+rC
+mf
+rC
+rC
+rC
+bw
+PK
+PK
+PK
+PK
+"}
+(7,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+ZK
+rC
+DA
+rC
+hj
+rC
+rC
+mf
+PN
+IW
+rC
+xt
+PK
+PK
+PK
+PK
+"}
+(8,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+wa
+rC
+rC
+rC
+VQ
+rC
+WC
+mf
+zu
+WF
+rC
+xt
+PK
+PK
+PK
+PK
+"}
+(9,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+Yz
+SL
+rC
+mf
+rC
+rC
+mf
+db
+Ii
+rC
+Jn
+PK
+PK
+PK
+PK
+"}
+(10,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Us
+mf
+mf
+mf
+mf
+mf
+rC
+rC
+mf
+mf
+mf
+mf
+mf
+PK
+PK
+PK
+PK
+"}
+(11,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+yz
+aB
+KF
+Pr
+rC
+rC
+Bu
+mf
+Ur
+Ur
+Ur
+PK
+PK
+PK
+PK
+"}
+(12,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+rC
+rC
+rC
+rC
+rC
+rC
+wu
+mf
+Ur
+Ur
+Ur
+PK
+PK
+PK
+PK
+"}
+(13,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+eY
+rC
+rC
+rC
+be
+rC
+rC
+rC
+eY
+Ur
+Ur
+Ur
+PK
+PK
+PK
+PK
+"}
+(14,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+rC
+rC
+rC
+rC
+rC
+rC
+uh
+mf
+Ur
+Ur
+Ur
+PK
+PK
+PK
+PK
+"}
+(15,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+yz
+eH
+mY
+pF
+rC
+rC
+zM
+mf
+Ur
+Ur
+Ur
+PK
+PK
+PK
+PK
+"}
+(16,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Us
+mf
+mf
+mf
+mf
+mf
+rC
+rC
+mf
+mf
+mf
+mf
+mf
+PK
+PK
+PK
+PK
+"}
+(17,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+mf
+Yz
+nD
+rC
+mf
+rC
+rC
+mf
+PN
+IW
+rC
+bw
+PK
+PK
+PK
+PK
+"}
+(18,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+gT
+rC
+rC
+rC
+qy
+rC
+WC
+mf
+zu
+WF
+rC
+xt
+PK
+PK
+PK
+PK
+"}
+(19,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+pG
+rC
+tM
+rC
+HF
+rC
+rC
+mf
+db
+Ii
+rC
+xt
+PK
+PK
+PK
+PK
+"}
+(20,1,1) = {"
+PK
+PK
+Wj
+Re
+Wj
+Wj
+Wj
+Hj
+Wj
+Ly
+rC
+rC
+rC
+Gz
+rC
+rC
+mf
+rC
+rC
+rC
+ZM
+PK
+PK
+PK
+PK
+"}
+(21,1,1) = {"
+PK
+PK
+Wj
+NM
+dI
+dI
+dI
+sM
+Wj
+mf
+lf
+cI
+Ej
+mf
+cI
+tE
+eY
+rC
+rC
+rC
+mf
+PK
+PK
+PK
+PK
+"}
+(22,1,1) = {"
+PK
+PK
+Wj
+Wj
+Wj
+Wj
+Wj
+Wj
+Wj
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+mf
+PK
+PK
+PK
+PK
+"}
+(23,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
+(24,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
+(25,1,1) = {"
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/chasm.dmm b/maps/submaps/surface_submaps/wilderness/chasm.dmm
index c0b3121fc6..ddd128f087 100644
--- a/maps/submaps/surface_submaps/wilderness/chasm.dmm
+++ b/maps/submaps/surface_submaps/wilderness/chasm.dmm
@@ -110,7 +110,7 @@
/area/submap/Chasm)
"kR" = (
/obj/effect/floor_decal/rust,
-/mob/living/simple_mob/animal/space/jelly{
+/mob/living/simple_mob/vore/jelly{
health = 150;
maxHealth = 150;
name = "Cavern jelly blob"
@@ -363,7 +363,7 @@
/turf/simulated/floor/plating,
/area/submap/Chasm)
"DH" = (
-/mob/living/simple_mob/animal/space/jelly,
+/mob/living/simple_mob/vore/jelly,
/turf/simulated/floor/outdoors/rocks{
outdoors = 0
},
@@ -606,7 +606,7 @@
/obj/structure/cliff/automatic/corner{
dir = 10
},
-/mob/living/simple_mob/animal/space/jelly{
+/mob/living/simple_mob/vore/jelly{
health = 150;
maxHealth = 150;
name = "Cavern jelly blob"
@@ -661,7 +661,7 @@
},
/area/submap/Chasm)
"Zn" = (
-/mob/living/simple_mob/animal/space/jelly{
+/mob/living/simple_mob/vore/jelly{
health = 150;
maxHealth = 150;
name = "Cavern jelly blob"
@@ -672,7 +672,7 @@
},
/area/submap/Chasm)
"ZS" = (
-/mob/living/simple_mob/animal/space/jelly{
+/mob/living/simple_mob/vore/jelly{
health = 150;
maxHealth = 150;
name = "Cavern jelly blob"
diff --git a/maps/submaps/surface_submaps/wilderness/deathden.dmm b/maps/submaps/surface_submaps/wilderness/deathden.dmm
index 5099dbfc5e..30db67fda6 100644
--- a/maps/submaps/surface_submaps/wilderness/deathden.dmm
+++ b/maps/submaps/surface_submaps/wilderness/deathden.dmm
@@ -868,6 +868,7 @@
"Up" = (
/obj/structure/windoor_assembly,
/obj/random/trash,
+/obj/effect/map_helper/no_phaseshift,
/turf/simulated/floor/tiled/freezer,
/area/submap/DeathDen)
"UR" = (
diff --git a/maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm b/maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm
index 44299ebcea..d8d9d5676b 100644
--- a/maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm
+++ b/maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm
@@ -737,6 +737,12 @@
},
/turf/simulated/floor/wood/sif,
/area/submap/DeathDen)
+"Yr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/floor/wood/sif,
+/area/submap/DeathDen)
"YA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -938,7 +944,7 @@ Is
(10,1,1) = {"
Is
rn
-Do
+Yr
Go
Xy
Ps
diff --git a/maps/submaps/surface_submaps/wilderness/derelictengine.dmm b/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
index c15d361734..794cb9d23a 100644
--- a/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
+++ b/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
@@ -2619,6 +2619,14 @@
},
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"Fv" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/simulated/shuttle/floor/alien{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/DerelictEngine)
"FC" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -5008,7 +5016,7 @@ je
rb
hZ
wd
-LG
+Fv
LG
LG
pr
diff --git a/maps/submaps/surface_submaps/wilderness/dogbase.dmm b/maps/submaps/surface_submaps/wilderness/dogbase.dmm
index d06c7e6e4d..3a6416cc1b 100644
--- a/maps/submaps/surface_submaps/wilderness/dogbase.dmm
+++ b/maps/submaps/surface_submaps/wilderness/dogbase.dmm
@@ -1,1884 +1,1863 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/machinery/vending/coffee,
-/obj/effect/floor_decal/corner/red/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"ae" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"ay" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/tajaran,
-/obj/random/maintenance/medical,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"aF" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/submap/DogBase)
-"aX" = (
-/obj/structure/dogbed,
-/obj/effect/decal/remains/tajaran,
-/obj/effect/decal/cleanable/filth,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bone,
-/obj/random/maintenance/security,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"bl" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"bw" = (
-/obj/item/weapon/storage/belt/janitor,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"bx" = (
-/obj/machinery/porta_turret/poi{
- faction = "syndicate"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"bT" = (
-/obj/structure/safe,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"cS" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"ec" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"eA" = (
-/obj/machinery/vending/cola,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"eI" = (
-/obj/structure/closet/crate/trashcart,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"eZ" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"fg" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"fI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"hl" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"hp" = (
-/turf/template_noop,
-/area/template_noop)
-"hA" = (
-/obj/structure/table/woodentable,
-/obj/item/stolenpackage,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"hZ" = (
-/obj/machinery/power/smes/buildable/point_of_interest,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"ik" = (
-/obj/random/mob/merc/all,
-/turf/template_noop,
-/area/template_noop)
-"iv" = (
-/obj/structure/dogbed,
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/filth,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bone/ribs,
-/obj/random/maintenance/research,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"jz" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"jD" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"jO" = (
-/obj/structure/dogbed,
-/obj/effect/decal/remains/unathi,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/security,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"kl" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"km" = (
-/obj/effect/decal/remains/human,
-/turf/template_noop,
-/area/template_noop)
-"lb" = (
-/obj/random/mob/merc/all,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"lg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"lh" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"lk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"lm" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"lr" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"lN" = (
-/obj/machinery/porta_turret/poi{
- faction = "syndicate"
- },
-/turf/simulated/floor,
-/area/submap/DogBase)
-"lX" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"ng" = (
-/mob/living/bot/cleanbot{
- faction = "syndicate"
- },
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"np" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/gun/projectile/pistol,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"oW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/template_noop)
-"pR" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"qg" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"qk" = (
-/obj/machinery/porta_turret/poi{
- faction = "syndicate"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"qI" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bone,
-/obj/random/maintenance/security,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"qO" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"qZ" = (
-/obj/effect/decal/remains/ribcage,
-/turf/template_noop,
-/area/template_noop)
-"re" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"rH" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"se" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"tp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"tt" = (
-/obj/machinery/power/smes/buildable/point_of_interest,
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"tz" = (
-/obj/effect/floor_decal/corner/red/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"tN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"vq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"vX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"wI" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"wQ" = (
-/obj/effect/floor_decal/corner/red/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"wS" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/turf/template_noop,
-/area/template_noop)
-"xc" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"xe" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/random/projectile/scrapped_smg,
-/obj/random/projectile/scrapped_smg,
-/obj/random/projectile/scrapped_smg,
-/obj/random/projectile/scrapped_shotgun,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"xp" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
-/obj/random/contraband/nofail,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"yl" = (
-/obj/structure/dogbed,
-/obj/effect/decal/remains/deer,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/contraband/nofail,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"yx" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"yX" = (
-/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Am" = (
-/obj/machinery/door/blast/gate/thin,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"AJ" = (
-/obj/machinery/door/airlock/engineering,
-/turf/simulated/floor/tiled,
-/area/submap/DogBase)
-"AY" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/random/projectile,
-/obj/random/projectile,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Bk" = (
-/turf/simulated/wall/r_wall,
-/area/submap/DogBase)
-"Bx" = (
-/obj/structure/table/woodentable,
-/obj/random/projectile/scrapped_pistol,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"BA" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"BB" = (
-/obj/structure/table/woodentable,
-/obj/random/cash/big,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"BY" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ce" = (
-/obj/structure/janitorialcart,
-/obj/item/weapon/storage/bag/trash,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Cz" = (
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"CQ" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bone,
-/obj/random/contraband/nofail,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"Dt" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/landmark/loot_spawn,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Dv" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ez" = (
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/template_noop,
-/area/template_noop)
-"Fm" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/tiled,
-/area/submap/DogBase)
-"FD" = (
-/obj/structure/fence,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"FO" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ge" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/random/cash/huge,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Gf" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/filth,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"GB" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"GJ" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/random/projectile,
-/obj/random/projectile,
-/obj/effect/landmark/loot_spawn,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Hl" = (
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"HF" = (
-/obj/random/mob/merc/all,
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"HM" = (
-/obj/structure/table/woodentable,
-/obj/random/contraband/nofail,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Iz" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"IE" = (
-/obj/machinery/porta_turret/poi{
- faction = "syndicate"
- },
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"Jm" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/research,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"Ki" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"Kt" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"KG" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Le" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"Lm" = (
-/obj/effect/landmark/loot_spawn,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"LJ" = (
-/obj/effect/decal/remains/tajaran,
-/turf/template_noop,
-/area/template_noop)
-"LP" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ng" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/vending/security,
-/obj/effect/floor_decal/corner/red/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ni" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ok" = (
-/obj/structure/table/woodentable,
-/obj/item/device/radio/phone,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Ol" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bone/leg,
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"OR" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"OS" = (
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Pi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"PB" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"PJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/obj/structure/table/rack/shelf/steel,
-/obj/item/stack/material/phoron{
- amount = 10
- },
-/obj/item/stack/material/phoron{
- amount = 10;
- pixel_x = 1;
- pixel_y = 6
- },
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-"Qp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/template_noop,
-/area/template_noop)
-"Qu" = (
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"QB" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/template_noop)
-"Rz" = (
-/obj/structure/table/woodentable,
-/obj/item/device/radio/phone,
-/obj/random/contraband/nofail,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"RW" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"SW" = (
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/template_noop)
-"To" = (
-/obj/structure/fence/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"UW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"UY" = (
-/obj/structure/dogbed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/security,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"Vm" = (
-/obj/structure/loot_pile/maint/technical,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Vy" = (
-/obj/effect/decal/remains/unathi,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"VG" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Wm" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/random/curseditem,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Wq" = (
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Wu" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"WH" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"WU" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/random/cash/huge,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Xz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/template_noop)
-"Ya" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{
- desc = "The biggest and baddest guard dog around.";
- faction = "syndicate";
- name = "syndicate guard dog"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Yi" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/effect/floor_decal/corner/purple/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"Yr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/submap/DogBase)
-"YJ" = (
-/obj/random/mob/merc/all,
-/turf/simulated/floor/plating/sif/planetuse,
-/area/submap/DogBase)
-"YX" = (
-/obj/structure/dogbed,
-/obj/effect/decal/remains/deer,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/medical,
-/turf/simulated/floor/outdoors/dirt/sif/planetuse,
-/area/submap/DogBase)
-"ZK" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "Unknown APC";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/plating,
-/area/submap/DogBase)
-
-(1,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-km
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-km
-hp
-"}
-(2,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(3,1,1) = {"
-hp
-km
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Ez
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(4,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-IE
-Hl
-hp
-hp
-hp
-Hl
-IE
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(5,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Hl
-Bk
-Bk
-Bk
-Bk
-Bk
-FD
-FD
-FD
-FD
-FD
-To
-Qp
-hp
-hp
-hp
-hp
-Xz
-hp
-hp
-km
-hp
-hp
-"}
-(6,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Bk
-fg
-ng
-Vm
-Bk
-iv
-yl
-YX
-qI
-jO
-GB
-Qp
-LJ
-hp
-hp
-Xz
-Xz
-Ez
-hp
-SW
-hp
-hp
-"}
-(7,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-ik
-wS
-hp
-Bk
-Yi
-Qu
-Vm
-Bk
-UY
-Gf
-Ol
-Vy
-fI
-Am
-oW
-oW
-oW
-oW
-oW
-hp
-SW
-hp
-hp
-hp
-hp
-"}
-(8,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Bk
-lg
-Qu
-bw
-Bk
-aX
-lk
-ae
-kl
-lk
-Am
-oW
-oW
-QB
-oW
-hp
-hp
-hp
-hp
-SW
-hp
-hp
-"}
-(9,1,1) = {"
-hp
-hp
-lN
-Hl
-hp
-hp
-hp
-hp
-Bk
-eI
-Qu
-Ce
-Bk
-Jm
-xp
-ay
-CQ
-YX
-GB
-LJ
-hp
-hp
-Qp
-Qp
-tp
-IE
-hp
-hp
-hp
-hp
-"}
-(10,1,1) = {"
-hp
-hp
-Hl
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Fm
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Hl
-hp
-km
-hp
-hp
-"}
-(11,1,1) = {"
-hp
-hp
-hp
-Bk
-pR
-RW
-Wu
-vq
-Bk
-Ng
-wQ
-FO
-Bk
-Dt
-tN
-tN
-Dv
-RW
-vq
-Bk
-Pi
-tN
-qk
-vq
-Bk
-Hl
-Hl
-hp
-hp
-hp
-"}
-(12,1,1) = {"
-km
-hp
-Ez
-Bk
-Ge
-Wq
-Bx
-lX
-Bk
-GJ
-lb
-OS
-Bk
-Yr
-VG
-HM
-wI
-Wq
-lX
-Bk
-eZ
-Wq
-Wq
-lX
-Bk
-lr
-Hl
-hp
-hp
-SW
-"}
-(13,1,1) = {"
-hp
-Ez
-hp
-Bk
-qO
-Wq
-BA
-lX
-Bk
-AY
-Wq
-OS
-Bk
-Yr
-HF
-Rz
-wI
-Wq
-Ni
-KG
-PB
-hl
-se
-jz
-Bk
-OR
-Hl
-SW
-SW
-hp
-"}
-(14,1,1) = {"
-hp
-Hl
-Hl
-Bk
-hA
-Wq
-Iz
-lX
-Bk
-xe
-Wq
-OS
-Bk
-rH
-VG
-HM
-wI
-Wq
-hl
-se
-WH
-BY
-Bk
-Bk
-aF
-bl
-Hl
-SW
-hp
-hp
-"}
-(15,1,1) = {"
-hp
-IE
-Hl
-Bk
-qO
-lb
-BA
-lX
-LP
-Cz
-Wq
-OS
-LP
-Yr
-VG
-Ok
-wI
-re
-lX
-Bk
-Yr
-lX
-yx
-Wq
-yx
-lr
-YJ
-SW
-SW
-SW
-"}
-(16,1,1) = {"
-hp
-Hl
-Hl
-Bk
-hA
-Wq
-BB
-lX
-Bk
-Wm
-Wq
-OS
-Bk
-rH
-VG
-np
-wI
-Wq
-Ni
-tN
-PB
-BY
-Bk
-Bk
-aF
-bl
-Hl
-SW
-SW
-hp
-"}
-(17,1,1) = {"
-hp
-Ez
-hp
-Bk
-qO
-Wq
-BA
-lX
-Bk
-yX
-wI
-OS
-Bk
-Yr
-VG
-HM
-wI
-lb
-hl
-jD
-WH
-Ni
-tN
-eA
-Bk
-OR
-Hl
-SW
-SW
-hp
-"}
-(18,1,1) = {"
-hp
-hp
-Ez
-Bk
-lm
-Wq
-Iz
-lX
-Bk
-WU
-lb
-OS
-Bk
-Yr
-VG
-HM
-wI
-Wq
-lX
-Bk
-Yr
-Wq
-Wq
-lX
-Bk
-lr
-Hl
-hp
-SW
-hp
-"}
-(19,1,1) = {"
-km
-hp
-hp
-Bk
-bT
-jD
-se
-UW
-Bk
-ab
-tz
-qg
-Bk
-Lm
-se
-se
-se
-jD
-Ya
-Bk
-ec
-se
-bx
-UW
-Bk
-Hl
-Hl
-hp
-hp
-hp
-"}
-(20,1,1) = {"
-hp
-hp
-Hl
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-AJ
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Bk
-Hl
-hp
-hp
-hp
-hp
-"}
-(21,1,1) = {"
-hp
-hp
-IE
-Hl
-hp
-hp
-hp
-hp
-Bk
-ZK
-Le
-Ki
-Bk
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Hl
-IE
-hp
-hp
-hp
-km
-"}
-(22,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-Ez
-hp
-Bk
-PJ
-xc
-vX
-Bk
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-wS
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(23,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-wS
-hp
-Bk
-lh
-cS
-lh
-Bk
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Ez
-hp
-hp
-hp
-hp
-"}
-(24,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-ik
-hp
-hp
-Bk
-hZ
-Kt
-tt
-Bk
-hp
-hp
-km
-hp
-hp
-km
-hp
-hp
-hp
-km
-hp
-hp
-hp
-hp
-hp
-km
-hp
-"}
-(25,1,1) = {"
-hp
-hp
-km
-hp
-hp
-hp
-hp
-Hl
-Bk
-Bk
-Bk
-Bk
-Bk
-Hl
-hp
-hp
-hp
-Ez
-hp
-hp
-qZ
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(26,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-IE
-Hl
-hp
-hp
-hp
-Hl
-IE
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(27,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-Ez
-hp
-hp
-hp
-km
-hp
-hp
-km
-hp
-hp
-"}
-(28,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-km
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(29,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-km
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
-(30,1,1) = {"
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-km
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"ae" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"ay" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/tajaran,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"aF" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/submap/DogBase)
+"aX" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/tajaran,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"bl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/submap/DogBase)
+"bw" = (
+/obj/item/weapon/storage/belt/janitor,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"bx" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"bT" = (
+/obj/structure/safe,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"cS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"ec" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eA" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eI" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"eZ" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"fg" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"fI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"hl" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"hp" = (
+/turf/template_noop,
+/area/template_noop)
+"hA" = (
+/obj/structure/table/woodentable,
+/obj/item/stolenpackage,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"hZ" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"ik" = (
+/obj/random/mob/merc/all,
+/turf/template_noop,
+/area/template_noop)
+"iv" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone/ribs,
+/obj/random/maintenance/research,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"jz" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"jD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"jO" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/unathi,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"kl" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"km" = (
+/obj/effect/decal/remains/human,
+/turf/template_noop,
+/area/template_noop)
+"lb" = (
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lh" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"lk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"lm" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"lr" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/submap/DogBase)
+"lN" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/turf/simulated/floor,
+/area/submap/DogBase)
+"lX" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"ng" = (
+/mob/living/bot/cleanbot{
+ faction = "malf_drone"
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"np" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/gun/projectile/pistol,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"oW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"pR" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qk" = (
+/obj/machinery/porta_turret/poi{
+ faction = "syndicate"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qI" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"qO" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"qZ" = (
+/obj/effect/decal/remains/ribcage,
+/turf/template_noop,
+/area/template_noop)
+"re" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"rH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"se" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"tp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/DogBase)
+"tt" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"tz" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"tN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"vq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"vX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"wI" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"wQ" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"wS" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/template_noop,
+/area/template_noop)
+"xc" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"xe" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_smg,
+/obj/random/projectile/scrapped_shotgun,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"xp" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/human,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"yl" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"yx" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"yX" = (
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Am" = (
+/obj/machinery/door/blast/gate/thin,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"AJ" = (
+/obj/machinery/door/airlock/engineering,
+/turf/simulated/floor/tiled,
+/area/submap/DogBase)
+"AY" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile,
+/obj/random/projectile,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Bk" = (
+/turf/simulated/wall/r_wall,
+/area/submap/DogBase)
+"Bx" = (
+/obj/structure/table/woodentable,
+/obj/random/projectile/scrapped_pistol,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"BA" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"BB" = (
+/obj/structure/table/woodentable,
+/obj/random/cash/big,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"BY" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ce" = (
+/obj/structure/janitorialcart,
+/obj/item/weapon/storage/bag/trash,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Cz" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"CQ" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"Dt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Dv" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ez" = (
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/template_noop,
+/area/template_noop)
+"Fm" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled,
+/area/submap/DogBase)
+"FD" = (
+/obj/structure/fence,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"FO" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ge" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/random/cash/huge,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Gf" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"GB" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"GJ" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/random/projectile,
+/obj/random/projectile,
+/obj/effect/landmark/loot_spawn,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Hl" = (
+/turf/simulated/floor,
+/area/submap/DogBase)
+"HF" = (
+/obj/random/mob/merc/all,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"HM" = (
+/obj/structure/table/woodentable,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Iz" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Jm" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"Ki" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Kt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Le" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Lm" = (
+/obj/effect/landmark/loot_spawn,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"LJ" = (
+/obj/effect/decal/remains/tajaran,
+/turf/template_noop,
+/area/template_noop)
+"LP" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ng" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ni" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ok" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/phone,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Ol" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone/leg,
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"OR" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/submap/DogBase)
+"OS" = (
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Pi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"PB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"PJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/obj/structure/table/rack/shelf/steel,
+/obj/item/stack/material/phoron{
+ amount = 10
+ },
+/obj/item/stack/material/phoron{
+ amount = 10;
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+"Qp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/template_noop,
+/area/template_noop)
+"Qu" = (
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"QB" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Rz" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/phone,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"RW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"SW" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"To" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"UW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"UY" = (
+/obj/structure/dogbed,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/security,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"Vm" = (
+/obj/structure/loot_pile/maint/technical,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Vy" = (
+/obj/effect/decal/remains/unathi,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"VG" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wm" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/random/curseditem,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wq" = (
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Wu" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"WH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"WU" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/random/cash/huge,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Xz" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Ya" = (
+/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{
+ desc = "The biggest and baddest guard dog around.";
+ faction = "syndicate";
+ max_co2 = 0;
+ max_tox = 0;
+ name = "syndicate guard dog"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Yi" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"Yr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/submap/DogBase)
+"YJ" = (
+/obj/random/mob/merc/all,
+/turf/simulated/floor,
+/area/submap/DogBase)
+"YX" = (
+/obj/structure/dogbed,
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/DogBase)
+"ZK" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "Unknown APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/plating,
+/area/submap/DogBase)
+
+(1,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+"}
+(2,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(3,1,1) = {"
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(4,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(5,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+FD
+FD
+FD
+FD
+FD
+To
+Qp
+hp
+hp
+hp
+hp
+Xz
+hp
+hp
+km
+hp
+hp
+"}
+(6,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Bk
+fg
+ng
+Vm
+Bk
+iv
+yl
+YX
+qI
+jO
+GB
+Qp
+LJ
+hp
+hp
+Xz
+Xz
+Ez
+hp
+SW
+hp
+hp
+"}
+(7,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+ik
+wS
+hp
+Bk
+Yi
+Qu
+Vm
+Bk
+UY
+Gf
+Ol
+Vy
+fI
+Am
+oW
+oW
+oW
+oW
+oW
+hp
+SW
+hp
+hp
+hp
+hp
+"}
+(8,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Bk
+lg
+Qu
+bw
+Bk
+aX
+lk
+ae
+kl
+lk
+Am
+oW
+oW
+QB
+oW
+hp
+hp
+hp
+hp
+SW
+hp
+hp
+"}
+(9,1,1) = {"
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+hp
+Bk
+eI
+Qu
+Ce
+Bk
+Jm
+xp
+ay
+CQ
+YX
+GB
+LJ
+hp
+hp
+Qp
+Qp
+tp
+lN
+hp
+hp
+hp
+hp
+"}
+(10,1,1) = {"
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Fm
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+km
+hp
+hp
+"}
+(11,1,1) = {"
+hp
+hp
+hp
+Bk
+pR
+RW
+Wu
+vq
+Bk
+Ng
+wQ
+FO
+Bk
+Dt
+tN
+tN
+Dv
+RW
+vq
+Bk
+Pi
+tN
+qk
+vq
+Bk
+Hl
+Hl
+hp
+hp
+hp
+"}
+(12,1,1) = {"
+km
+hp
+Ez
+Bk
+Ge
+Wq
+Bx
+lX
+Bk
+GJ
+lb
+OS
+Bk
+Yr
+VG
+HM
+wI
+Wq
+lX
+Bk
+eZ
+Wq
+Wq
+lX
+Bk
+lr
+Hl
+hp
+hp
+SW
+"}
+(13,1,1) = {"
+hp
+Ez
+hp
+Bk
+qO
+Wq
+BA
+lX
+Bk
+AY
+Wq
+OS
+Bk
+Yr
+HF
+Rz
+wI
+Wq
+Ni
+RW
+PB
+hl
+se
+jz
+Bk
+OR
+Hl
+SW
+SW
+hp
+"}
+(14,1,1) = {"
+hp
+Hl
+Hl
+Bk
+hA
+Wq
+Iz
+lX
+Bk
+xe
+Wq
+OS
+Bk
+rH
+VG
+HM
+wI
+Wq
+hl
+se
+WH
+BY
+Bk
+Bk
+aF
+bl
+Hl
+SW
+hp
+hp
+"}
+(15,1,1) = {"
+hp
+lN
+Hl
+Bk
+qO
+lb
+BA
+lX
+LP
+Cz
+Wq
+OS
+LP
+Yr
+VG
+Ok
+wI
+re
+lX
+Bk
+Yr
+lX
+yx
+Wq
+yx
+lr
+YJ
+SW
+SW
+SW
+"}
+(16,1,1) = {"
+hp
+Hl
+Hl
+Bk
+hA
+Wq
+BB
+lX
+Bk
+Wm
+Wq
+OS
+Bk
+rH
+VG
+np
+wI
+Wq
+Ni
+tN
+PB
+BY
+Bk
+Bk
+aF
+bl
+Hl
+SW
+SW
+hp
+"}
+(17,1,1) = {"
+hp
+Ez
+hp
+Bk
+qO
+Wq
+BA
+lX
+Bk
+yX
+wI
+OS
+Bk
+Yr
+VG
+HM
+wI
+lb
+hl
+jD
+WH
+Ni
+tN
+eA
+Bk
+OR
+Hl
+SW
+SW
+hp
+"}
+(18,1,1) = {"
+hp
+hp
+Ez
+Bk
+lm
+Wq
+Iz
+lX
+Bk
+WU
+lb
+OS
+Bk
+Yr
+VG
+HM
+wI
+Wq
+lX
+Bk
+Yr
+Wq
+Wq
+lX
+Bk
+lr
+Hl
+hp
+SW
+hp
+"}
+(19,1,1) = {"
+km
+hp
+hp
+Bk
+bT
+jD
+se
+UW
+Bk
+ab
+tz
+qg
+Bk
+Lm
+se
+se
+se
+jD
+Ya
+Bk
+ec
+se
+bx
+UW
+Bk
+Hl
+Hl
+hp
+hp
+hp
+"}
+(20,1,1) = {"
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+AJ
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+hp
+hp
+hp
+"}
+(21,1,1) = {"
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+hp
+Bk
+ZK
+Le
+Ki
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+km
+"}
+(22,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+Bk
+PJ
+xc
+vX
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+wS
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(23,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+wS
+hp
+Bk
+lh
+cS
+lh
+Bk
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+hp
+"}
+(24,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+ik
+hp
+hp
+Bk
+hZ
+Kt
+tt
+Bk
+hp
+hp
+km
+hp
+hp
+km
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+km
+hp
+"}
+(25,1,1) = {"
+hp
+hp
+km
+hp
+hp
+hp
+hp
+Hl
+Bk
+Bk
+Bk
+Bk
+Bk
+Hl
+hp
+hp
+hp
+Ez
+hp
+hp
+qZ
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(26,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+lN
+Hl
+hp
+hp
+hp
+Hl
+lN
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(27,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+Ez
+hp
+hp
+hp
+km
+hp
+hp
+km
+hp
+hp
+"}
+(28,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(29,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
+(30,1,1) = {"
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+km
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+hp
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm
index 9008166129..71f9cb72b4 100644
--- a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm
+++ b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm
@@ -117,7 +117,7 @@
/turf/simulated/floor/wood/sif,
/area/submap/EmptyCabin)
"F" = (
-/mob/living/simple_mob/otie/friendly/chubby{
+/mob/living/simple_mob/vore/otie/friendly/chubby{
desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit";
faction = "spiders"
},
diff --git a/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm b/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm
index a029394e8b..738bac8d6e 100644
--- a/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm
+++ b/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm
@@ -1,1555 +1,1564 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/effect/decal/cleanable/blood/drip,
-/mob/living/simple_mob/animal/wolf/direwolf{
- ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
- desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
- faction = "sif"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"bp" = (
-/obj/structure/cliff/automatic/corner{
- dir = 6
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"bz" = (
-/obj/structure/flora/bboulder1,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"bI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"bY" = (
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"dM" = (
-/obj/structure/flora/bboulder2,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"dX" = (
-/obj/structure/cliff/automatic{
- dir = 4
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"eq" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"fh" = (
-/obj/structure/cliff/automatic{
- dir = 2
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"fX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/rocks2,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"ge" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "frostbelle"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"hJ" = (
-/obj/structure/cliff/automatic{
- dir = 9
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"iX" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"jg" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/ammo_casing/a10mm{
- dir = 8
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"ju" = (
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"kg" = (
-/obj/item/weapon/bone/skull/unathi,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"kk" = (
-/obj/effect/decal/cleanable/blood/gibs{
- color = "red";
- icon_state = "gib2_flesh"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"kL" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "grass3"
- },
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"lu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/ammo_casing/a10mm,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"lL" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/effect/landmark/loot_spawn/low,
-/obj/random/projectile/scrapped_gun,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"lQ" = (
-/obj/effect/decal/cleanable/filth,
-/obj/item/weapon/card/emag_broken,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"mk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "3"
- },
-/obj/item/ammo_casing/a10mm{
- dir = 8
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"mm" = (
-/obj/random/trash_pile,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"nd" = (
-/obj/structure/flora/rocks2,
-/obj/effect/decal/remains/lizard,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"nv" = (
-/mob/living/simple_mob/vore/greatwolf{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"pS" = (
-/turf/template_noop,
-/area/template_noop)
-"qb" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"rn" = (
-/obj/structure/loot_pile/mecha/gygax/dark/adv,
-/obj/effect/decal/cleanable/blood/gibs/robot/down,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"rM" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "eyeplant2"
- },
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"tb" = (
-/obj/structure/flora/smallbould,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"tm" = (
-/turf/simulated/mineral/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"tC" = (
-/obj/effect/decal/remains/mouse,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"uz" = (
-/mob/living/simple_mob/animal/wolf/direwolf{
- ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
- desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
- faction = "sif"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"uY" = (
-/obj/item/ammo_casing/a10mm,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"vu" = (
-/obj/item/weapon/bone/skull/tajaran,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"wc" = (
-/obj/item/weapon/bone/skull/unathi,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"xt" = (
-/obj/effect/landmark/loot_spawn/low,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"xK" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/under/syndicate,
-/obj/random/projectile/scrapped_gun,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"yi" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "frostbelle2"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"yF" = (
-/obj/structure/flora/smallbould,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"yG" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"yH" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "3"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"zl" = (
-/obj/structure/flora/bboulder1,
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"zs" = (
-/obj/structure/flora/bboulder2,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"zV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/ledge/ledge_stairs,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"AG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/rocks2,
-/obj/structure/ledge/ledge_stairs,
-/turf/simulated/floor/outdoors/rocks,
-/area/submap/GreatWolfDen)
-"AK" = (
-/obj/structure/cliff/automatic/ramp{
- dir = 9
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Cd" = (
-/mob/living/simple_mob/otie/feral/chubby{
- ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
- desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit.";
- faction = "sif"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"CR" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Dj" = (
-/obj/structure/cliff/automatic/corner,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"DV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/outcrop,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"EU" = (
-/obj/structure/flora/rocks1,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Fy" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "eyeplant1"
- },
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"Hb" = (
-/obj/structure/closet/crate/secure/loot,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"HC" = (
-/obj/random/outcrop,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Ic" = (
-/obj/effect/decal/remains/deer,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Id" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/template_noop,
-/area/template_noop)
-"If" = (
-/obj/effect/decal/cleanable/blood/gibs/robot/limb,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Iw" = (
-/obj/effect/decal/remains/deer,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Kb" = (
-/obj/item/ammo_casing/a10mm{
- dir = 8
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Ko" = (
-/obj/effect/decal/cleanable/blood/gibs{
- color = "red";
- icon_state = "gibdown1_flesh"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Kp" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"KU" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "grass3"
- },
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"Lx" = (
-/obj/structure/cliff/automatic{
- dir = 8
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Lz" = (
-/obj/effect/decal/cleanable/blood/gibs{
- color = "red";
- icon_state = "gib1_flesh"
- },
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"LJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/sif/subterranean{
- icon_state = "glowplant2"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"LP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/rocks2,
-/obj/structure/ledge/ledge_stairs,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"LT" = (
-/obj/structure/cliff/automatic/corner{
- dir = 10
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Mc" = (
-/obj/effect/decal/cleanable/ash,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Mv" = (
-/obj/random/outcrop,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"MD" = (
-/obj/structure/flora/tree/sif{
- icon_state = "tree_sif4"
- },
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"OB" = (
-/obj/item/stack/material/log{
- amount = 25
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"OL" = (
-/obj/structure/cliff/automatic,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"OV" = (
-/obj/structure/cliff/automatic{
- dir = 6
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"OW" = (
-/obj/structure/cliff/automatic{
- dir = 5
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Pa" = (
-/obj/structure/cliff/automatic/ramp,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Pf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Pl" = (
-/obj/effect/decal/remains/lizard,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"PC" = (
-/obj/structure/closet/crate/secure/loot,
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"PX" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Qb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/rocks1,
-/obj/structure/ledge/ledge_stairs,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Qv" = (
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"QA" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "grass2"
- },
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"QJ" = (
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"QM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Rb" = (
-/obj/item/weapon/bone/leg,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Rf" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/structure/flora/sif/subterranean{
- icon_state = "frostbelle"
- },
-/obj/item/weapon/gun/projectile/pistol,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Rj" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"Rx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"RW" = (
-/obj/structure/flora/rocks2,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"SO" = (
-/obj/item/weapon/telecube/mated,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"SQ" = (
-/obj/structure/cliff/automatic/corner{
- dir = 9
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Tf" = (
-/obj/item/weapon/paper/card/heart{
- desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??"
- },
-/obj/item/weapon/paper/crumpled{
- icon_state = "scrap_bloodied";
- info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you.";
- name = "survivor's note"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Tn" = (
-/obj/structure/bonfire,
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"Ty" = (
-/obj/random/trash_pile,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"UV" = (
-/obj/structure/cliff/automatic{
- dir = 10
- },
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Vq" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/random/projectile/scrapped_gun,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"WH" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/random/projectile/scrapped_gun,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"WR" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "glowplant1"
- },
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"WY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/flora/rocks1,
-/turf/simulated/floor/outdoors/dirt,
-/area/template_noop)
-"Xx" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "grass1"
- },
-/turf/simulated/floor/outdoors/snow,
-/area/submap/GreatWolfDen)
-"Xy" = (
-/obj/item/weapon/bone/ribs,
-/obj/effect/landmark/loot_spawn/low,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Yw" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/effect/landmark/loot_spawn/low,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Zj" = (
-/turf/simulated/floor/outdoors/grass/sif/forest{
- outdoors = 0
- },
-/area/submap/GreatWolfDen)
-"Zk" = (
-/obj/structure/flora/sif/subterranean{
- icon_state = "glowplant2"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-"Zu" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/effect/landmark/loot_spawn/low,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/projectile/scrapped_gun,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/submap/GreatWolfDen)
-
-(1,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-"}
-(2,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Ty
-pS
-pS
-Qv
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-"}
-(3,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-Qv
-HC
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-pS
-pS
-"}
-(4,1,1) = {"
-pS
-pS
-pS
-pS
-Qv
-pS
-pS
-Qv
-Qv
-Qv
-bp
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-Dj
-Qv
-HC
-Qv
-pS
-pS
-pS
-pS
-Qv
-Qv
-pS
-pS
-"}
-(5,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-bp
-dX
-dX
-OV
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-OW
-dX
-dX
-Dj
-Qv
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-"}
-(6,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-fh
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-OW
-dX
-Dj
-Qv
-Qv
-pS
-pS
-pS
-pS
-"}
-(7,1,1) = {"
-pS
-pS
-pS
-pS
-Qv
-Qv
-bp
-OV
-tm
-tm
-tm
-tm
-jg
-yi
-Mv
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-OW
-Dj
-Qv
-pS
-pS
-pS
-pS
-"}
-(8,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-Qv
-fh
-tm
-tm
-tm
-yi
-CR
-xK
-uY
-QJ
-Zu
-zs
-QJ
-QJ
-Mv
-tm
-tm
-tm
-tm
-OW
-Dj
-Qv
-pS
-pS
-pS
-"}
-(9,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-Qv
-fh
-tm
-tm
-Mc
-QJ
-qb
-lu
-mk
-uY
-QJ
-QJ
-kk
-QJ
-QJ
-QJ
-tb
-tm
-tm
-tm
-OL
-Qv
-Qv
-pS
-pS
-"}
-(10,1,1) = {"
-pS
-pS
-pS
-pS
-Qv
-Qv
-fh
-tm
-tm
-mm
-Rb
-EU
-lQ
-yi
-Kb
-QM
-Iw
-QJ
-RW
-Zk
-QJ
-QJ
-tm
-tm
-tm
-OL
-Qv
-Qv
-Qv
-pS
-"}
-(11,1,1) = {"
-pS
-pS
-pS
-Qv
-Qv
-Qv
-fh
-tm
-tm
-bz
-Pl
-bI
-DV
-tm
-wc
-QJ
-QJ
-QJ
-QJ
-QJ
-Cd
-QJ
-kg
-tm
-tm
-OW
-Dj
-Qv
-Qv
-pS
-"}
-(12,1,1) = {"
-pS
-pS
-pS
-Qv
-HC
-Qv
-LT
-UV
-tm
-tm
-bI
-CR
-tm
-tm
-rn
-PX
-Tn
-Zj
-Zj
-uz
-QJ
-QJ
-yi
-tm
-tm
-tm
-OL
-Qv
-Qv
-pS
-"}
-(13,1,1) = {"
-pS
-pS
-Id
-pS
-Qv
-Qv
-Qv
-fh
-tm
-tm
-Tf
-Ko
-tm
-tm
-OB
-uz
-Zj
-Xx
-rM
-Zj
-Iw
-QJ
-QJ
-tm
-tm
-tm
-OL
-Qv
-Qv
-pS
-"}
-(14,1,1) = {"
-pS
-pS
-pS
-pS
-Id
-Qv
-Qv
-fh
-tm
-tm
-CR
-CR
-tm
-yF
-qb
-Fy
-Zj
-Rj
-Kp
-Lz
-Zj
-QJ
-uz
-Xy
-tm
-tm
-OL
-Qv
-Qv
-Qv
-"}
-(15,1,1) = {"
-pS
-Qv
-Id
-fX
-pS
-dM
-Pa
-OV
-tm
-LJ
-Pf
-CR
-tm
-ju
-aa
-Lz
-eq
-bY
-MD
-yG
-Zj
-QJ
-If
-QJ
-tm
-tm
-OL
-Qv
-HC
-Qv
-"}
-(16,1,1) = {"
-Qv
-pS
-Qv
-Id
-Rx
-zV
-LP
-Qb
-AG
-CR
-CR
-CR
-tm
-SO
-tC
-Zj
-Zj
-bY
-QA
-Zj
-kL
-uz
-QJ
-Mv
-tm
-tm
-OL
-Qv
-Qv
-Qv
-"}
-(17,1,1) = {"
-pS
-pS
-Qv
-Rx
-WY
-Rx
-AK
-UV
-tm
-tm
-tm
-tm
-tm
-vu
-WR
-EU
-nv
-KU
-Rj
-Zj
-QJ
-QJ
-QJ
-QJ
-tm
-tm
-OL
-Qv
-Qv
-pS
-"}
-(18,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-LT
-UV
-tm
-tm
-tm
-zs
-QJ
-xK
-Ic
-Zj
-Zj
-bY
-Zj
-nd
-QJ
-QJ
-lL
-tm
-tm
-OL
-Qv
-Qv
-pS
-"}
-(19,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-fh
-tm
-tm
-tm
-tm
-Hb
-QJ
-uz
-QJ
-Zj
-Zj
-Zj
-QJ
-uz
-xt
-tm
-tm
-hJ
-SQ
-Qv
-pS
-Qv
-"}
-(20,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-fh
-tm
-tm
-tm
-tm
-PC
-QJ
-qb
-kk
-Ic
-uz
-QJ
-Vq
-xt
-Rf
-tm
-tm
-OL
-Qv
-Qv
-pS
-pS
-"}
-(21,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-LT
-UV
-tm
-tm
-tm
-tm
-QJ
-WH
-iX
-yH
-qb
-QJ
-Vq
-Yw
-tm
-tm
-tm
-OL
-Qv
-Qv
-Qv
-pS
-"}
-(22,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-HC
-fh
-tm
-tm
-tm
-tm
-zl
-yi
-QJ
-ge
-QJ
-Vq
-xt
-tm
-tm
-tm
-hJ
-SQ
-Qv
-Ty
-Qv
-pS
-"}
-(23,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-LT
-UV
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-hJ
-SQ
-Qv
-Qv
-pS
-pS
-pS
-"}
-(24,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-LT
-Lx
-UV
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-tm
-hJ
-SQ
-Qv
-Qv
-Qv
-pS
-pS
-pS
-"}
-(25,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-Qv
-pS
-pS
-pS
-Qv
-Qv
-Qv
-LT
-Lx
-UV
-tm
-tm
-hJ
-Lx
-Lx
-Lx
-Lx
-SQ
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-"}
-(26,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-Qv
-Qv
-Ty
-LT
-Lx
-Lx
-SQ
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-"}
-(27,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-"}
-(28,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-HC
-Qv
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-Qv
-pS
-pS
-pS
-"}
-(29,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-Qv
-pS
-pS
-pS
-pS
-pS
-pS
-"}
-(30,1,1) = {"
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-pS
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/effect/decal/cleanable/blood/drip,
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
+ faction = "sif";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"bp" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"bz" = (
+/obj/structure/flora/bboulder1,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"bI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"bY" = (
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"dM" = (
+/obj/structure/flora/bboulder2,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"dX" = (
+/obj/structure/cliff/automatic{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"eq" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"fh" = (
+/obj/structure/cliff/automatic{
+ dir = 2
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"fX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"ge" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"hJ" = (
+/obj/structure/cliff/automatic{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"iX" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"jg" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"ju" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"kg" = (
+/obj/item/weapon/bone/skull/unathi,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"kk" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gib2_flesh"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"kL" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass3"
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"lu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/a10mm,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"lL" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"lQ" = (
+/obj/effect/decal/cleanable/filth,
+/obj/item/weapon/card/emag_broken,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"mk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"mm" = (
+/obj/random/trash_pile,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"nd" = (
+/obj/structure/flora/rocks2,
+/obj/effect/decal/remains/lizard,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"nv" = (
+/mob/living/simple_mob/vore/greatwolf{
+ dir = 8;
+ max_co2 = 0;
+ min_oxy = 0
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"pS" = (
+/turf/template_noop,
+/area/template_noop)
+"qb" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"rn" = (
+/obj/structure/loot_pile/mecha/gygax/dark/adv,
+/obj/effect/decal/cleanable/blood/gibs/robot/down,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"rM" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "eyeplant2"
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"tb" = (
+/obj/structure/flora/smallbould,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"tm" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"tC" = (
+/obj/effect/decal/remains/mouse,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"uz" = (
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf.";
+ faction = "sif";
+ max_co2 = 0;
+ max_tox = 0;
+ min_oxy = 0
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"uY" = (
+/obj/item/ammo_casing/a10mm,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"vu" = (
+/obj/item/weapon/bone/skull/tajaran,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"wc" = (
+/obj/item/weapon/bone/skull/unathi,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"xt" = (
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"xK" = (
+/obj/effect/decal/remains/human,
+/obj/item/clothing/under/syndicate,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"yi" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle2"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"yF" = (
+/obj/structure/flora/smallbould,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"yG" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"yH" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"zl" = (
+/obj/structure/flora/bboulder1,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"zs" = (
+/obj/structure/flora/bboulder2,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"zV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"AG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/rocks,
+/area/submap/GreatWolfDen)
+"AK" = (
+/obj/structure/cliff/automatic/ramp{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Cd" = (
+/mob/living/simple_mob/vore/otie/feral/chubby{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit.";
+ faction = "sif";
+ minbodytemp = 0
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"CR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Dj" = (
+/obj/structure/cliff/automatic/corner,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"DV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/outcrop,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"EU" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Fy" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "eyeplant1"
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Hb" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"HC" = (
+/obj/random/outcrop,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Ic" = (
+/obj/effect/decal/remains/deer,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Id" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/template_noop,
+/area/template_noop)
+"If" = (
+/obj/effect/decal/cleanable/blood/gibs/robot/limb,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Iw" = (
+/obj/effect/decal/remains/deer,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Kb" = (
+/obj/item/ammo_casing/a10mm{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Ko" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gibdown1_flesh"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Kp" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"KU" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass3"
+ },
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"Lx" = (
+/obj/structure/cliff/automatic{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Lz" = (
+/obj/effect/decal/cleanable/blood/gibs{
+ color = "red";
+ icon_state = "gib1_flesh"
+ },
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"LJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant2"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"LP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks2,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"LT" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Mc" = (
+/obj/effect/decal/cleanable/ash,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Mv" = (
+/obj/random/outcrop,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"MD" = (
+/obj/structure/flora/tree/sif{
+ icon_state = "tree_sif4"
+ },
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"OB" = (
+/obj/item/stack/material/log{
+ amount = 25
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"OL" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"OV" = (
+/obj/structure/cliff/automatic{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"OW" = (
+/obj/structure/cliff/automatic{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Pa" = (
+/obj/structure/cliff/automatic/ramp,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Pf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Pl" = (
+/obj/effect/decal/remains/lizard,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"PC" = (
+/obj/structure/closet/crate/secure/loot,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"PX" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Qb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks1,
+/obj/structure/ledge/ledge_stairs,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Qv" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"QA" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass2"
+ },
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"QJ" = (
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"QM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Rb" = (
+/obj/item/weapon/bone/leg,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Rf" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/structure/flora/sif/subterranean{
+ icon_state = "frostbelle"
+ },
+/obj/item/weapon/gun/projectile/pistol,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Rj" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"Rx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"RW" = (
+/obj/structure/flora/rocks2,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"SO" = (
+/obj/item/weapon/telecube/mated,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"SQ" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Tf" = (
+/obj/item/weapon/paper/card/heart{
+ desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??"
+ },
+/obj/item/weapon/paper/crumpled{
+ icon_state = "scrap_bloodied";
+ info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you.";
+ name = "survivor's note"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Tn" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Ty" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"UV" = (
+/obj/structure/cliff/automatic{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Vq" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"WH" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"WR" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant1"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"WY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/dirt,
+/area/template_noop)
+"Xx" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "grass1"
+ },
+/turf/simulated/floor/outdoors/snow,
+/area/submap/GreatWolfDen)
+"Xy" = (
+/obj/item/weapon/bone/ribs,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Yw" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Zj" = (
+/turf/simulated/floor/outdoors/grass/sif/forest{
+ outdoors = 0
+ },
+/area/submap/GreatWolfDen)
+"Zk" = (
+/obj/structure/flora/sif/subterranean{
+ icon_state = "glowplant2"
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+"Zu" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/landmark/loot_spawn/low,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/projectile/scrapped_gun,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/submap/GreatWolfDen)
+
+(1,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(2,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Ty
+pS
+pS
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(3,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+HC
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+"}
+(4,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+Qv
+Qv
+Qv
+bp
+dX
+dX
+dX
+dX
+dX
+dX
+dX
+Dj
+Qv
+HC
+Qv
+pS
+pS
+pS
+pS
+Qv
+Qv
+pS
+pS
+"}
+(5,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+bp
+dX
+dX
+OV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+dX
+dX
+Dj
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+"}
+(6,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+dX
+Dj
+Qv
+Qv
+pS
+pS
+pS
+pS
+"}
+(7,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+Qv
+bp
+OV
+tm
+tm
+tm
+tm
+jg
+yi
+Mv
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+OW
+Dj
+Qv
+pS
+pS
+pS
+pS
+"}
+(8,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+fh
+tm
+tm
+tm
+yi
+CR
+xK
+uY
+QJ
+Zu
+zs
+QJ
+QJ
+Mv
+tm
+tm
+tm
+tm
+OW
+Dj
+Qv
+pS
+pS
+pS
+"}
+(9,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+fh
+tm
+tm
+Mc
+QJ
+qb
+lu
+mk
+uY
+QJ
+QJ
+kk
+QJ
+QJ
+QJ
+tb
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+pS
+"}
+(10,1,1) = {"
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+mm
+Rb
+EU
+lQ
+yi
+Kb
+QM
+Iw
+QJ
+RW
+Zk
+QJ
+QJ
+tm
+tm
+tm
+OL
+Qv
+Qv
+Qv
+pS
+"}
+(11,1,1) = {"
+pS
+pS
+pS
+Qv
+Qv
+Qv
+fh
+tm
+tm
+bz
+Pl
+bI
+DV
+tm
+wc
+QJ
+QJ
+QJ
+QJ
+QJ
+Cd
+QJ
+kg
+tm
+tm
+OW
+Dj
+Qv
+Qv
+pS
+"}
+(12,1,1) = {"
+pS
+pS
+pS
+Qv
+HC
+Qv
+LT
+UV
+tm
+tm
+bI
+CR
+tm
+tm
+rn
+PX
+Tn
+Zj
+Zj
+uz
+QJ
+QJ
+yi
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(13,1,1) = {"
+pS
+pS
+Id
+pS
+Qv
+Qv
+Qv
+fh
+tm
+tm
+Tf
+Ko
+tm
+tm
+OB
+uz
+Zj
+Xx
+rM
+Zj
+Iw
+QJ
+QJ
+tm
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(14,1,1) = {"
+pS
+pS
+pS
+pS
+Id
+Qv
+Qv
+fh
+tm
+tm
+CR
+CR
+tm
+yF
+qb
+Fy
+Zj
+Rj
+Kp
+Lz
+Zj
+QJ
+uz
+Xy
+tm
+tm
+OL
+Qv
+Qv
+Qv
+"}
+(15,1,1) = {"
+pS
+Qv
+Id
+fX
+pS
+dM
+Pa
+OV
+tm
+LJ
+Pf
+CR
+tm
+ju
+aa
+Lz
+eq
+bY
+MD
+yG
+Zj
+QJ
+If
+QJ
+tm
+tm
+OL
+Qv
+HC
+Qv
+"}
+(16,1,1) = {"
+Qv
+pS
+Qv
+Id
+Rx
+zV
+LP
+Qb
+AG
+CR
+CR
+CR
+tm
+SO
+tC
+Zj
+Zj
+bY
+QA
+Zj
+kL
+uz
+QJ
+Mv
+tm
+tm
+OL
+Qv
+Qv
+Qv
+"}
+(17,1,1) = {"
+pS
+pS
+Qv
+Rx
+WY
+Rx
+AK
+UV
+tm
+tm
+tm
+tm
+tm
+vu
+WR
+EU
+nv
+KU
+Rj
+Zj
+QJ
+QJ
+QJ
+QJ
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(18,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+zs
+QJ
+xK
+Ic
+Zj
+Zj
+bY
+Zj
+nd
+QJ
+QJ
+lL
+tm
+tm
+OL
+Qv
+Qv
+pS
+"}
+(19,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+Hb
+QJ
+uz
+QJ
+Zj
+Zj
+Zj
+QJ
+uz
+xt
+tm
+tm
+hJ
+SQ
+Qv
+pS
+Qv
+"}
+(20,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+fh
+tm
+tm
+tm
+tm
+PC
+QJ
+qb
+kk
+Ic
+uz
+QJ
+Vq
+xt
+Rf
+tm
+tm
+OL
+Qv
+Qv
+pS
+pS
+"}
+(21,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+tm
+QJ
+WH
+iX
+yH
+qb
+QJ
+Vq
+Yw
+tm
+tm
+tm
+OL
+Qv
+Qv
+Qv
+pS
+"}
+(22,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+HC
+fh
+tm
+tm
+tm
+tm
+zl
+yi
+QJ
+ge
+QJ
+Vq
+xt
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Ty
+Qv
+pS
+"}
+(23,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+LT
+UV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Qv
+pS
+pS
+pS
+"}
+(24,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+LT
+Lx
+UV
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+tm
+hJ
+SQ
+Qv
+Qv
+Qv
+pS
+pS
+pS
+"}
+(25,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+pS
+Qv
+Qv
+Qv
+LT
+Lx
+UV
+tm
+tm
+hJ
+Lx
+Lx
+Lx
+Lx
+SQ
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+"}
+(26,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+Qv
+Ty
+LT
+Lx
+Lx
+SQ
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(27,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(28,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+HC
+Qv
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+Qv
+pS
+pS
+pS
+"}
+(29,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+Qv
+pS
+pS
+pS
+pS
+pS
+pS
+"}
+(30,1,1) = {"
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+pS
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/hadzardzone.dmm b/maps/submaps/surface_submaps/wilderness/hadzardzone.dmm
new file mode 100644
index 0000000000..42341178b7
--- /dev/null
+++ b/maps/submaps/surface_submaps/wilderness/hadzardzone.dmm
@@ -0,0 +1,1536 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper{
+ info = "Daniel, I am done waiting. If your stuff gets stolen despite my security measures, it's on you. And you still better give me my dam money.";
+ name = "Notice"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"c" = (
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"e" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/blast/puzzle{
+ checkrange_mult = 3;
+ dir = 4;
+ layer = 3.3;
+ name = "Blast Door";
+ open_layer = 3.3
+ },
+/turf/space,
+/area/submap/Hadzardzone)
+"f" = (
+/turf/simulated/wall/dungeon{
+ blocks_nonghost_incorporeal = 1
+ },
+/area/submap/Hadzardzone)
+"h" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"i" = (
+/obj/effect/map_effect/interval/effect_emitter/smoke/shock,
+/turf/simulated/floor/water/contaminated,
+/area/submap/Hadzardzone)
+"j" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"k" = (
+/obj/machinery/power/rtg/advanced{
+ component_parts = list(/obj/item/stack/cable_coil=5,/obj/item/weapon/stock_parts/capacitor/omni=1,/obj/item/weapon/stock_parts/micro_laser/omni=1,/obj/item/stack/material/uranium=10,/obj/item/stack/material/phoron=5)
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"m" = (
+/obj/structure/safe,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/device/personal_shield_generator/security/strong/loaded,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"o" = (
+/obj/structure/largecrate/animal/teppi,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"q" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"r" = (
+/obj/structure/prop/lock/projectile{
+ pixel_y = 6
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"t" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"u" = (
+/obj/effect/map_effect/interval/effect_emitter/smoke/shock,
+/obj/effect/map_effect/interval/effect_emitter/smoke/shock,
+/turf/simulated/floor/water/contaminated,
+/area/submap/Hadzardzone)
+"w" = (
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"x" = (
+/obj/structure/prop/poicanister,
+/turf/simulated/floor/water/contaminated,
+/area/submap/Hadzardzone)
+"z" = (
+/obj/structure/largecrate/animal/guardmutant,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"C" = (
+/obj/structure/safe,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/storage/pill_bottle/alkysine,
+/obj/item/weapon/storage/pill_bottle/nutriment,
+/obj/item/weapon/storage/pill_bottle/osteodaxon,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"D" = (
+/turf/simulated/floor/water/contaminated,
+/area/submap/Hadzardzone)
+"F" = (
+/turf/simulated/wall/r_wall,
+/area/submap/Hadzardzone)
+"G" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/blast/puzzle{
+ checkrange_mult = 3;
+ dir = 4;
+ layer = 3.3;
+ name = "Blast Door";
+ open_layer = 3.3
+ },
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"H" = (
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"K" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"M" = (
+/obj/effect/landmark/loot_spawn,
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"N" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/Hadzardzone)
+"Q" = (
+/turf/template_noop,
+/area/submap/Hadzardzone)
+"R" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"S" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"T" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 1
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"X" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/template_noop)
+"Y" = (
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+X
+X
+X
+a
+a
+a
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+f
+f
+f
+f
+f
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+C
+H
+H
+H
+w
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+w
+H
+H
+H
+t
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+o
+H
+H
+H
+M
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+f
+f
+e
+f
+f
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+F
+F
+i
+H
+H
+j
+D
+F
+F
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+F
+F
+D
+D
+H
+H
+H
+D
+D
+F
+F
+N
+N
+N
+N
+N
+N
+N
+X
+X
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+F
+F
+D
+D
+j
+H
+H
+H
+D
+D
+D
+F
+F
+N
+N
+N
+N
+N
+N
+X
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+F
+F
+D
+D
+D
+H
+H
+j
+H
+H
+D
+D
+i
+F
+F
+N
+N
+N
+N
+N
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+F
+F
+x
+D
+D
+j
+H
+H
+H
+H
+H
+H
+D
+D
+x
+F
+F
+N
+N
+N
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+F
+D
+D
+D
+D
+H
+j
+H
+H
+H
+j
+H
+j
+D
+D
+D
+F
+N
+N
+H
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+F
+D
+D
+D
+D
+H
+H
+H
+D
+H
+H
+H
+H
+H
+H
+j
+F
+N
+H
+H
+H
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+F
+r
+D
+D
+D
+T
+R
+D
+i
+D
+F
+k
+S
+H
+H
+H
+K
+H
+H
+H
+H
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+F
+D
+D
+D
+D
+H
+H
+H
+D
+H
+H
+H
+H
+j
+H
+H
+F
+H
+H
+H
+H
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+F
+D
+D
+x
+D
+j
+H
+H
+H
+H
+H
+j
+H
+D
+D
+D
+F
+N
+b
+H
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+F
+F
+D
+D
+D
+H
+j
+H
+H
+j
+H
+H
+D
+D
+D
+F
+F
+N
+H
+H
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+F
+F
+D
+D
+H
+H
+H
+H
+H
+H
+D
+D
+u
+F
+F
+N
+N
+N
+Q
+Q
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+N
+N
+F
+F
+D
+D
+H
+H
+H
+j
+D
+D
+D
+F
+F
+N
+N
+N
+N
+N
+N
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+N
+N
+N
+F
+F
+D
+D
+q
+H
+H
+D
+x
+F
+F
+N
+N
+N
+N
+N
+N
+N
+X
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+N
+N
+N
+N
+F
+F
+i
+H
+H
+j
+D
+F
+F
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+X
+X
+N
+N
+N
+N
+N
+N
+f
+f
+f
+G
+f
+f
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+c
+Y
+Y
+Y
+z
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+X
+N
+N
+N
+N
+N
+N
+f
+h
+Y
+Y
+Y
+c
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+f
+c
+Y
+Y
+Y
+m
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+f
+f
+f
+f
+f
+f
+f
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+X
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+X
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+N
+X
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+X
+X
+a
+a
+a
+X
+X
+X
+X
+X
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+a
+a
+X
+X
+X
+X
+X
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/hadzardzone2.dmm b/maps/submaps/surface_submaps/wilderness/hadzardzone2.dmm
new file mode 100644
index 0000000000..f353590261
--- /dev/null
+++ b/maps/submaps/surface_submaps/wilderness/hadzardzone2.dmm
@@ -0,0 +1,1537 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"c" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"d" = (
+/obj/structure/safe,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/storage/pill_bottle/healing_nanites,
+/obj/item/weapon/storage/pill_bottle/rezadone,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"e" = (
+/obj/effect/map_effect/interval/effect_emitter/smoke/fire,
+/turf/simulated/floor/lava{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"f" = (
+/turf/simulated/wall/r_wall,
+/area/submap/Hadzardzone)
+"i" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor,
+/area/submap/Hadzardzone)
+"k" = (
+/obj/effect/map_effect/interval/effect_emitter/smoke/shock,
+/obj/effect/map_effect/interval/effect_emitter/smoke/fire,
+/turf/simulated/floor/lava{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"l" = (
+/obj/effect/landmark/loot_spawn,
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"o" = (
+/obj/structure/largecrate/animal/guardmutant,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"p" = (
+/turf/simulated/wall/dungeon{
+ blocks_nonghost_incorporeal = 1
+ },
+/area/submap/Hadzardzone)
+"s" = (
+/turf/simulated/floor/lava{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"u" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper{
+ info = "Daniel, I am done waiting. If your stuff gets stolen despite my security measures, it's on you. And you still better give me my dam money.";
+ name = "Notice"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"w" = (
+/turf/template_noop,
+/area/submap/Hadzardzone)
+"y" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/template_noop)
+"z" = (
+/obj/structure/prop/lock/projectile{
+ pixel_y = 6
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"B" = (
+/obj/structure/largecrate/animal/teppi,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"C" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"G" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/Hadzardzone)
+"I" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"J" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"L" = (
+/obj/structure/safe,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/clothing/suit/space/void/merc/fire,
+/obj/item/clothing/suit/space/void/altevian_heartbreaker,
+/obj/item/clothing/suit/space/void/altevian_heartbreaker,
+/obj/item/clothing/head/helmet/space/void/merc/fire,
+/obj/item/clothing/head/helmet/space/void/altevian_heartbreaker,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"M" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/blast/puzzle{
+ checkrange_mult = 3;
+ dir = 4;
+ layer = 3.3;
+ name = "Blast Door";
+ open_layer = 3.3
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"P" = (
+/obj/machinery/power/rtg/advanced{
+ component_parts = list(/obj/item/stack/cable_coil=5,/obj/item/weapon/stock_parts/capacitor/omni=1,/obj/item/weapon/stock_parts/micro_laser/omni=1,/obj/item/stack/material/uranium=10,/obj/item/stack/material/phoron=5)
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"U" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 1
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"W" = (
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"X" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+"Z" = (
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/submap/Hadzardzone)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+y
+y
+y
+a
+a
+a
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+p
+p
+p
+p
+p
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+d
+W
+W
+W
+Z
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+Z
+W
+W
+W
+J
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+B
+W
+W
+W
+l
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+p
+p
+M
+p
+p
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+f
+f
+e
+W
+W
+c
+s
+f
+f
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+f
+f
+s
+s
+W
+W
+W
+s
+s
+f
+f
+G
+G
+G
+G
+G
+G
+G
+y
+y
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+f
+f
+s
+s
+c
+W
+W
+W
+s
+s
+s
+f
+f
+G
+G
+G
+G
+G
+G
+y
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+f
+f
+s
+s
+s
+W
+W
+c
+W
+W
+s
+s
+e
+f
+f
+G
+G
+G
+G
+G
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+f
+f
+s
+s
+s
+c
+W
+W
+W
+W
+W
+W
+s
+s
+s
+f
+f
+G
+G
+G
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+f
+s
+s
+s
+s
+W
+c
+W
+W
+W
+c
+W
+c
+s
+s
+s
+f
+G
+G
+W
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+f
+s
+s
+s
+s
+W
+W
+W
+s
+W
+W
+W
+W
+W
+W
+c
+f
+G
+W
+W
+W
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+f
+z
+s
+s
+s
+U
+X
+s
+e
+s
+f
+P
+I
+W
+W
+W
+i
+W
+W
+W
+W
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+f
+s
+s
+s
+s
+W
+W
+W
+s
+W
+W
+W
+W
+c
+W
+W
+f
+W
+W
+W
+W
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+f
+s
+s
+s
+s
+c
+W
+W
+W
+W
+W
+c
+W
+s
+s
+s
+f
+G
+u
+W
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+f
+f
+s
+s
+s
+W
+c
+W
+W
+c
+W
+W
+s
+s
+s
+f
+f
+G
+W
+W
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+f
+f
+s
+s
+W
+W
+W
+W
+W
+W
+s
+s
+k
+f
+f
+G
+G
+G
+w
+w
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+G
+G
+f
+f
+s
+s
+W
+W
+W
+c
+s
+s
+s
+f
+f
+G
+G
+G
+G
+G
+G
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+G
+G
+G
+f
+f
+s
+s
+C
+W
+W
+s
+s
+f
+f
+G
+G
+G
+G
+G
+G
+G
+y
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+G
+G
+G
+G
+f
+f
+e
+W
+W
+c
+s
+f
+f
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+y
+y
+G
+G
+G
+G
+G
+G
+p
+p
+p
+M
+p
+p
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+Z
+W
+W
+W
+o
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+y
+G
+G
+G
+G
+G
+G
+p
+J
+W
+W
+W
+Z
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+p
+Z
+W
+W
+W
+L
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+p
+p
+p
+p
+p
+p
+p
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+y
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+y
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+G
+y
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+y
+y
+a
+a
+a
+y
+y
+y
+y
+y
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+a
+a
+y
+y
+y
+y
+y
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm b/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm
index 305a26567d..f0fd28901d 100644
--- a/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm
+++ b/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm
@@ -242,7 +242,7 @@
/turf/simulated/floor/outdoors/dirt,
/area/template_noop)
"sN" = (
-/mob/living/simple_mob/otie/red/chubby{
+/mob/living/simple_mob/vore/otie/red/chubby{
desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit. It has a collar around one of its ankles that reads 'Tawny'.";
name = "Tawny"
},
diff --git a/maps/submaps/surface_submaps/wilderness/otieshelter.dmm b/maps/submaps/surface_submaps/wilderness/otieshelter.dmm
index be1981d224..9bf07c817e 100644
--- a/maps/submaps/surface_submaps/wilderness/otieshelter.dmm
+++ b/maps/submaps/surface_submaps/wilderness/otieshelter.dmm
@@ -1,1069 +1,1070 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ag" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "5"
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"aj" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "5"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"ar" = (
-/obj/structure/closet/secure_closet/medical_wall/anesthetics,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"cq" = (
-/obj/structure/bed/chair/office/light{
- dir = 1
- },
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"cU" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"eI" = (
-/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"fw" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"gr" = (
-/obj/machinery/porta_turret/poi,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"gN" = (
-/obj/structure/undies_wardrobe,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"hh" = (
-/obj/structure/window/phoronreinforced{
- dir = 4
- },
-/obj/item/trash/bowl,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"hk" = (
-/obj/structure/grille/rustic,
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 4
- },
-/obj/structure/window/phoronreinforced,
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"hD" = (
-/obj/effect/decal/cleanable/filth,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"iv" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid/surgery,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"iC" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_mob/otie/friendly{
- health = 0
- },
-/turf/template_noop,
-/area/template_noop)
-"iY" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/item/trash/bowl,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"jc" = (
-/obj/machinery/optable,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"jo" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"jy" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"jI" = (
-/obj/item/weapon/material/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/blood/tracks{
- color = "red";
- desc = "Your instincts say you shouldn't be following these.";
- dir = 4;
- icon = 'icons/effects/blood.dmi';
- icon_state = "tracks"
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"kF" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/dogbed,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"kX" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"lv" = (
-/obj/structure/door_assembly,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"lP" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "4"
- },
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/obj/effect/decal/cleanable/blood,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"lQ" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"lY" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "4"
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"mu" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 4
- },
-/mob/living/simple_mob/otie/friendly/chubby,
-/obj/item/trash/bowl,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"mC" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"mJ" = (
-/obj/structure/sign/warning/secure_area,
-/turf/simulated/wall/r_wall,
-/area/submap/OtieShelter)
-"nK" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "3"
- },
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "4"
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"nR" = (
-/obj/structure/table/marble,
-/obj/item/weapon/newspaper,
-/obj/item/weapon/paper/card/heart,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"ob" = (
-/obj/structure/grille/rustic,
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced,
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"od" = (
-/obj/machinery/door/window,
-/obj/item/weapon/bone,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"op" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "4"
- },
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"pa" = (
-/obj/structure/loot_pile/surface/bones,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/filth,
-/obj/effect/decal/cleanable/filth,
-/obj/random/handgun/sec,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"pd" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "5"
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"rb" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"sJ" = (
-/obj/structure/grille/rustic,
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced,
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"tt" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/mob/living/simple_mob/otie/cotie,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"tz" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"tP" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 4
- },
-/obj/item/trash/bowl,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"uD" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"uS" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"vA" = (
-/obj/item/weapon/bone,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"vB" = (
-/obj/machinery/door/window{
- dir = 8
- },
-/obj/item/weapon/bone,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"vV" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"wO" = (
-/obj/structure/dogbed,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"xf" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/reagent_dispensers,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"xj" = (
-/obj/structure/table/marble,
-/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"xI" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/mob/living/simple_mob/otie/friendly,
-/obj/structure/dogbed,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"yD" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid/adv,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Aa" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/mob/living/simple_mob/otie/cotie/phoron,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"At" = (
-/obj/structure/table/marble,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"AO" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"BM" = (
-/obj/item/weapon/melee/baton/cattleprod,
-/obj/effect/decal/cleanable/blood/tracks{
- color = "red";
- desc = "Your instincts say you shouldn't be following these.";
- dir = 4;
- icon = 'icons/effects/blood.dmi';
- icon_state = "tracks"
- },
-/obj/effect/decal/cleanable/filth,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Cw" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"CM" = (
-/obj/structure/closet/wardrobe,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"EE" = (
-/obj/machinery/door/airlock/engineering,
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"EI" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Hk" = (
-/obj/machinery/door/window,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"HV" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Ih" = (
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Ij" = (
-/mob/living/simple_mob/otie/cotie,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"IF" = (
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"JY" = (
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"KJ" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Lr" = (
-/obj/structure/door_assembly,
-/turf/simulated/floor/plating,
-/area/submap/OtieShelter)
-"LF" = (
-/obj/structure/ghost_pod/manual/lost_drone/dogborg,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Mc" = (
-/obj/structure/fireaxecabinet{
- pixel_y = 29
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Mg" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Mn" = (
-/mob/living/simple_mob/otie/red/chubby,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Mz" = (
-/turf/simulated/wall/r_wall,
-/area/submap/OtieShelter)
-"MK" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"Nd" = (
-/obj/structure/table/marble,
-/obj/structure/table/marble,
-/obj/item/device/radio/phone,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"Nh" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"Np" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 4
- },
-/obj/item/trash/bowl,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"NJ" = (
-/obj/machinery/door/window{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Of" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"OJ" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "5"
- },
-/obj/effect/decal/cleanable/blood/tracks/paw{
- icon_state = "paw1"
- },
-/obj/item/ammo_casing/spent,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Pn" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/item/trash/bowl,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Px" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Qr" = (
-/turf/template_noop,
-/area/template_noop)
-"Ro" = (
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"RW" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "PAPC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"TP" = (
-/obj/machinery/power/smes/buildable/point_of_interest,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"UF" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"UH" = (
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/item/trash/bowl,
-/obj/item/weapon/reagent_containers/food/snacks/meat/human,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"VE" = (
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "3"
- },
-/obj/effect/decal/cleanable/blood/tracks/paw{
- icon_state = "paw1"
- },
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"VL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/effect/decal/cleanable/blood/drip{
- icon_state = "2"
- },
-/obj/effect/decal/cleanable/blood/drip,
-/turf/simulated/floor/carpet/turcarpet,
-/area/submap/OtieShelter)
-"VY" = (
-/mob/living/simple_mob/otie/cotie/chubby,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"Wl" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/windoor_assembly,
-/obj/structure/windoor_assembly{
- dir = 2
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/OtieShelter)
-"WY" = (
-/obj/machinery/oxygen_pump/mobile/anesthetic,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"XB" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-"XG" = (
-/obj/structure/window/phoronreinforced{
- dir = 1
- },
-/mob/living/simple_mob/otie/red/friendly,
-/turf/simulated/floor/tiled,
-/area/submap/OtieShelter)
-
-(1,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
-(2,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
-(3,1,1) = {"
-Qr
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Qr
-Qr
-Qr
-"}
-(4,1,1) = {"
-Qr
-Mz
-wO
-Of
-kF
-Of
-kF
-Of
-xI
-Of
-kF
-Of
-Mz
-Nh
-MK
-gN
-Mz
-Qr
-Qr
-Qr
-"}
-(5,1,1) = {"
-Qr
-Mz
-IF
-VY
-tt
-IF
-Aa
-Ih
-lQ
-IF
-lQ
-IF
-Mz
-vV
-Ro
-Ro
-Mz
-Qr
-Qr
-Qr
-"}
-(6,1,1) = {"
-Qr
-Mz
-hh
-Hk
-tP
-Hk
-Np
-od
-Np
-Hk
-mu
-Hk
-Mz
-CM
-Ro
-Ro
-Mz
-gr
-Qr
-Qr
-"}
-(7,1,1) = {"
-Qr
-Mz
-ar
-Px
-Px
-Px
-Px
-Px
-Px
-Px
-Px
-Px
-Mz
-Mz
-fw
-Mz
-mJ
-rb
-Lr
-Qr
-"}
-(8,1,1) = {"
-Qr
-Mz
-jo
-IF
-IF
-IF
-IF
-IF
-IF
-IF
-IF
-IF
-fw
-mC
-nK
-ag
-IF
-aj
-op
-iC
-"}
-(9,1,1) = {"
-Qr
-Mz
-Mc
-IF
-IF
-AO
-Cw
-yD
-AO
-IF
-IF
-uD
-Mz
-Mz
-lv
-Mz
-mJ
-rb
-JY
-Qr
-"}
-(10,1,1) = {"
-Qr
-Mz
-HV
-WY
-jc
-AO
-iv
-AO
-AO
-vA
-hD
-IF
-sJ
-MK
-tz
-Ro
-Mz
-gr
-Qr
-Qr
-"}
-(11,1,1) = {"
-Qr
-Mz
-jo
-IF
-IF
-IF
-IF
-IF
-hD
-pa
-OJ
-IF
-ob
-jy
-Nd
-nR
-Mz
-Qr
-Qr
-Qr
-"}
-(12,1,1) = {"
-Qr
-Mz
-LF
-UF
-UF
-UF
-UF
-UF
-UF
-BM
-kX
-EI
-hk
-Ro
-xj
-cq
-Mz
-Qr
-Qr
-Qr
-"}
-(13,1,1) = {"
-Qr
-Mz
-UH
-NJ
-Pn
-vB
-Pn
-NJ
-Mg
-jI
-xf
-lY
-Mz
-VL
-At
-Ro
-Mz
-Qr
-Qr
-Qr
-"}
-(14,1,1) = {"
-Qr
-Mz
-IF
-Ij
-XG
-IF
-lQ
-Mn
-iY
-lP
-XB
-pd
-Wl
-VE
-Ro
-Ro
-Mz
-Qr
-Qr
-Qr
-"}
-(15,1,1) = {"
-Qr
-Mz
-wO
-uS
-kF
-uS
-kF
-uS
-kF
-uS
-KJ
-IF
-Mz
-Ro
-Ro
-Ro
-Mz
-Qr
-Qr
-Qr
-"}
-(16,1,1) = {"
-Qr
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-Mz
-EE
-Mz
-Mz
-Mz
-Mz
-Mz
-Qr
-Qr
-Qr
-"}
-(17,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Mz
-RW
-cU
-Mz
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
-(18,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Mz
-TP
-eI
-Mz
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
-(19,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Mz
-Mz
-Mz
-Mz
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
-(20,1,1) = {"
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-Qr
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ag" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"aj" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"ar" = (
+/obj/structure/closet/secure_closet/medical_wall/anesthetics,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"cq" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"cU" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"eI" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"fw" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"gr" = (
+/obj/machinery/porta_turret/poi,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"gN" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"hh" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"hk" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"hD" = (
+/obj/effect/decal/cleanable/filth,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"iv" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"iC" = (
+/obj/effect/decal/cleanable/blood,
+/mob/living/simple_mob/vore/otie/friendly{
+ health = 0
+ },
+/turf/template_noop,
+/area/template_noop)
+"iY" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/item/trash/bowl,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"jc" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"jo" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"jy" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"jI" = (
+/obj/item/weapon/material/shard{
+ icon_state = "medium"
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 4;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"kF" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"kX" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"lv" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"lP" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"lQ" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"lY" = (
+/obj/machinery/light,
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"mu" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/mob/living/simple_mob/vore/otie/friendly/chubby,
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"mC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"mJ" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/submap/OtieShelter)
+"nK" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"nR" = (
+/obj/structure/table/marble,
+/obj/item/weapon/newspaper,
+/obj/item/weapon/paper/card/heart,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"ob" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"od" = (
+/obj/machinery/door/window,
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"op" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "4"
+ },
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"pa" = (
+/obj/structure/loot_pile/surface/bones,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/filth,
+/obj/effect/decal/cleanable/filth,
+/obj/random/handgun/sec,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"pd" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"rb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"sJ" = (
+/obj/structure/grille/rustic,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"tt" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/cotie,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"tz" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"tP" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"uD" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"uS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"vA" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"vB" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/item/weapon/bone,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"vV" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"wO" = (
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"xf" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"xj" = (
+/obj/structure/table/marble,
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"xI" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/friendly,
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"yD" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Aa" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/cotie/phoron,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"At" = (
+/obj/structure/table/marble,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"AO" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"BM" = (
+/obj/item/weapon/melee/baton/cattleprod,
+/obj/effect/decal/cleanable/blood/tracks{
+ color = "red";
+ desc = "Your instincts say you shouldn't be following these.";
+ dir = 4;
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "tracks"
+ },
+/obj/effect/decal/cleanable/filth,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Cw" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"CM" = (
+/obj/structure/closet/wardrobe,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"EE" = (
+/obj/machinery/door/airlock/engineering,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"EI" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Hk" = (
+/obj/machinery/door/window,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"HV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Ih" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Ij" = (
+/mob/living/simple_mob/vore/otie/cotie{
+ max_co2 = 0;
+ max_tox = 0
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"IF" = (
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"JY" = (
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"KJ" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Lr" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/plating,
+/area/submap/OtieShelter)
+"LF" = (
+/obj/structure/ghost_pod/manual/lost_drone/dogborg,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Mc" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Mg" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Mn" = (
+/mob/living/simple_mob/vore/otie/red/chubby,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Mz" = (
+/turf/simulated/wall/r_wall,
+/area/submap/OtieShelter)
+"MK" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"Nd" = (
+/obj/structure/table/marble,
+/obj/structure/table/marble,
+/obj/item/device/radio/phone,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"Nh" = (
+/obj/item/weapon/bedsheet/browndouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"Np" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/item/trash/bowl,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"NJ" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Of" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"OJ" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "5"
+ },
+/obj/effect/decal/cleanable/blood/tracks/paw{
+ icon_state = "paw1"
+ },
+/obj/item/ammo_casing/spent,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Pn" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Px" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Qr" = (
+/turf/template_noop,
+/area/template_noop)
+"Ro" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"RW" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "PAPC";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"TP" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"UF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"UH" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/item/trash/bowl,
+/obj/item/weapon/reagent_containers/food/snacks/meat/human,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"VE" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/obj/effect/decal/cleanable/blood/tracks/paw{
+ icon_state = "paw1"
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"VL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/carpet/turcarpet,
+/area/submap/OtieShelter)
+"VY" = (
+/mob/living/simple_mob/vore/otie/cotie/chubby,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"Wl" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/windoor_assembly,
+/obj/structure/windoor_assembly{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/submap/OtieShelter)
+"WY" = (
+/obj/machinery/oxygen_pump/mobile/anesthetic,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"XB" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+"XG" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/otie/red/friendly,
+/turf/simulated/floor/tiled,
+/area/submap/OtieShelter)
+
+(1,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(2,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(3,1,1) = {"
+Qr
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+"}
+(4,1,1) = {"
+Qr
+Mz
+wO
+Of
+kF
+Of
+kF
+Of
+xI
+Of
+kF
+Of
+Mz
+Nh
+MK
+gN
+Mz
+Qr
+Qr
+Qr
+"}
+(5,1,1) = {"
+Qr
+Mz
+IF
+VY
+tt
+IF
+Aa
+Ih
+lQ
+IF
+lQ
+IF
+Mz
+vV
+Ro
+Ro
+Mz
+Qr
+Qr
+Qr
+"}
+(6,1,1) = {"
+Qr
+Mz
+hh
+Hk
+tP
+Hk
+Np
+od
+Np
+Hk
+mu
+Hk
+Mz
+CM
+Ro
+Ro
+Mz
+gr
+Qr
+Qr
+"}
+(7,1,1) = {"
+Qr
+Mz
+ar
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Px
+Mz
+Mz
+fw
+Mz
+mJ
+rb
+Lr
+Qr
+"}
+(8,1,1) = {"
+Qr
+Mz
+jo
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+fw
+mC
+nK
+ag
+IF
+aj
+op
+iC
+"}
+(9,1,1) = {"
+Qr
+Mz
+Mc
+IF
+IF
+AO
+Cw
+yD
+AO
+IF
+IF
+uD
+Mz
+Mz
+lv
+Mz
+mJ
+rb
+JY
+Qr
+"}
+(10,1,1) = {"
+Qr
+Mz
+HV
+WY
+jc
+AO
+iv
+AO
+AO
+vA
+hD
+IF
+sJ
+MK
+tz
+Ro
+Mz
+gr
+Qr
+Qr
+"}
+(11,1,1) = {"
+Qr
+Mz
+jo
+IF
+IF
+IF
+IF
+IF
+hD
+pa
+OJ
+IF
+ob
+jy
+Nd
+nR
+Mz
+Qr
+Qr
+Qr
+"}
+(12,1,1) = {"
+Qr
+Mz
+LF
+UF
+UF
+UF
+UF
+UF
+UF
+BM
+kX
+EI
+hk
+Ro
+xj
+cq
+Mz
+Qr
+Qr
+Qr
+"}
+(13,1,1) = {"
+Qr
+Mz
+UH
+NJ
+Pn
+vB
+Pn
+NJ
+Mg
+jI
+xf
+lY
+Mz
+VL
+At
+Ro
+Mz
+Qr
+Qr
+Qr
+"}
+(14,1,1) = {"
+Qr
+Mz
+IF
+Ij
+XG
+IF
+lQ
+Mn
+iY
+lP
+XB
+pd
+Wl
+VE
+Ro
+Ro
+Mz
+Qr
+Qr
+Qr
+"}
+(15,1,1) = {"
+Qr
+Mz
+wO
+uS
+kF
+uS
+kF
+uS
+kF
+uS
+KJ
+IF
+Mz
+Ro
+Ro
+Ro
+Mz
+Qr
+Qr
+Qr
+"}
+(16,1,1) = {"
+Qr
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+EE
+Mz
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+"}
+(17,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+RW
+cU
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(18,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+TP
+eI
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(19,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Mz
+Mz
+Mz
+Mz
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
+(20,1,1) = {"
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+Qr
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/wilderness.dm b/maps/submaps/surface_submaps/wilderness/wilderness.dm
index 6578a0a40c..2fb57377c9 100644
--- a/maps/submaps/surface_submaps/wilderness/wilderness.dm
+++ b/maps/submaps/surface_submaps/wilderness/wilderness.dm
@@ -5,6 +5,9 @@
#include "blackshuttledown.dmm"
#include "blueshuttledown.dmm"
#include "borglab.dmm"
+#include "borglabAlt.dmm"
+#include "bountyhunters.dmm"
+#include "bountyhunters2.dmm"
#include "butchershack.dmm"
#include "caveS.dmm"
#include "caveSAlt.dmm"
@@ -32,6 +35,8 @@
#include "frostoasis.dmm"
#include "govpatrol.dmm"
#include "greatwolfden.dmm"
+#include "hadzardzone.dmm"
+#include "hadzardzone2.dmm"
#include "kururakden.dmm"
#include "lab1.dmm"
#include "leopardmanderden.dmm"
@@ -104,12 +109,26 @@
template_group = "Borg Lab"
/datum/map_template/surface/wilderness/deep/borglabAlt
- name = "Borg Lab"
- desc = "Production of experimental combat robots gone rogue."
+ name = "Nanite Lab"
+ desc = "Production of experimental nanite robots gone rogue."
mappath = 'maps/submaps/surface_submaps/wilderness/borglabAlt.dmm'
cost = 30
template_group = "Borg Lab"
+/datum/map_template/surface/wilderness/deep/bountyhunter
+ name = "Bounty Hunter Den"
+ desc = "The temp home of some bounty hunters, waiting for pick up."
+ mappath = 'maps/submaps/surface_submaps/wilderness/bountyhunters.dmm'
+ cost = 20
+ template_group = "Bounty Team"
+
+/datum/map_template/surface/wilderness/deep/bountyhunterAlt
+ name = "Elite Bounty Hunter Den"
+ desc = "The temp home of three elite bounty hunters, waiting for pick up."
+ mappath = 'maps/submaps/surface_submaps/wilderness/bountyhunters2.dmm'
+ cost = 20
+ template_group = "Bounty Team"
+
/datum/map_template/surface/wilderness/normal/butchershack
name = "Butcher Shack"
desc = "An old, bloody butcher's shack. Get your meat here!"
@@ -125,7 +144,7 @@
/datum/map_template/surface/wilderness/deep/caveAlt
name = "CaveS"
- desc = "Chitter chitter!"
+ desc = "Chitterexplosion!"
mappath = 'maps/submaps/surface_submaps/wilderness/CaveSAlt.dmm'
cost = 20
template_group = "CaveS"
@@ -157,8 +176,8 @@
template_group = "Death Den"
/datum/map_template/surface/wilderness/deep/deathdenAlt
- name = "Death Den"
- desc = "Gathering of acolytes gone wrong."
+ name = "Death Spice Den"
+ desc = "Gathering of acolytes gone burnly wrong."
mappath = 'maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm'
cost = 15
template_group = "Death Den"
@@ -217,8 +236,8 @@
template_group = "Dog Base"
/datum/map_template/surface/wilderness/deep/dogbaseAlt
- name = "Dog Base"
- desc = "A highly secured base with hungry trained canines"
+ name = "Spider Base"
+ desc = "A highly secured base with hungry trained spider"
mappath = 'maps/submaps/surface_submaps/wilderness/dogbaseAlt.dmm'
cost = 20
template_group = "Dog Base"
@@ -231,8 +250,8 @@
template_group = "doomP"
/datum/map_template/surface/wilderness/deep/doomPAlt
- name = "DoomP"
- desc = "Witty description here."
+ name = "Doom Bridge"
+ desc = "Witty description here 2."
mappath = 'maps/submaps/surface_submaps/wilderness/doomPAlt.dmm'
cost = 30
template_group = "doomP"
@@ -245,8 +264,8 @@
template_group = "drgnplateu"
/datum/map_template/surface/wilderness/deep/drgnplateuAlt
- name = "Dragon Plateu"
- desc = "A dangerous plateu of cliffs home to a rampant gold hoarding dragon"
+ name = "Dragon Island"
+ desc = "A dangerous lava island home to a rampant gold hoarding dragon"
mappath = 'maps/submaps/surface_submaps/wilderness/drgnplateuAlt.dmm'
cost = 15
template_group = "drgnplateu"
@@ -305,6 +324,18 @@
mappath = 'maps/submaps/surface_submaps/wilderness/greatwolfden.dmm'
cost = 15
+/datum/map_template/surface/wilderness/deep/hadzardzone
+ name = "Hadzard Zone"
+ desc = "A strange and secure drop site."
+ mappath = 'maps/submaps/surface_submaps/wilderness/hadzardzone.dmm'
+ cost = 15
+
+/datum/map_template/surface/wilderness/deep/hadzardzone
+ name = "Burning Hadzard Zone"
+ desc = "A strange and secure drop site, now onfire"
+ mappath = 'maps/submaps/surface_submaps/wilderness/hadzardzone2.dmm'
+ cost = 15
+
/datum/map_template/surface/wilderness/normal/kururakden
name = "Kururak Den"
desc = "The den of a Kururak pack. May contain hibernating members."
@@ -337,8 +368,8 @@
template_group = "Manor"
/datum/map_template/surface/wilderness/deep/manor1Alt
- name = "Manor 1"
- desc = "Whodunit"
+ name = "Manor 2"
+ desc = "Whodunit2"
mappath = 'maps/submaps/surface_submaps/wilderness/manor1Alt.dmm'
cost = 20
template_group = "Manor"
@@ -401,8 +432,8 @@
template_group = "Rocky Base"
/datum/map_template/surface/wilderness/deep/rockybaseAlt
- name = "Rocky Base"
- desc = "A guide to upsetting Icarus and the EIO"
+ name = "Rocky Mining Base"
+ desc = "A guide to upsetting mining"
mappath = 'maps/submaps/surface_submaps/wilderness/rockybaseAlt.dmm'
cost = 35
template_group = "Rocky Base"
@@ -439,8 +470,8 @@
cost = 5
/datum/map_template/surface/wilderness/deep/syndisniperAlt
- name = "Syndi Sniper"
- desc = "Syndicate watch tower, deadly but secluded"
+ name = "Syndi Drone"
+ desc = "Syndicate watch tower, deadly but secluded, now with a drone"
mappath = 'maps/submaps/surface_submaps/wilderness/syndisniperAlt.dmm'
cost = 5
template_group = "Sniper"
@@ -464,8 +495,8 @@
cost = 30
/datum/map_template/surface/wilderness/deep/cliffbaseAlt
- name = "Cliff Base"
- desc = "A hideout protected by a lake, and duo of snipers."
+ name = "Cliff lake Base"
+ desc = "A hideout protected by a lake, and duo of snipers, but the spiders are on strike."
mappath = 'maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm'
cost = 30
template_group = "AmbushBase"
@@ -474,7 +505,7 @@
name = "Raided Mech Hanger"
desc = "A hanger with mechs far past useabiltiy."
mappath = 'maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm'
- cost = 10
+ cost = 15
/datum/map_template/surface/wilderness/deep/AbandonedLab
name = "Abandoned Lab"
diff --git a/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm b/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm
index 3c1024de8a..5d2ff78256 100644
--- a/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm
+++ b/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm
@@ -29,6 +29,10 @@
name = "POI Wilderness - Borg Lab"
ambience = AMBIENCE_HIGHSEC
+/area/submap/BountyHunters
+ name = "POI Wilderness - Bounty Hunters"
+ ambience = AMBIENCE_HIGHSEC
+
/area/submap/ButcherShack
name = "POI Wilderness - Butcher's Shack"
ambience = AMBIENCE_RUINS
@@ -129,6 +133,10 @@
name = "POI Wilderness - Great Wolf Den"
ambience = AMBIENCE_SIF
+/area/submap/Hadzardzone
+ name = "POI Wilderness - Hadzard Zone"
+ ambience = AMBIENCE_RUINS
+
/area/submap/GovPatrol
name = "POI Wilderness - Lost Government Patrol"
ambience = AMBIENCE_GHOSTLY
diff --git a/maps/submaps/surface_submaps/wilderness/wolfden.dmm b/maps/submaps/surface_submaps/wilderness/wolfden.dmm
index 960493c588..012d1bbdad 100644
--- a/maps/submaps/surface_submaps/wilderness/wolfden.dmm
+++ b/maps/submaps/surface_submaps/wilderness/wolfden.dmm
@@ -19,7 +19,7 @@
},
/area/submap/WolfDen)
"d" = (
-/mob/living/simple_mob/animal/wolf/direwolf{
+/mob/living/simple_mob/vore/wolf/direwolf{
faction = "wilderness"
},
/turf/simulated/floor/outdoors/dirt{
@@ -59,7 +59,7 @@
/turf/simulated/mineral/ignore_mapgen,
/area/submap/WolfDen)
"p" = (
-/mob/living/simple_mob/animal/wolf/direwolf/dog{
+/mob/living/simple_mob/vore/wolf/direwolf/dog{
faction = "wilderness";
maxHealth = 350;
melee_damage_lower = 15;
@@ -109,7 +109,7 @@
},
/area/submap/WolfDen)
"y" = (
-/mob/living/simple_mob/animal/wolf/direwolf{
+/mob/living/simple_mob/vore/wolf/direwolf{
faction = "wilderness"
},
/obj/random/maintenance/security,
diff --git a/maps/submaps/surface_submaps/wilderness/xenohive.dmm b/maps/submaps/surface_submaps/wilderness/xenohive.dmm
index f5e0bb748a..25f0126e2a 100644
--- a/maps/submaps/surface_submaps/wilderness/xenohive.dmm
+++ b/maps/submaps/surface_submaps/wilderness/xenohive.dmm
@@ -35,6 +35,7 @@
/obj/effect/alien/weeds,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+/obj/effect/map_helper/no_phaseshift,
/turf/simulated/floor/outdoors/rocks{
outdoors = 0
},
diff --git a/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm b/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm
index 65b4b5135c..dfe8845755 100644
--- a/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm
+++ b/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm
@@ -7,7 +7,7 @@
/area/mine/explored/underdark)
"c" = (
/obj/structure/dogbed,
-/mob/living/simple_mob/animal/wolf/direwolf/rykka{
+/mob/living/simple_mob/vore/wolf/direwolf/rykka{
attacktext = list("attacked, bites, gnaws");
friendly = list("nuzzles, cuddles, rubs against")
},
diff --git a/maps/tether/submaps/underdark_pois/underdark_things.dm b/maps/tether/submaps/underdark_pois/underdark_things.dm
index 499d5a924c..210fad46b9 100644
--- a/maps/tether/submaps/underdark_pois/underdark_things.dm
+++ b/maps/tether/submaps/underdark_pois/underdark_things.dm
@@ -15,7 +15,7 @@
poison_chance = 20
// Adds Phoron Wolf
-/mob/living/simple_mob/animal/wolf/phoron
+/mob/living/simple_mob/vore/wolf/phoron
faction = "underdark"
movement_cooldown = -1.5
diff --git a/maps/tether/submaps/underdark_pois/wolf_den.dmm b/maps/tether/submaps/underdark_pois/wolf_den.dmm
index 59b5e79aec..efcaf437d2 100644
--- a/maps/tether/submaps/underdark_pois/wolf_den.dmm
+++ b/maps/tether/submaps/underdark_pois/wolf_den.dmm
@@ -23,7 +23,7 @@
/turf/simulated/mineral/floor/ignore_cavegen/virgo3b,
/area/mine/explored/underdark)
"g" = (
-/mob/living/simple_mob/animal/wolf/phoron,
+/mob/living/simple_mob/vore/wolf/phoron,
/turf/simulated/mineral/floor/ignore_cavegen/virgo3b,
/area/mine/explored/underdark)
"h" = (
@@ -36,7 +36,7 @@
/turf/simulated/mineral/floor/ignore_cavegen/virgo3b,
/area/mine/explored/underdark)
"j" = (
-/mob/living/simple_mob/otie/feral{
+/mob/living/simple_mob/vore/otie/feral{
faction = "underdark"
},
/turf/simulated/mineral/floor/ignore_cavegen/virgo3b,
diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm
index da73876955..95613fb8c3 100644
--- a/maps/tether/tether-01-surface1.dmm
+++ b/maps/tether/tether-01-surface1.dmm
@@ -331,10 +331,6 @@
/obj/item/clothing/suit/space/void/medical/emt,
/obj/item/clothing/mask/breath,
/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 6
},
@@ -373,9 +369,6 @@
"aaJ" = (
/obj/structure/table/woodentable,
/obj/item/weapon/folder/white,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/medical/mentalhealth)
"aaK" = (
@@ -540,15 +533,12 @@
/area/tether/surfacebase/medical/paramed)
"aaT" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside1)
"aaU" = (
/turf/simulated/wall,
/area/maintenance/lower/trash_pit)
@@ -659,9 +649,6 @@
"abd" = (
/obj/structure/table/rack,
/obj/item/weapon/rig/medical/equipped,
-/obj/structure/fireaxecabinet{
- pixel_x = -32
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 6
},
@@ -678,6 +665,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/medical/paramed)
"abe" = (
@@ -728,6 +719,9 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"abh" = (
@@ -774,6 +768,9 @@
/obj/structure/table/woodentable,
/obj/random/plushie,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/medical/mentalhealth)
"abk" = (
@@ -934,10 +931,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside1)
"abC" = (
/obj/effect/floor_decal/rust,
/obj/structure/closet/crate,
@@ -947,11 +942,23 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence)
"abD" = (
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/rnd/hardstorage)
+/area/hallway/lower/first_west)
"abE" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence)
@@ -1009,6 +1016,11 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"abN" = (
@@ -1024,17 +1036,12 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"abP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "psych_birdcage"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/wood,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/mentalhealth)
"abQ" = (
/obj/structure/catwalk,
@@ -1094,12 +1101,13 @@
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
"abX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "psych_birdcage"
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Birdcage";
+ req_one_access = list(64)
},
-/turf/simulated/floor/plating,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/medical/mentalhealth)
"abY" = (
/obj/machinery/door/airlock/medical{
@@ -1339,10 +1347,8 @@
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/medical/first_aid_west)
"act" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Tram Maintenance Access"
- },
/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_dining)
"acu" = (
@@ -1500,12 +1506,14 @@
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/medical/mentalhealth)
"acG" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Birdcage";
- req_one_access = list(64)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
/area/tether/surfacebase/medical/mentalhealth)
"acH" = (
/obj/effect/floor_decal/borderfloorblack{
@@ -1619,23 +1627,18 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"acT" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
@@ -1694,27 +1697,10 @@
/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
-<<<<<<< HEAD
-"ada" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/first_west)
-||||||| parent of db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
-=======
"ada" = (
/obj/structure/stairs/spawner/north,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
->>>>>>> db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
"adb" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 9
@@ -1734,7 +1720,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
-/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/paramed)
"adc" = (
@@ -1881,14 +1866,12 @@
/turf/simulated/floor/grass,
/area/tether/surfacebase/medical/mentalhealth)
"adr" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access";
- req_access = list(5)
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
+/area/maintenance/lower/xenoflora)
"ads" = (
/obj/structure/table/rack,
/obj/item/clothing/mask/gas,
@@ -1901,7 +1884,7 @@
/area/tether/surfacebase/lowernorthhall)
"adt" = (
/turf/simulated/wall,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"adu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -1990,8 +1973,8 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
@@ -2043,6 +2026,7 @@
"adD" = (
/obj/machinery/power/apc{
name = "south bump";
+ nightshift_setting = 2;
pixel_y = -28
},
/obj/effect/floor_decal/borderfloorblack{
@@ -2097,10 +2081,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/access_button{
command = "cycle_interior";
dir = 8;
@@ -2121,38 +2101,9 @@
dir = 10
},
/obj/machinery/door/firedoor/glass/hidden/steel,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
-"adH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-<<<<<<< HEAD
-/turf/simulated/floor/tiled,
-/area/hallway/lower/first_west)
-||||||| parent of db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
-=======
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"adH" = (
@@ -2162,7 +2113,6 @@
/obj/structure/stairs/spawner/south,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
->>>>>>> db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
"adI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2255,17 +2205,11 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adP" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/paramed)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/virology)
"adQ" = (
/obj/structure/closet/secure_closet/paramedic,
/obj/effect/floor_decal/corner/paleblue{
@@ -2455,6 +2399,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aea" = (
@@ -2897,6 +2842,9 @@
/area/medical/virology)
"aeF" = (
/obj/random/junk,
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"aeG" = (
@@ -2987,7 +2935,7 @@
icon_state = "frame";
pixel_y = 32
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aeM" = (
/obj/machinery/computer/security/telescreen/entertainment{
@@ -3098,7 +3046,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"aeU" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/lowerhall)
@@ -3463,7 +3411,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"afy" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -3521,20 +3468,14 @@
/area/medical/virology)
"afE" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- closed_layer = 10;
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "medbayquar";
- layer = 1;
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0;
- open_layer = 1
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access";
- req_access = list(5)
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/lowernorthhall)
@@ -3545,6 +3486,11 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"afG" = (
@@ -3613,6 +3559,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"afL" = (
@@ -3676,9 +3627,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3687,17 +3635,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-<<<<<<< HEAD
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- icon_state = "map-scrubbers"
- },
-=======
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"afQ" = (
@@ -3822,10 +3762,10 @@
/area/tether/elevator)
"agd" = (
/obj/machinery/power/breakerbox/activated{
- RCon_tag = "CargoShop Substation Bypass"
+ RCon_tag = "Surface Services Substation Bypass"
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"age" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3842,6 +3782,11 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"agg" = (
@@ -3890,6 +3835,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"ago" = (
@@ -4042,6 +3988,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"agF" = (
@@ -4151,10 +4098,7 @@
name = "north bump";
pixel_y = 28
},
-<<<<<<< HEAD
-=======
/mob/living/simple_mob/vore/aggressive/rat/pet,
->>>>>>> cd9eb7c8a8... Merge pull request #14752 from Heroman3003/ratname
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"agR" = (
@@ -4575,6 +4519,9 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 9
},
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"ahH" = (
@@ -4667,20 +4614,7 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"ahN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/reinforced,
/area/hallway/lower/first_west)
"ahO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4867,6 +4801,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aie" = (
@@ -4878,6 +4817,11 @@
name = "Cargo Shop";
sortType = "Cargo Shop"
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aif" = (
@@ -4901,6 +4845,11 @@
/obj/effect/floor_decal/corner/brown/bordercorner2{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aig" = (
@@ -4949,6 +4898,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aij" = (
@@ -5336,8 +5290,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"aiW" = (
-/turf/simulated/mineral,
-/area/engineering/engine_room)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
"aiX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
@@ -5722,7 +5684,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"ajA" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -5842,6 +5804,9 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"ajK" = (
@@ -5898,7 +5863,6 @@
/obj/random/junk,
/obj/random/junk,
/obj/random/tool,
-/obj/effect/landmark/teleplumb_exit,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"ajS" = (
@@ -6095,6 +6059,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"akh" = (
@@ -6252,6 +6220,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"akB" = (
@@ -6356,7 +6329,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akK" = (
-/turf/simulated/wall,
+/turf/simulated/wall/r_wall,
/area/tether/surfacebase/lowernortheva/external)
"akL" = (
/turf/simulated/floor/reinforced{
@@ -6409,8 +6382,18 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"akR" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/public_garden)
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian West Substation";
+ req_one_access = list(11)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"akS" = (
/obj/structure/catwalk,
/obj/machinery/door/airlock/maintenance/common,
@@ -6424,23 +6407,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/public_garden)
-"akT" = (
-<<<<<<< HEAD
-/obj/structure/sign/poster,
-/turf/simulated/wall,
-/area/tether/surfacebase/public_garden)
-||||||| parent of bb3cfe95f0... Merge pull request #10765 from Very-Soft/messeswithstuff
-/obj/structure/sign/poster,
-/turf/simulated/wall,
/area/hallway/lower/first_west)
-=======
+"akT" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
->>>>>>> bb3cfe95f0... Merge pull request #10765 from Very-Soft/messeswithstuff
"akU" = (
/obj/item/device/radio/intercom{
dir = 8;
@@ -6546,7 +6519,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"ale" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -6566,8 +6539,11 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -6594,7 +6570,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alg" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -6615,7 +6591,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alh" = (
/obj/effect/floor_decal/techfloor{
dir = 5
@@ -6630,7 +6606,7 @@
icon_state = "2-8"
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"ali" = (
/obj/structure/table/bench/steel,
/obj/effect/floor_decal/borderfloor{
@@ -6644,6 +6620,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"alj" = (
@@ -6767,7 +6746,7 @@
icon_state = "pipe-j2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -6796,7 +6775,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alq" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -6824,32 +6803,11 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
-<<<<<<< HEAD
-/area/tether/surfacebase/public_garden)
-"alr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
-||||||| parent of db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
-/area/hallway/lower/first_west)
-=======
/area/hallway/lower/first_west)
"alr" = (
/obj/structure/stairs/spawner/north,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
->>>>>>> db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
"als" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -6870,7 +6828,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alt" = (
/obj/structure/railing{
dir = 8
@@ -6986,7 +6944,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alC" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -7005,6 +6963,15 @@
/obj/structure/railing{
dir = 4
},
+/obj/structure/disposalpipe/broken,
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/filth,
+/obj/effect/landmark/teleplumb_exit,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"alE" = (
@@ -7154,7 +7121,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7177,7 +7144,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alR" = (
/obj/structure/bed/chair/wood,
/obj/effect/floor_decal/borderfloor{
@@ -7187,7 +7154,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"alS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -7368,7 +7335,7 @@
},
/obj/machinery/vending/coffee,
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7385,7 +7352,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amk" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -7576,42 +7543,8 @@
/obj/effect/floor_decal/corner/lightgrey{
dir = 6
},
-<<<<<<< HEAD
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/machinery/vending/snack{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/public_garden)
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/machinery/vending/snack{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/hallway/lower/first_west)
-=======
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
"amD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7630,7 +7563,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amE" = (
/obj/structure/bed/chair/wood{
dir = 1
@@ -7642,7 +7575,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amF" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -7718,6 +7651,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
+ nightshift_setting = 2;
pixel_y = 28
},
/obj/structure/cable/green{
@@ -7762,7 +7696,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7789,7 +7723,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amU" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/ai_status_display{
@@ -7803,10 +7737,7 @@
pixel_x = 32
},
/obj/structure/table/standard,
-<<<<<<< HEAD
-=======
/obj/random/paicard,
->>>>>>> 1df6e69b74... Merge pull request #13038 from Very-Soft/teppipai
/turf/simulated/floor/tiled,
/area/storage/primary)
"amW" = (
@@ -7820,30 +7751,25 @@
/turf/simulated/floor/tiled/steel_dirty,
/area/rnd/tankstorage)
"amX" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 8
},
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7854,11 +7780,6 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -7870,8 +7791,13 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"amZ" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -7898,7 +7824,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"anb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -7926,7 +7852,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"anc" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment{
@@ -7957,6 +7883,11 @@
/obj/structure/cable{
icon_state = "1-4"
},
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"ang" = (
@@ -7982,7 +7913,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"anh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -8011,7 +7942,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden)
+/area/hallway/lower/first_west)
"ani" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -8028,6 +7959,7 @@
},
/obj/machinery/power/apc{
name = "south bump";
+ nightshift_setting = 2;
pixel_y = -28
},
/turf/simulated/floor/tiled,
@@ -8223,24 +8155,15 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/lower/first_west)
-"anA" = (
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
+"anA" = (
+/obj/structure/redgate,
+/turf/simulated/floor/reinforced,
+/area/hallway/lower/first_west)
"anB" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -8386,7 +8309,7 @@
/turf/simulated/floor/plating,
/area/storage/surface_eva)
"anN" = (
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -8395,7 +8318,7 @@
/area/hallway/lower/first_west)
"anO" = (
/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -8617,18 +8540,13 @@
name = "north bump";
pixel_y = 28
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/turf/simulated/floor/tiled/techmaint,
/area/storage/surface_eva/external)
"aog" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -8643,14 +8561,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
-<<<<<<< HEAD
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-=======
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8660,7 +8570,6 @@
pixel_x = 32;
pixel_y = -32
},
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aoh" = (
@@ -8755,7 +8664,7 @@
/area/storage/surface_eva/external)
"aot" = (
/obj/structure/railing,
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -8892,11 +8801,6 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aoD" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -8909,6 +8813,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aoE" = (
@@ -9049,7 +8958,6 @@
/area/tether/surfacebase/surface_one_hall)
"aoR" = (
/obj/machinery/light/small,
-/obj/machinery/firework_launcher,
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"aoS" = (
@@ -9095,6 +9003,11 @@
locked = 1
},
/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/steel_grid,
/area/storage/surface_eva/external)
"aoX" = (
@@ -9107,18 +9020,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/storage/surface_eva/external)
"aoY" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/storage/surface_eva/external)
"aoZ" = (
@@ -9137,7 +9060,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9155,7 +9078,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9185,7 +9108,7 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9200,19 +9123,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-<<<<<<< HEAD
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 1
- },
-/obj/structure/cable/green{
-||||||| parent of 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 1
- },
/obj/structure/cable{
-=======
-/obj/structure/cable{
->>>>>>> 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9238,7 +9149,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -9246,7 +9157,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9266,7 +9177,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9284,7 +9195,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9300,7 +9211,7 @@
dir = 4
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -9314,11 +9225,6 @@
/turf/simulated/floor/tiled/monotile,
/area/storage/surface_eva)
"aph" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -9328,19 +9234,14 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"api" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -9353,6 +9254,17 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/computer/timeclock/premade/east,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"apj" = (
@@ -9428,6 +9340,10 @@
/obj/structure/table/standard,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
/area/storage/art)
"apu" = (
@@ -9610,6 +9526,28 @@
},
/turf/simulated/floor/tiled,
/area/storage/surface_eva)
+"apN" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Virology Laboratory";
+ req_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"apO" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 8
@@ -9617,7 +9555,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -9678,11 +9616,6 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"apU" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/alarm{
dir = 8;
pixel_x = 24
@@ -9699,6 +9632,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"apV" = (
@@ -9937,7 +9875,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/green,
+/obj/structure/cable,
/turf/simulated/floor/tiled/dark,
/area/storage/surface_eva)
"aqs" = (
@@ -10044,11 +9982,6 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aqx" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -10064,6 +9997,11 @@
/obj/machinery/light{
dir = 4
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aqy" = (
@@ -10092,6 +10030,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/storage/art)
"aqC" = (
@@ -10120,6 +10061,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
+ nightshift_setting = 2;
pixel_x = 28
},
/obj/structure/cable/green{
@@ -10235,6 +10177,11 @@
icon_state = "4-8"
},
/obj/random/junk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"aqR" = (
@@ -10242,7 +10189,7 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/lowernortheva/external)
"aqS" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -10298,11 +10245,6 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aqY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/camera/network/tether{
dir = 8
},
@@ -10318,6 +10260,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"aqZ" = (
@@ -10327,15 +10274,11 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"ara" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/sign/painting/public{
+ pixel_y = -30
},
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/storage/art)
+/turf/simulated/floor/carpet/gaycarpet,
+/area/tether/surfacebase/funny/clownoffice)
"arb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -10363,6 +10306,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
/turf/simulated/floor/tiled,
/area/storage/art)
"are" = (
@@ -10571,6 +10517,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"ary" = (
@@ -10629,17 +10578,17 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/first_aid_west)
"arG" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/first_aid_west)
"arH" = (
@@ -10648,50 +10597,40 @@
req_one_access = newlist()
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/medical/first_aid_west)
-"arI" = (
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/medical/first_aid_west)
+"arI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"arJ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -10710,6 +10649,20 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"arK" = (
@@ -10721,16 +10674,16 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"arL" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/cable/green{
d1 = 16;
d2 = 0;
icon_state = "16-0"
},
/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"arM" = (
@@ -10767,11 +10720,6 @@
/area/tether/surfacebase/surface_one_hall)
"arO" = (
/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"arP" = (
@@ -10814,9 +10762,10 @@
/obj/structure/bed/roller,
/obj/machinery/power/apc{
name = "south bump";
+ nightshift_setting = 2;
pixel_y = -24
},
-/obj/structure/cable/green,
+/obj/structure/cable,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/first_aid_west)
"arT" = (
@@ -10845,17 +10794,18 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"arV" = (
-/obj/structure/cable/green{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"arW" = (
@@ -10955,11 +10905,6 @@
name = "Locker Room Maintenance"
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/plating,
/area/crew_quarters/locker)
"asj" = (
@@ -10976,6 +10921,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"ask" = (
@@ -10983,14 +10929,14 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"asl" = (
-/obj/structure/cable/green{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"asm" = (
@@ -11133,22 +11079,10 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
-<<<<<<< HEAD
-"asw" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/locker)
-||||||| parent of db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
-=======
"asw" = (
/obj/structure/stairs/spawner/south,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
->>>>>>> db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
"asx" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -11235,14 +11169,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"asE" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11261,6 +11191,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"asF" = (
@@ -11394,25 +11329,10 @@
d2 = 4;
icon_state = "1-4"
},
-<<<<<<< HEAD
-=======
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -11459,6 +11379,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"asZ" = (
@@ -11582,14 +11503,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"atm" = (
-/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"atn" = (
/obj/machinery/status_display{
@@ -11631,7 +11551,7 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -11642,7 +11562,7 @@
/obj/structure/table/standard{
name = "plastic table frame"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11664,7 +11584,7 @@
name = "plastic table frame"
},
/obj/random/soap,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11673,12 +11593,7 @@
/area/crew_quarters/locker)
"ats" = (
/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11691,7 +11606,7 @@
name = "plastic table frame"
},
/obj/machinery/recharger,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11703,7 +11618,7 @@
name = "plastic table frame"
},
/obj/random/maintenance/clean,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11711,7 +11626,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
"atv" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -11728,9 +11643,11 @@
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
+ nightshift_setting = 2;
pixel_x = 28
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/tiled,
@@ -11745,23 +11662,10 @@
/turf/simulated/wall,
/area/tether/surfacebase/tram)
"atz" = (
-<<<<<<< HEAD
-/obj/machinery/door/blast/regular,
-/turf/simulated/wall,
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-=======
/obj/effect/floor_decal/techfloor/orange{
dir = 8
},
/turf/simulated/floor/tiled/techfloor/grid,
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
/area/tether/surfacebase/tram)
"atA" = (
/obj/effect/floor_decal/industrial/warning{
@@ -11803,14 +11707,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"atF" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11829,6 +11729,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"atG" = (
@@ -12059,16 +11964,6 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
"aue" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/tether/surfacebase/tram;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_station";
- name = "Tether Surface Base"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/tram)
-"auf" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
@@ -12105,9 +12000,6 @@
/obj/item/clothing/suit/space/anomaly,
/obj/item/clothing/head/helmet/space/anomaly,
/obj/item/clothing/mask/breath,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -12138,67 +12030,48 @@
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"auj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"auk" = (
-/obj/machinery/door/airlock/engineering{
- name = "Civilian West Substation";
- req_one_access = list(11)
- },
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Solars Maintenance Access"
+ },
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/maintenance/substation/civ_west)
+/area/maintenance/lower/solars)
"aul" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Civ West Subgrid";
- name_tag = "Civ West Subgrid"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/substation/civ_west)
+/area/maintenance/lower/solars)
"aum" = (
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Civ West";
- output_attempt = 0
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
+/obj/structure/railing{
+ dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/substation/civ_west)
+/area/maintenance/lower/solars)
"aun" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Civ West Substation Bypass"
@@ -12264,7 +12137,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -12386,13 +12259,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"auD" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
+/obj/machinery/door/blast/regular,
+/turf/simulated/wall,
/area/tether/surfacebase/tram)
"auE" = (
/turf/simulated/wall,
@@ -12416,6 +12284,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"auG" = (
@@ -12440,64 +12312,28 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"auH" = (
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civ_west)
-"auI" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/machinery/light/small,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civ_west)
-"auJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
- },
/turf/simulated/floor/plating,
-<<<<<<< HEAD
-/area/maintenance/substation/civ_west)
-||||||| parent of db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
-/area/maintenance/lower/solars)
-=======
/area/maintenance/lower/solars)
"auI" = (
/obj/structure/stairs/spawner/west,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside1)
->>>>>>> db9968a3ff... Merge pull request #9454 from VOREStation/upstream-merge-7783
+"auJ" = (
+/obj/machinery/door/airlock{
+ name = "Surface Brig Restroom"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"auK" = (
/turf/simulated/wall,
/area/maintenance/lower/solars)
@@ -12607,13 +12443,21 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/external)
+"auX" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"auY" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
@@ -12621,6 +12465,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"auZ" = (
@@ -12644,6 +12491,9 @@
req_access = list(47)
},
/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled/steel_grid,
/area/hallway/lower/first_west)
"avb" = (
@@ -12653,17 +12503,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-<<<<<<< HEAD
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-=======
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"avc" = (
@@ -12685,26 +12527,29 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"avd" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+/obj/structure/table/rack,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/structure/railing{
+ dir = 8
},
-/turf/simulated/wall,
-/area/maintenance/lower/solars)
-"ave" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Civilian West Substation";
- req_one_access = list(11)
- },
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
+"ave" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock7";
+ name = "Room 8 Restroom"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/Dorm_8)
"avf" = (
/obj/machinery/light/small{
dir = 1
@@ -12807,12 +12652,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -12841,7 +12686,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12865,7 +12710,7 @@
name = "Security Checkpoint";
req_access = list(1)
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12894,7 +12739,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12917,7 +12762,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12940,7 +12785,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12965,7 +12810,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -12985,7 +12830,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -13006,7 +12851,7 @@
dir = 4
},
/obj/machinery/camera/network/security,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -13027,7 +12872,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -13048,7 +12893,7 @@
layer = 3.3;
pixel_y = 26
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
icon_state = "2-8"
@@ -13215,41 +13060,31 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"avK" = (
+/obj/structure/catwalk,
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-4"
},
-<<<<<<< HEAD
-=======
/obj/effect/mouse_hole_spawner{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"avL" = (
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
/obj/structure/railing,
/obj/structure/table/rack,
/obj/random/maintenance/medical,
/obj/random/maintenance/research,
/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
-"avL" = (
+/obj/structure/railing{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"avM" = (
@@ -13258,26 +13093,24 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
+/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"avN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
+/obj/random/soap,
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock7";
+ name = "Room 8 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/Dorm_8)
"avO" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -13339,7 +13172,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -13435,7 +13268,7 @@
/turf/simulated/floor/tiled,
/area/security/checkpoint)
"awf" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -13470,6 +13303,20 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"awk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock6";
+ name = "Room 6 Restroom"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/Dorm_6)
"awl" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13705,22 +13552,17 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"awB" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/button/remote/airlock{
+ id = "elevescaper";
+ name = "elevator escape button";
+ pixel_y = 32
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
+/area/maintenance/lower/xenoflora)
"awC" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -13845,7 +13687,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -13924,6 +13766,22 @@
/obj/item/weapon/folder/red,
/turf/simulated/floor/tiled,
/area/security/checkpoint)
+"awR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"awS" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13969,13 +13827,12 @@
/area/rnd/hallway)
"awU" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/storage/surface_eva/external)
"awV" = (
/obj/effect/landmark{
name = "lightsout"
@@ -14010,6 +13867,10 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"awW" = (
@@ -14038,6 +13899,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"awX" = (
@@ -14070,27 +13934,24 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"awY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
+ dir = 8
},
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"awZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14111,22 +13972,23 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"axa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
},
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/medical/paramed)
"axb" = (
@@ -14298,6 +14160,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/item_bank{
+ dir = 4;
+ pixel_x = -28
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"axj" = (
@@ -14464,7 +14330,7 @@
name = "south bump";
pixel_y = -24
},
-/obj/structure/cable/green,
+/obj/structure/cable/orange,
/turf/simulated/floor/tiled,
/area/security/checkpoint)
"axw" = (
@@ -14492,6 +14358,15 @@
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"axz" = (
+/obj/machinery/door/airlock/medical{
+ id_tag = null;
+ name = "Auto Resleeving";
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/autoresleeving)
"axA" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -14505,11 +14380,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -14528,11 +14398,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14555,15 +14420,22 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"axD" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Virology Isolation Room One";
+ req_one_access = list(39)
},
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"axE" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -14610,26 +14482,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/tiled/white,
/area/medical/virology)
-<<<<<<< HEAD
-"axI" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
-||||||| parent of c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
-=======
"axI" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -14639,7 +14491,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
->>>>>>> c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
"axJ" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/green,
@@ -14666,9 +14517,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"axL" = (
@@ -14745,6 +14593,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"axR" = (
@@ -14926,6 +14775,7 @@
/obj/random/medical,
/obj/machinery/power/apc{
name = "south bump";
+ nightshift_setting = 2;
pixel_y = -32
},
/obj/structure/cable/green,
@@ -14936,7 +14786,6 @@
dir = 4;
pixel_x = 11
},
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
@@ -15061,29 +14910,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"ayr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/rnd/hallway)
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside1)
"ays" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -15172,24 +15005,20 @@
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"ayw" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Virology Laboratory";
- req_access = list(39)
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Virology Isolation Room Two";
+ req_one_access = list(39)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
},
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"ayx" = (
@@ -15275,29 +15104,21 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ name = "package tagger - Void";
+ sort_tag = "Void"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"ayC" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"ayD" = (
-<<<<<<< HEAD
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance/medical{
- locked = 1;
- name = "Medical Maintenance Access";
- req_access = list(5)
-||||||| parent of c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/engi{
- id_tag = "elevescaper";
- name = "Elevator Maintenance"
-=======
/obj/structure/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -15308,18 +15129,9 @@
d1 = 1;
d2 = 2;
icon_state = "1-2"
->>>>>>> c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
},
-<<<<<<< HEAD
-/turf/simulated/floor/plating,
-/area/medical/virologyaccess)
-||||||| parent of c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-=======
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
->>>>>>> c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
"ayE" = (
/obj/machinery/firealarm{
dir = 8;
@@ -15537,6 +15349,21 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virologyisolation)
+"ayY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/random/soap,
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock6";
+ name = "Room 6 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/Dorm_6)
"ayZ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -15553,6 +15380,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"aza" = (
@@ -15562,12 +15390,12 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"azb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
+/area/maintenance/lower/xenoflora)
"azc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15772,9 +15600,32 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"azr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock5";
+ name = "Room 4 Restroom"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/Dorm_4)
"azs" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/lower/solars)
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/outside/outside1)
"azt" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -15788,11 +15639,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/light{
dir = 8
},
@@ -15942,23 +15788,22 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
-"azG" = (
-<<<<<<< HEAD
-/obj/structure/disposalpipe/tagger{
- dir = 2;
- name = "package tagger - Void";
- sort_tag = "Void"
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'CRUSH WARNING'.";
- name = "\improper CRUSH WARNING";
- pixel_y = -32
+"azF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
-=======
+/obj/random/soap,
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock5";
+ name = "Room 4 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/Dorm_4)
+"azG" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'CRUSH WARNING'.";
name = "\improper CRUSH WARNING";
@@ -15967,48 +15812,15 @@
/obj/effect/floor_decal/industrial/warning,
/obj/structure/railing{
dir = 4
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
},
/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
+/area/maintenance/lower/xenoflora)
"azH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"azI" = (
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Virology Isolation Room One";
- req_one_access = list(39)
+/obj/machinery/door/airlock/maintenance/medical{
+ id_tag = "autor";
+ name = "Auto-Resleeving";
+ req_access = list(5)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/lime{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"azJ" = (
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Virology Isolation Room Two";
- req_one_access = list(39)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/lime{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"azK" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16017,14 +15829,46 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/autoresleeving)
+"azI" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"azJ" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/item/device/pipe_painter{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/pipe_painter,
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"azK" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"azL" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
@@ -16060,6 +15904,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"azP" = (
@@ -16140,36 +15987,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-<<<<<<< HEAD
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
-=======
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
},
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"azU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "ward_tint"
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'CRUSH WARNING'.";
+ name = "\improper CRUSH WARNING";
+ pixel_y = -32
},
-/obj/structure/grille,
-/obj/machinery/door/blast/shutters{
- closed_layer = 10;
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "medbayquar";
- layer = 1;
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0;
- open_layer = 1
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing{
+ dir = 8
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/lowernorthhall)
+/area/maintenance/lower/xenoflora)
"azV" = (
/turf/simulated/wall,
/area/medical/virology)
@@ -16249,10 +16083,6 @@
/area/maintenance/lowmedbaymaint)
"aAb" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access";
- req_access = list(5)
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16264,6 +16094,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"aAc" = (
@@ -16296,6 +16127,7 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"aAd" = (
@@ -16391,14 +16223,21 @@
name = "Medical Maintenance Access";
req_access = list(5)
},
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/centralstairwell)
"aAj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/door/airlock/maintenance/rnd{
name = "Science Maintenance"
},
@@ -16408,21 +16247,16 @@
/area/maintenance/lower/solars)
"aAk" = (
/obj/effect/floor_decal/rust,
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"aAl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/cable,
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/outside/outside1)
"aAm" = (
/obj/random/junk,
/obj/machinery/light/small{
@@ -16463,13 +16297,19 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aAs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/virgo3b_indoors,
/area/maintenance/lower/solars)
"aAt" = (
/obj/structure/cable{
@@ -16484,12 +16324,22 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aAu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/virgo3b_indoors,
/area/maintenance/lower/solars)
"aAv" = (
/obj/structure/cable{
@@ -16526,17 +16376,18 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aAx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
+/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Science Maintenance"
+/obj/structure/railing{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/surfacebase/outside/outside1)
"aAy" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -16550,9 +16401,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aAz" = (
@@ -16656,6 +16504,11 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"aAH" = (
@@ -16725,6 +16578,9 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/structure/closet/firecloset,
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aAO" = (
@@ -16826,6 +16682,15 @@
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"aAY" = (
@@ -16927,6 +16792,7 @@
/area/maintenance/lowmedbaymaint)
"aBi" = (
/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"aBj" = (
@@ -16989,6 +16855,10 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 4
},
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aBo" = (
@@ -17003,20 +16873,12 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"aBq" = (
@@ -17075,14 +16937,29 @@
/area/maintenance/lower/research)
"aBu" = (
/obj/structure/cable/heavyduty{
- icon_state = "0-2"
+ icon_state = "1-8"
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/surfacebase/outside/outside1)
"aBv" = (
-/turf/simulated/wall,
-/area/rnd/miscellaneous_lab)
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
"aBw" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -17375,20 +17252,8 @@
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-<<<<<<< HEAD
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
-=======
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 1
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
},
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
@@ -17409,6 +17274,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aBY" = (
@@ -17434,19 +17304,13 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"aCc" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
"aCd" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -17519,6 +17383,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aCh" = (
@@ -17592,14 +17461,14 @@
/obj/effect/floor_decal/corner/mauve/border{
dir = 1
},
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/vending/cola,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aCo" = (
@@ -17613,6 +17482,10 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/vending/coffee,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aCp" = (
@@ -17822,6 +17695,9 @@
dir = 8
},
/obj/machinery/vending/cola,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/tiled/monotile,
/area/hallway/lower/first_west)
"aCI" = (
@@ -17835,15 +17711,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-<<<<<<< HEAD
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/locker/laundry_arrival)
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/structure/cable/orange,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/locker/laundry_arrival)
-=======
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 1
},
@@ -17853,7 +17720,6 @@
/obj/machinery/vending/fitness,
/turf/simulated/floor/tiled/monotile,
/area/hallway/lower/first_west)
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
"aCJ" = (
/turf/simulated/floor/plating,
/area/vacant/vacant_site/east)
@@ -17909,30 +17775,34 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aCO" = (
/turf/simulated/wall,
/area/crew_quarters/visitor_dining)
"aCP" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
+"aCQ" = (
/obj/structure/bed/chair/wood{
dir = 4
},
-/turf/simulated/floor/lino,
-/area/crew_quarters/visitor_dining)
-"aCQ" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aCR" = (
/obj/structure/bed/chair/wood{
dir = 8
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aCS" = (
/obj/structure/flora/pottedplant,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aCT" = (
/obj/structure/bed/chair{
@@ -17943,7 +17813,7 @@
"aCU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -17999,7 +17869,7 @@
"aDa" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
- dir = 10;
+ dir = 5;
id = "gloriouscargopipeline"
},
/turf/simulated/floor/tiled/steel_dirty,
@@ -18015,6 +17885,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aDd" = (
@@ -18155,6 +18026,9 @@
/obj/effect/floor_decal/corner/mauve/bordercorner{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aDs" = (
@@ -18173,13 +18047,14 @@
/turf/simulated/floor/tiled/steel_dirty,
/area/tether/surfacebase/cargostore/warehouse)
"aDu" = (
-/turf/simulated/floor/lino,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aDv" = (
/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aDw" = (
/obj/effect/floor_decal/corner/lightgrey{
@@ -18302,6 +18177,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/computer/timeclock/premade/west,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aDG" = (
@@ -18311,6 +18187,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aDH" = (
@@ -18333,28 +18214,23 @@
/area/engineering/atmos)
"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-"aDK" = (
-/obj/structure/window/reinforced{
+"aDL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/vending/cola{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/hallway)
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock4";
+ name = "Room 2 Restroom"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/Dorm_2)
"aDM" = (
/obj/structure/ladder/up,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -18462,7 +18338,11 @@
"aDX" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/lino,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aDY" = (
/obj/machinery/door/window{
@@ -18486,7 +18366,7 @@
req_one_access = list(25)
},
/obj/structure/sink{
- pixel_y = 28
+ pixel_y = 22
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_dining)
@@ -18647,20 +18527,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/vending/coffee{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aEo" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -18729,6 +18596,11 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aEv" = (
@@ -18736,6 +18608,7 @@
/obj/machinery/camera/network/engineering{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aEw" = (
@@ -18762,12 +18635,18 @@
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 9
},
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aEB" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aEC" = (
@@ -18824,11 +18703,11 @@
/area/crew_quarters/visitor_dining)
"aEJ" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aEK" = (
/obj/item/weapon/stool/padded,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aEL" = (
/obj/structure/table/marble,
@@ -18853,19 +18732,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aEP" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/structure/cable/orange{
-=======
-/obj/structure/cable/orange{
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -18874,20 +18741,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"aEQ" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall,
-/area/maintenance/lower/solars)
-"aER" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
"aES" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -19126,7 +18979,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -19166,7 +19019,7 @@
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -19235,6 +19088,11 @@
dir = 2;
icon_state = "pipe-j2"
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aFv" = (
@@ -19248,25 +19106,7 @@
/area/tether/surfacebase/lowernorthhall)
"aFw" = (
/obj/machinery/door/firedoor/glass,
-<<<<<<< HEAD
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = null;
- name = "Cafe"
- },
-/obj/structure/cable/green{
-||||||| parent of 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = null;
- name = "Cafe"
- },
/obj/structure/cable/orange{
-=======
-/obj/structure/cable/orange{
->>>>>>> 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -19290,7 +19130,7 @@
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/visitor_dining)
"aFx" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
icon_state = "2-8"
@@ -19305,7 +19145,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aFy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -19314,7 +19154,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aFz" = (
/obj/item/weapon/stool/padded,
@@ -19324,7 +19164,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aFA" = (
/obj/structure/table/marble,
@@ -19405,32 +19245,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aFH" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/green{
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/orange{
-=======
-/obj/structure/cable/orange{
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
-=======
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19575,7 +19391,7 @@
"aFR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aFS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -19621,6 +19437,9 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_dining)
"aFU" = (
@@ -19633,6 +19452,21 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
+"aFV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/random/soap,
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock4";
+ name = "Room 2 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/Dorm_2)
"aFW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -19640,7 +19474,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aFX" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -19918,7 +19752,7 @@
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aGr" = (
-/obj/structure/bed/chair/sofa/brown/right,
+/obj/structure/bed/chair/sofa/right/brown,
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -19934,7 +19768,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore/office)
"aGs" = (
-/obj/structure/bed/chair/sofa/brown/corner,
+/obj/structure/bed/chair/sofa/corner/brown,
/obj/effect/landmark/start{
name = "Cargo Technician"
},
@@ -19956,7 +19790,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -19969,6 +19803,11 @@
dir = 8
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aGw" = (
@@ -19984,8 +19823,11 @@
name = "west bump";
pixel_x = -30
},
-/obj/structure/cable/green,
-/turf/simulated/floor/lino,
+/obj/structure/cable/orange,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aGy" = (
/obj/structure/table/marble,
@@ -19997,6 +19839,20 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_dining)
+"aGz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock1";
+ name = "Dark Bar Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/vacant/vacant_bar)
"aGA" = (
/obj/machinery/firealarm{
dir = 1;
@@ -20005,8 +19861,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aGB" = (
-/obj/structure/cable/green,
+/obj/structure/cable/orange,
/obj/machinery/power/apc/high{
+ nightshift_setting = 2;
pixel_y = -28
},
/obj/machinery/light,
@@ -20025,7 +19882,7 @@
dir = 1
},
/obj/structure/railing,
-/turf/simulated/floor/virgo3b,
+/turf/simulated/floor/virgo3b_indoors,
/area/tether/surfacebase/outside/outside1)
"aGE" = (
/obj/structure/cable/heavyduty{
@@ -20037,45 +19894,13 @@
/obj/structure/railing,
/turf/simulated/floor/virgo3b,
/area/tether/surfacebase/outside/outside1)
-"aGF" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside1)
"aGG" = (
/obj/effect/floor_decal/rust,
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
/obj/structure/catwalk,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside1)
-"aGH" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside1)
-"aGI" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/virgo3b,
+/turf/simulated/floor/virgo3b_indoors,
/area/tether/surfacebase/outside/outside1)
"aGJ" = (
/obj/structure/table/glass,
@@ -20234,7 +20059,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -20267,7 +20092,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore/office)
"aGU" = (
-/obj/structure/bed/chair/sofa/brown/left{
+/obj/structure/bed/chair/sofa/left/brown{
dir = 8
},
/obj/effect/floor_decal/borderfloor{
@@ -20379,12 +20204,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -20458,7 +20283,7 @@
/obj/machinery/camera/network/civilian{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aHm" = (
/obj/structure/table/marble,
@@ -20581,7 +20406,8 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
"aHy" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/apc{
@@ -20655,7 +20481,7 @@
pixel_y = -4;
specialfunctions = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -20682,16 +20508,16 @@
/turf/simulated/floor/plating,
/area/crew_quarters/visitor_dining)
"aHH" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/item/weapon/stool/padded{
+ dir = 8
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aHI" = (
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aHJ" = (
/obj/structure/grille,
@@ -20807,6 +20633,9 @@
dir = 4;
pixel_x = 24
},
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore/office)
"aHU" = (
@@ -20858,7 +20687,7 @@
pixel_y = -4;
specialfunctions = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -20877,7 +20706,7 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm1)
"aHY" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -20885,7 +20714,7 @@
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
"aHZ" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -20923,7 +20752,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -20967,7 +20796,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -21035,14 +20864,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"aIr" = (
-/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/turf/simulated/floor/lino,
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aIs" = (
/obj/structure/disposalpipe/segment{
@@ -21063,7 +20894,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aIu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -21072,41 +20903,41 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/lino,
-/area/crew_quarters/visitor_dining)
-"aIv" = (
-/obj/structure/bed/chair/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/visitor_dining)
-"aIw" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/visitor_dining)
-"aIx" = (
/obj/structure/bed/chair/wood{
dir = 8
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
+"aIv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
+"aIw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
+"aIx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aIy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -21115,14 +20946,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aIz" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aIA" = (
/obj/structure/disposalpipe/segment{
@@ -21136,6 +20967,11 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"aIB" = (
@@ -21205,7 +21041,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -21387,7 +21223,7 @@
"aIY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -21401,7 +21237,7 @@
"aJa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -21556,23 +21392,26 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"aJm" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/lino,
+/obj/effect/landmark/vermin,
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aJn" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/carpet/blue2,
/area/crew_quarters/visitor_dining)
"aJo" = (
/obj/machinery/hologram/holopad,
-/turf/simulated/floor/lino,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aJp" = (
/obj/effect/floor_decal/industrial/warning{
@@ -21670,7 +21509,7 @@
name = "west bump";
pixel_x = -28
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
@@ -21702,7 +21541,7 @@
name = "west bump";
pixel_x = -28
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
@@ -21711,7 +21550,7 @@
"aJx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -21791,12 +21630,19 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aJD" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock2";
+ name = "Room 3 Restroom"
},
-/obj/machinery/light_construct/small,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/maintDorm3)
"aJE" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/wood,
@@ -21931,6 +21777,11 @@
dir = 5
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aJT" = (
@@ -21971,11 +21822,11 @@
/obj/structure/bed/chair/wood{
dir = 1
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aJW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aJX" = (
/obj/effect/floor_decal/borderfloor{
@@ -22056,6 +21907,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"aKd" = (
@@ -22137,6 +21993,7 @@
},
/obj/machinery/power/apc/super{
dir = 1;
+ nightshift_setting = 2;
pixel_y = 28
},
/obj/machinery/button/remote/blast_door{
@@ -22146,38 +22003,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aKn" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/fireaxecabinet{
- pixel_y = 32
- },
-/obj/structure/table/standard,
-/obj/item/device/pipe_painter{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/device/pipe_painter,
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"aKo" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/newscaster{
- pixel_y = 30
- },
-/obj/structure/table/standard,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
"aKp" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -22194,6 +22019,20 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
+"aKq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "bathroomlock3";
+ name = "Room 1 Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm1)
"aKr" = (
/obj/structure/railing,
/obj/effect/floor_decal/borderfloor{
@@ -22268,6 +22107,20 @@
/obj/item/weapon/beach_ball/holoball,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
+"aKA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock1";
+ name = "Dark Bar Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/vacant/vacant_bar)
"aKB" = (
/obj/structure/railing{
dir = 8
@@ -22370,7 +22223,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -22402,14 +22255,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore/office)
"aKJ" = (
-/obj/machinery/light,
-/turf/simulated/floor/lino,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aKK" = (
/obj/machinery/camera/network/civilian{
dir = 1
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"aKL" = (
/turf/simulated/wall,
@@ -22477,6 +22332,11 @@
/area/tether/surfacebase/cargostore/office)
"aKR" = (
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"aKS" = (
@@ -22587,7 +22447,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -22602,7 +22462,7 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -22634,14 +22494,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/turf/simulated/floor/lino,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue2,
/area/crew_quarters/visitor_dining)
"aLl" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/turf/simulated/floor/lino,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue2,
/area/crew_quarters/visitor_dining)
"aLm" = (
/obj/structure/catwalk,
@@ -22970,7 +22836,8 @@
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 2;
icon_state = "0-2"
},
/obj/structure/closet/secure_closet/personal,
@@ -23003,10 +22870,8 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/timeclock/premade/east,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aLR" = (
@@ -23052,12 +22917,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_8)
"aLW" = (
-/obj/structure/sink{
- pixel_y = 22
- },
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_8)
@@ -23082,6 +22946,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"aMa" = (
@@ -23139,6 +23008,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aMd" = (
@@ -23317,7 +23189,7 @@
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -23345,7 +23217,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -23379,6 +23251,9 @@
dir = 1;
icon_state = "pipe-j2"
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aMC" = (
@@ -23417,18 +23292,20 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_8)
"aMG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/light_construct/small,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock2";
+ name = "Room 3 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
},
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/Dorm_8)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/maintDorm3)
"aMH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23668,7 +23545,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -23680,7 +23557,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_7)
"aNk" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -23713,7 +23590,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -23724,15 +23601,15 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -23750,7 +23627,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -23772,7 +23649,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aNn" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -23794,7 +23671,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/Dorm_8)
"aNo" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -23815,7 +23692,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_8)
"aNp" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
@@ -23855,10 +23732,16 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/random/soap,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/Dorm_8)
+/obj/machinery/light_construct/small,
+/obj/machinery/button/remote/airlock{
+ id = "bathroomlock3";
+ name = "Room 1 Bathroom Lock";
+ pixel_x = -20;
+ pixel_y = 10;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm1)
"aNu" = (
/obj/machinery/shower{
dir = 1
@@ -24054,11 +23937,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/computer/timeclock/premade/west,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aNR" = (
@@ -24246,7 +24130,8 @@
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 2;
icon_state = "0-2"
},
/obj/structure/closet/secure_closet/personal,
@@ -24265,7 +24150,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -24338,12 +24223,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_6)
"aOu" = (
-/obj/structure/sink{
- pixel_y = 22
- },
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_6)
@@ -24460,7 +24344,7 @@
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -24486,7 +24370,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -24558,22 +24442,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_6)
-<<<<<<< HEAD
-"aOO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/Dorm_6)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aOO" = (
/obj/machinery/flasher{
id = "SurfaceBrigFlash";
@@ -24581,7 +24449,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aOP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -24631,7 +24498,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -24700,7 +24567,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -24712,7 +24579,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_5)
"aPa" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -24746,7 +24613,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -24759,15 +24626,15 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -24785,7 +24652,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -24806,7 +24673,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aPd" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -24831,7 +24698,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/Dorm_6)
"aPe" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -24852,7 +24719,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_6)
"aPf" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
@@ -24888,17 +24755,6 @@
/obj/item/weapon/towel/random,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_6)
-<<<<<<< HEAD
-"aPj" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/random/soap,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/Dorm_6)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aPj" = (
/obj/structure/cable/green{
d1 = 1;
@@ -24923,7 +24779,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aPk" = (
/obj/machinery/shower{
dir = 1
@@ -24977,6 +24832,7 @@
},
/obj/machinery/power/apc/super{
dir = 1;
+ nightshift_setting = 2;
pixel_y = 28
},
/turf/simulated/floor/tiled,
@@ -25062,9 +24918,6 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aPu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -25078,6 +24931,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aPv" = (
@@ -25204,13 +25060,16 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aPJ" = (
@@ -25308,6 +25167,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aPV" = (
@@ -25392,7 +25252,8 @@
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 2;
icon_state = "0-2"
},
/obj/structure/closet/secure_closet/personal,
@@ -25411,7 +25272,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -25488,12 +25349,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_4)
"aQm" = (
-/obj/structure/sink{
- pixel_y = 22
- },
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_4)
@@ -25689,7 +25549,7 @@
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -25715,7 +25575,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -25791,22 +25651,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_4)
-<<<<<<< HEAD
-"aQO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/Dorm_4)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aQO" = (
/obj/structure/cable/green{
d1 = 4;
@@ -25822,7 +25666,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aQP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -25879,6 +25722,9 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aQY" = (
@@ -25888,6 +25734,9 @@
},
/obj/structure/grille,
/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aQZ" = (
@@ -25899,6 +25748,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aRa" = (
@@ -25978,7 +25830,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -25990,7 +25842,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_3)
"aRk" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -26021,7 +25873,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -26034,15 +25886,15 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -26051,7 +25903,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aRm" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -26073,7 +25925,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/Dorm_4)
"aRn" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -26094,7 +25946,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_4)
"aRo" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
@@ -26130,17 +25982,6 @@
/obj/item/weapon/towel/random,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_4)
-<<<<<<< HEAD
-"aRs" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/random/soap,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/Dorm_4)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aRs" = (
/obj/structure/cable/green{
d1 = 1;
@@ -26155,7 +25996,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aRt" = (
/obj/machinery/shower{
dir = 1
@@ -26226,6 +26066,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aRD" = (
@@ -26318,7 +26159,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -26407,6 +26248,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aRV" = (
@@ -26554,7 +26396,8 @@
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 2;
icon_state = "0-2"
},
/obj/structure/closet/secure_closet/personal,
@@ -26573,12 +26416,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -26644,12 +26487,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_2)
"aSu" = (
-/obj/structure/sink{
- pixel_y = 22
- },
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_2)
@@ -26701,6 +26543,7 @@
/area/engineering/atmos/processing)
"aSC" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aSD" = (
@@ -26832,7 +26675,7 @@
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -26874,22 +26717,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_2)
-<<<<<<< HEAD
-"aSZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/Dorm_2)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aSZ" = (
/obj/machinery/flasher{
id = "SurfaceBrigFlash"
@@ -26897,7 +26724,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aTa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -26975,6 +26801,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aTk" = (
@@ -27097,7 +26924,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -27109,7 +26936,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_1)
"aTz" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -27146,17 +26973,17 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -27180,7 +27007,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aTC" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -27201,7 +27028,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_2)
"aTD" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
@@ -27237,17 +27064,6 @@
/obj/item/weapon/towel/random,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/Dorm_2)
-<<<<<<< HEAD
-"aTH" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/random/soap,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/Dorm_2)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
"aTH" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
@@ -27261,7 +27077,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aTI" = (
/obj/machinery/shower{
dir = 1
@@ -27414,7 +27229,7 @@
/obj/effect/floor_decal/corner/blue/bordercorner2{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -27549,7 +27364,7 @@
/obj/effect/floor_decal/corner/white/border{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -27620,10 +27435,9 @@
/obj/effect/floor_decal/corner/grey/bordercorner2{
dir = 10
},
-/obj/structure/extinguisher_cabinet{
+/obj/machinery/light_switch{
dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
+ pixel_x = -24
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -27638,25 +27452,7 @@
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/visitor_laundry)
"aUr" = (
-<<<<<<< HEAD
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = null;
- name = "Laundry"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
-/obj/structure/cable/green{
-||||||| parent of 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = null;
- name = "Laundry"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/obj/structure/cable/orange{
-=======
-/obj/structure/cable/orange{
->>>>>>> 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -27681,19 +27477,12 @@
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/visitor_laundry)
"aUs" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/corner/grey{
dir = 5
},
@@ -27709,7 +27498,6 @@
dir = 2;
icon_state = "pipe-c"
},
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUt" = (
@@ -27735,8 +27523,6 @@
/obj/machinery/washing_machine,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/corner/grey{
dir = 5
},
@@ -27749,7 +27535,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUv" = (
@@ -27816,6 +27601,11 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos_intake)
"aUE" = (
@@ -27823,10 +27613,14 @@
/obj/item/clothing/mask/smokable/cigarette/joint{
desc = "Ever been to orbit?"
},
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
"aUF" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 4;
icon_state = "0-4"
},
/obj/machinery/power/apc{
@@ -27900,7 +27694,7 @@
/obj/effect/floor_decal/corner/blue/border{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -27946,16 +27740,9 @@
/obj/effect/floor_decal/corner/grey/border{
dir = 4
},
-/obj/machinery/light_switch{
+/obj/structure/extinguisher_cabinet{
dir = 8;
-<<<<<<< HEAD
- pixel_x = 24
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
- icon_state = "extinguisher_closed";
pixel_x = 30
-=======
- pixel_x = 30
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -27971,13 +27758,14 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aUT" = (
/turf/simulated/wall/r_wall,
/area/maintenance/lower/atmos)
"aUU" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -28057,7 +27845,7 @@
/obj/effect/floor_decal/corner/white/border{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -28100,65 +27888,31 @@
/area/crew_quarters/visitor_laundry)
"aVe" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-<<<<<<< HEAD
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-=======
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
dir = 4
},
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVf" = (
/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVg" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
-<<<<<<< HEAD
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aVh" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aVh" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
-=======
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
dir = 8
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -28289,7 +28043,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -28314,7 +28068,8 @@
name = "east bump";
pixel_x = 28
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/tiled,
@@ -28330,7 +28085,7 @@
/obj/machinery/door/airlock{
name = "Unisex Showers"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28344,7 +28099,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28365,7 +28120,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28385,7 +28140,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28403,7 +28158,7 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVA" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28412,33 +28167,19 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-<<<<<<< HEAD
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-=======
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
dir = 4
},
-<<<<<<< HEAD
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-=======
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVB" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -28449,8 +28190,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-<<<<<<< HEAD
-=======
/obj/effect/floor_decal/corner/grey{
dir = 5
},
@@ -28460,56 +28199,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVC" = (
-<<<<<<< HEAD
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-<<<<<<< HEAD
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-=======
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-=======
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
dir = 8
},
-<<<<<<< HEAD
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-=======
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVD" = (
@@ -28593,7 +28295,7 @@
/area/crew_quarters/showers)
"aVL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -28643,7 +28345,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -28677,66 +28379,36 @@
"aVP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-<<<<<<< HEAD
-=======
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-<<<<<<< HEAD
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-=======
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
dir = 4
},
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-<<<<<<< HEAD
-||||||| parent of d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-=======
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
dir = 8
},
->>>>>>> d6307e55b9... Merge pull request #9465 from KillianKirilenko/kk-misc2
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVS" = (
@@ -28804,7 +28476,7 @@
/area/vacant/vacant_bar)
"aWa" = (
/obj/structure/sink/kitchen{
- pixel_y = 28
+ pixel_y = 20
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
@@ -28863,7 +28535,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -28897,7 +28569,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -28928,45 +28600,6 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/visitor_laundry)
-<<<<<<< HEAD
-"aWo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 8
- },
-/obj/machinery/vending/loadout/costume{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-<<<<<<< HEAD
-"aWp" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-||||||| parent of f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
-=======
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-"aWo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 8
- },
-/obj/machinery/vending/loadout/costume{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
"aWp" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -28978,17 +28611,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
->>>>>>> f19bc87ece... Merge pull request #10230 from TheFurryFeline/TFF-Brig_Flashes
"aWq" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aWr" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aWs" = (
@@ -29085,7 +28723,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/blue/border,
/obj/machinery/light,
-/obj/structure/cable/green,
+/obj/structure/cable/orange,
/obj/machinery/power/apc{
name = "south bump";
pixel_y = -32
@@ -29114,7 +28752,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29188,7 +28826,7 @@
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29207,10 +28845,7 @@
dir = 8
},
/obj/structure/table/standard,
-<<<<<<< HEAD
-=======
/obj/random/paicard,
->>>>>>> 1df6e69b74... Merge pull request #13038 from Very-Soft/teppipai
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aWW" = (
@@ -29220,12 +28855,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -29235,7 +28870,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -29267,6 +28902,9 @@
/obj/effect/floor_decal/corner/grey/bordercorner2{
dir = 9
},
+/obj/machinery/vending/nifsoft_shop{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aWZ" = (
@@ -29279,8 +28917,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 9
},
-<<<<<<< HEAD
-=======
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -29292,7 +28928,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aXa" = (
@@ -29302,6 +28937,11 @@
/obj/item/weapon/storage/laundry_basket,
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/grey/bordercorner2,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aXb" = (
@@ -29311,7 +28951,10 @@
name = "south bump";
pixel_y = -32
},
-/obj/structure/cable/green,
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aXc" = (
@@ -29388,7 +29031,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -29405,7 +29048,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29513,7 +29156,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29536,12 +29179,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29561,7 +29204,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29579,7 +29222,7 @@
dir = 4
},
/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29597,12 +29240,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29629,6 +29272,10 @@
/obj/structure/sign/poster{
dir = 8
},
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
"aXB" = (
@@ -29644,7 +29291,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29678,7 +29325,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -29693,7 +29340,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -29720,19 +29367,25 @@
/obj/machinery/button/remote/airlock{
id = "thehole";
name = "The Hole Bolt Toggle";
- pixel_x = 0;
pixel_y = 26;
req_access = list(63);
specialfunctions = 4
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/lowerhall)
+"aXL" = (
+/obj/structure/closet/crate,
+/obj/random/unidentified_medicine,
+/obj/random/drinkbottle,
+/obj/random/tetheraid,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
"aXM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29743,7 +29396,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29788,7 +29441,7 @@
"aXY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29803,7 +29456,7 @@
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
"aYb" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29837,7 +29490,7 @@
id_tag = "maintdorm3";
name = "Room 3"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29856,7 +29509,7 @@
id_tag = "maintdorm2";
name = "Room 2"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29875,7 +29528,7 @@
id_tag = "maintdorm1";
name = "Room 1"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29918,11 +29571,10 @@
/area/vacant/vacant_bar)
"aYr" = (
/obj/structure/sink{
- pixel_y = 22
+ pixel_y = 20
},
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
},
/turf/simulated/floor/tiled/white,
/area/vacant/vacant_bar)
@@ -29951,7 +29603,7 @@
pixel_y = -4;
specialfunctions = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -29960,11 +29612,10 @@
/area/crew_quarters/sleep/maintDorm3)
"aYv" = (
/obj/structure/sink{
- pixel_y = 22
+ pixel_y = 20
},
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm3)
@@ -29977,11 +29628,10 @@
/area/crew_quarters/sleep/maintDorm2)
"aYz" = (
/obj/structure/sink{
- pixel_y = 22
+ pixel_y = 20
},
/obj/structure/mirror{
- dir = 4;
- pixel_y = 32
+ pixel_y = 38
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm2)
@@ -29999,7 +29649,7 @@
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm1)
"aYF" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
icon_state = "1-4"
@@ -30008,7 +29658,7 @@
/area/maintenance/lower/atmos)
"aYG" = (
/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -30019,12 +29669,12 @@
"aYI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -30040,19 +29690,6 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"aYM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
"aYN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30072,19 +29709,6 @@
},
/turf/simulated/floor/tiled/white,
/area/vacant/vacant_bar)
-"aYR" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/maintDorm3)
"aYT" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -30105,19 +29729,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm2)
-"aZb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
"aZc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30142,13 +29753,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
-"aZh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/white,
-/area/vacant/vacant_bar)
"aZi" = (
/obj/machinery/shower{
dir = 1
@@ -30171,19 +29775,12 @@
name = "west bump";
pixel_x = -28
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d2 = 4;
icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
-"aZl" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light_construct/small,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/maintDorm3)
"aZm" = (
/obj/machinery/shower{
dir = 1
@@ -30202,7 +29799,7 @@
"aZo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -30242,6 +29839,9 @@
/area/crew_quarters/sleep/maintDorm1)
"aZw" = (
/obj/effect/decal/cleanable/blood,
+/obj/structure/sign/painting/library_private{
+ pixel_x = -30
+ },
/turf/simulated/floor/plating,
/area/vacant/vacant_bar)
"aZz" = (
@@ -30329,10 +29929,12 @@
"aZY" = (
/obj/machinery/light,
/obj/structure/ladder/up,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
+ d1 = 16;
+ d2 = 0;
icon_state = "16-0"
},
-/obj/structure/cable/green,
+/obj/structure/cable/orange,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/vacant/vacant_bar)
@@ -30508,6 +30110,11 @@
name = "Cargo Shop"
},
/obj/machinery/door/firedoor/multi_tile,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/cargostore)
"baY" = (
@@ -30545,16 +30152,6 @@
"bbb" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
-<<<<<<< HEAD
-/turf/simulated/floor/tiled/monofloor{
-||||||| parent of 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/monofloor{
-=======
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -30564,7 +30161,6 @@
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
->>>>>>> 88ccc5c89c... Merge pull request #10952 from Very-Soft/letsnotuserotatedfloors
dir = 8
},
/obj/machinery/door/airlock/multi_tile/glass{
@@ -30620,16 +30216,16 @@
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbh" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbi" = (
/obj/machinery/door/airlock/engineering{
- name = "CargoShop Substation";
+ name = "Surface Services Substation";
req_one_access = list(11,24,50)
},
/obj/machinery/door/firedoor/glass,
@@ -30637,7 +30233,7 @@
icon_state = "4-8"
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbj" = (
/turf/simulated/wall,
/area/maintenance/substation/SurfMedsubstation)
@@ -30659,6 +30255,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbl" = (
@@ -30678,6 +30279,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbm" = (
@@ -30694,6 +30300,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbn" = (
@@ -30745,6 +30356,11 @@
/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbq" = (
@@ -30768,6 +30384,11 @@
/obj/effect/floor_decal/corner/brown/bordercorner2{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbr" = (
@@ -30790,11 +30411,11 @@
icon_state = "0-2"
},
/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - CargoShop";
+ RCon_tag = "Substation - Surface Services";
output_attempt = 0
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbt" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -30826,7 +30447,7 @@
},
/obj/structure/cable,
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbv" = (
/obj/machinery/power/apc{
dir = 4;
@@ -30838,7 +30459,7 @@
icon_state = "0-2"
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbw" = (
/obj/structure/table/rack,
/obj/random/maintenance/cargo,
@@ -30848,7 +30469,7 @@
/area/maintenance/lower/mining_eva)
"bbx" = (
/obj/machinery/power/breakerbox/activated{
- RCon_tag = "SurfMed Substation Bypass"
+ RCon_tag = "Medical Substation Bypass"
},
/turf/simulated/floor,
/area/maintenance/substation/SurfMedsubstation)
@@ -30900,11 +30521,11 @@
icon_state = "0-4"
},
/obj/machinery/power/sensor{
- name = "Powernet Sensor - CargoShop Subgrid";
- name_tag = "CargoShop Subgrid"
+ name = "Powernet Sensor - Surface Services Subgrid";
+ name_tag = "Surface Services Subgrid"
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbD" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
@@ -30918,7 +30539,7 @@
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbE" = (
/obj/structure/cable/green{
d1 = 1;
@@ -30935,7 +30556,7 @@
pixel_y = -25
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbF" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -30944,11 +30565,11 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
- name = "CargoShop Substation";
+ name = "Surface Services Substation";
req_one_access = list(11,24,50)
},
/turf/simulated/floor,
-/area/maintenance/substation/cargostoresubstation)
+/area/maintenance/substation/surfaceservicesubstation)
"bbG" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment,
@@ -30980,7 +30601,12 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 9
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ external_pressure_bound = 101.3;
+ external_pressure_bound_default = 101.3;
+ pressure_checks = 1;
+ pressure_checks_default = 1
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
"bbJ" = (
@@ -30990,7 +30616,7 @@
icon_state = "0-2"
},
/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - SurfMed";
+ RCon_tag = "Substation - Medical";
output_attempt = 0
},
/turf/simulated/floor,
@@ -31068,8 +30694,9 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"bbQ" = (
-/turf/simulated/mineral,
-/area/tether/surfacebase/surface_one_hall)
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/tether/elevator)
"bbR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31144,8 +30771,8 @@
icon_state = "0-4"
},
/obj/machinery/power/sensor{
- name = "Powernet Sensor - SurfMed Subgrid";
- name_tag = "SurfMed Subgrid"
+ name = "Powernet Sensor - Medical Subgrid";
+ name_tag = "Medical Subgrid"
},
/obj/machinery/alarm{
dir = 1;
@@ -31189,8 +30816,7 @@
/obj/structure/disposalpipe/trunk{
dir = 2
},
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/plasticflaps,
+/obj/structure/disposaloutlet,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -31244,6 +30870,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
+ nightshift_setting = 2;
pixel_x = 24
},
/obj/structure/cable/green{
@@ -31282,15 +30909,12 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
-<<<<<<< HEAD
-=======
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"bcl" = (
@@ -31298,9 +30922,14 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"bcn" = (
/obj/structure/closet/crate,
/obj/random/tool,
@@ -31318,41 +30947,48 @@
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"bcq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance/engi{
+ id_tag = "elevescapel";
+ name = "Elevator Maintenance"
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/remote/airlock{
+ id = "elevescapel";
+ name = "elevator escape button";
+ pixel_y = 32
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'CRUSH WARNING'.";
+ name = "\improper CRUSH WARNING";
+ pixel_y = 32
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcv" = (
/obj/structure/disposalpipe/up{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcz" = (
@@ -31360,9 +30996,6 @@
dir = 4;
pixel_x = -22
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
-/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcA" = (
@@ -31373,19 +31006,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-"bcC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/unidentified_medicine,
-/obj/random/firstaid,
-/obj/random/drinkbottle,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcD" = (
@@ -31434,15 +31058,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 10
},
-<<<<<<< HEAD
-=======
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"bcG" = (
@@ -31538,6 +31159,7 @@
dir = 8;
pixel_x = 24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"bcQ" = (
@@ -31744,6 +31366,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdn" = (
@@ -31829,6 +31454,10 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdv" = (
@@ -32044,9 +31673,28 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"biK" = (
-/obj/structure/barricade/cutout/mime,
+/obj/structure/table/alien/blue{
+ desc = "Is this imported?";
+ name = "obscure table"
+ },
+/obj/item/toy/figure/mime,
+/obj/item/weapon/pen/crayon/marker/mime,
+/obj/item/weapon/pen/crayon/mime,
+/obj/item/weapon/cartridge/mime,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
+"bmK" = (
+/obj/structure/closet/walllocker_double{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/turf/simulated/floor/tiled,
+/area/storage/art)
"bqI" = (
/turf/simulated/wall,
/area/tether/surfacebase/security/brig/storage)
@@ -32064,12 +31712,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -32131,6 +31779,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
+"bHR" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"bJz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32157,7 +31814,7 @@
dir = 4
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -32221,11 +31878,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -32337,7 +31989,7 @@
id_tag = null;
name = "Laundry"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -32397,18 +32049,6 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-"cwS" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
"ctE" = (
/obj/structure/table/rack,
/obj/item/weapon/tank/emergency,
@@ -32428,10 +32068,15 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"cAR" = (
/turf/simulated/floor/looking_glass/center,
/area/looking_glass/lg_1)
+"cBJ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"cCx" = (
/obj/effect/landmark/vermin,
/turf/simulated/floor/tiled,
@@ -32458,7 +32103,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -32498,8 +32143,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-<<<<<<< HEAD
-=======
"cKo" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32521,7 +32164,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
"cNL" = (
/obj/machinery/light/small{
dir = 8
@@ -32653,6 +32295,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/weaponsrange)
+"dhS" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"diq" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32714,6 +32365,18 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/hideyhole)
+"duN" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"dvU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -32846,6 +32509,12 @@
name = "Clown's Office";
req_one_access = list(136)
},
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
"dPC" = (
@@ -32858,6 +32527,22 @@
/obj/item/weapon/mop,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"dQn" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"dSg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -32891,7 +32576,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
icon_state = "2-8"
@@ -32960,12 +32645,23 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"emK" = (
-/mob/living/simple_mob/animal/passive/mimepet,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/simple_mob/animal/passive/mimepet,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
+"eoh" = (
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm1)
"eow" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -32984,7 +32680,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -33011,7 +32707,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -33143,9 +32839,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/brig)
"eQz" = (
@@ -33167,7 +32860,6 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 8
},
-/obj/machinery/computer/timeclock/premade/west,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
@@ -33191,6 +32883,23 @@
dir = 10
},
/area/looking_glass/lg_1)
+"fgm" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall,
+/area/tether/surfacebase/funny/mimeoffice)
+"fiP" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian West Substation";
+ req_one_access = list(11)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"fkx" = (
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
@@ -33213,17 +32922,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-"fvH" = (
-/obj/machinery/door/airlock{
- name = "Brig Restroom"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/freezer,
-/area/tether/surfacebase/security/brig/bathroom)
"fvL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/bcarpet,
@@ -33248,6 +32947,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/hideyhole)
"fAW" = (
@@ -33303,30 +33003,18 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor,
/area/tether/surfacebase/security/gasstorage)
-"fFb" = (
-/obj/machinery/fitness/punching_bag/clown,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/funny/clownoffice)
-"fFT" = (
-/obj/item/clothing/mask/gas/sexyclown,
-/obj/item/toy/figure/clown,
-/obj/item/clothing/under/sexyclown,
-/obj/item/clothing/shoes/clown_shoes,
-/obj/item/weapon/bedsheet/clown,
-/obj/item/weapon/cartridge/clown,
-/obj/item/weapon/stamp/clown,
-/obj/item/weapon/storage/backpack/clown,
-/obj/item/weapon/bananapeel,
-/obj/item/weapon/reagent_containers/food/snacks/pie,
-/obj/item/weapon/pen/crayon/marker/rainbow,
-/obj/item/weapon/pen/crayon/rainbow,
-/obj/item/clothing/mask/emotions,
-/obj/structure/closet/secure_closet{
- desc = "Where the Clown keeps their hooliganisms.";
- name = "funny locker";
- req_one_access = list(136)
+"fDO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet/gaycarpet,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
+"fFb" = (
+/obj/machinery/vending/wardrobe/clowndrobe,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
"fKm" = (
/obj/machinery/firealarm{
@@ -33339,12 +33027,7 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
"fLB" = (
@@ -33360,8 +33043,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/lino,
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"fOy" = (
/obj/machinery/shower{
@@ -33392,6 +33075,20 @@
/obj/item/weapon/storage/belt/fannypack/red,
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
+"fSR" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -25
+ },
+/obj/structure/cable/cyan,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
+"fVv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/engineering/atmos_intake)
"fVG" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -33424,6 +33121,42 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/weaponsrange)
+"ggX" = (
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/structure/easel,
+/turf/simulated/floor/tiled,
+/area/storage/art)
"ghg" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
@@ -33434,16 +33167,18 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
+/obj/structure/cable/orange{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -33509,7 +33244,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -33548,6 +33283,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/weaponsrange)
+"gnH" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"gnW" = (
/obj/machinery/door/airlock/glass_security{
id_tag = "briginner";
@@ -33678,8 +33423,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-<<<<<<< HEAD
-=======
"gzO" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -33692,7 +33435,14 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
+"gAi" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"gAn" = (
/obj/structure/cable/green{
d1 = 1;
@@ -33785,6 +33535,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
+"gLZ" = (
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
+"gQH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/visitor_laundry)
"gVe" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -33834,10 +33594,37 @@
dir = 9
},
/area/looking_glass/lg_1)
+"haf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
"haw" = (
/obj/machinery/light/small{
dir = 8
},
+/obj/structure/railing{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"haz" = (
@@ -33953,6 +33740,21 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"hxK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/processing)
"hzr" = (
/obj/machinery/light/bigfloorlamp,
/turf/simulated/floor/grass,
@@ -33970,6 +33772,10 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_x = 32;
+ pixel_y = -2
+ },
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"hDd" = (
@@ -33994,6 +33800,38 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/weaponsrange)
+"hDQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
+"hFn" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
"hFq" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -34018,6 +33856,35 @@
/obj/item/toy/syndicateballoon,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
+"hLn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
"hMu" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
@@ -34103,8 +33970,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-<<<<<<< HEAD
-=======
"hTk" = (
/obj/structure/table/standard{
name = "plastic table frame"
@@ -34117,7 +33982,6 @@
/obj/random/paicard,
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
->>>>>>> 1df6e69b74... Merge pull request #13038 from Very-Soft/teppipai
"hTw" = (
/obj/structure/cable/green{
d1 = 1;
@@ -34146,7 +34010,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -34155,10 +34019,6 @@
/area/tether/surfacebase/surface_one_hall)
"hTQ" = (
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -34229,25 +34089,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-<<<<<<< HEAD
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-"iee" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
"idk" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 22
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -34257,6 +34099,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/alarm{
+ alarm_id = "pen_nine";
+ breach_detection = 0;
+ dir = 1;
+ pixel_y = -22
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
"iee" = (
@@ -34268,18 +34116,37 @@
/obj/effect/floor_decal/corner/grey/border{
dir = 1
},
-<<<<<<< HEAD
-=======
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
+"iet" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
"igw" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
@@ -34363,6 +34230,12 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
"iue" = (
@@ -34370,6 +34243,18 @@
dir = 1
},
/area/looking_glass/lg_1)
+"iwg" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/surfacebase/outside/outside1)
"iwE" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -34442,6 +34327,36 @@
"iKy" = (
/turf/simulated/wall/r_wall,
/area/maintenance/lower/mining_eva)
+"iOk" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "atmos_airlock_outer";
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
+"iTb" = (
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "atmos_airlock_inner";
+ locked = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
"iUF" = (
/obj/structure/table/steel,
/obj/machinery/alarm{
@@ -34451,7 +34366,7 @@
/turf/simulated/floor/tiled/freezer,
/area/tether/surfacebase/security/brig/bathroom)
"iWa" = (
-/obj/structure/bed/chair/bar_stool,
+/obj/machinery/vending/wardrobe/mimedrobe,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
"iWx" = (
@@ -34532,7 +34447,7 @@
dir = 1;
pixel_y = -25
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -34549,9 +34464,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"jnN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -34564,7 +34476,10 @@
/obj/structure/table/standard{
name = "plastic table frame"
},
-/obj/item/device/flashlight/lamp/green,
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/item/device/flashlight/lamp/clown,
/turf/simulated/floor/carpet/gaycarpet,
/area/tether/surfacebase/funny/clownoffice)
"jrh" = (
@@ -34632,7 +34547,7 @@
/area/crew_quarters/visitor_laundry)
"jCv" = (
/obj/structure/bed/chair/wood,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"jCD" = (
/obj/machinery/door/airlock/glass_security{
@@ -34682,6 +34597,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"jGM" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"jIc" = (
/obj/structure/railing{
dir = 4
@@ -34704,6 +34634,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
+"jMx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/processing)
"jOI" = (
/turf/simulated/wall{
can_open = 1
@@ -34771,6 +34713,11 @@
/obj/structure/cable/green{
icon_state = "0-4"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/carpet/gaycarpet,
/area/tether/surfacebase/funny/clownoffice)
"jYP" = (
@@ -34807,6 +34754,19 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/visitor_laundry)
+"kcJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "atmos_airlock_scrubber"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
"kdi" = (
/obj/structure/cable/green{
d1 = 1;
@@ -34846,7 +34806,7 @@
/area/tether/surfacebase/security/lowerhall)
"kgk" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -34889,25 +34849,24 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
"ksA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"ksK" = (
/obj/structure/railing,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
-<<<<<<< HEAD
-=======
"ktr" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -34921,7 +34880,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
"kuB" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -35060,7 +35018,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -35112,6 +35070,25 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"kGQ" = (
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/surfacebase/outside/outside1)
+"kJP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
"kKl" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -35131,6 +35108,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
+/obj/machinery/computer/timeclock/premade/west,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"kMG" = (
@@ -35144,7 +35122,7 @@
/obj/machinery/door/airlock/glass{
name = "Locker Room"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -35168,7 +35146,7 @@
dir = 10
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
@@ -35187,29 +35165,24 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-"laR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"kYx" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "atmos_airlock_pump"
},
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey/bordercorner{
- dir = 1
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
+"laI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
+/area/hallway/lower/first_west)
"laR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -35219,20 +35192,14 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"lbd" = (
-<<<<<<< HEAD
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/plating,
-/area/maintenance/lowmedbaymaint)
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-=======
/obj/effect/floor_decal/borderfloorwhite/corner,
/obj/effect/floor_decal/corner/paleblue/bordercorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
+ dir = 6
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
"lbu" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -35260,7 +35227,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -35297,6 +35264,10 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
+"lgZ" = (
+/obj/structure/sign/painting/public,
+/turf/simulated/wall,
+/area/tether/surfacebase/surface_one_hall)
"lhM" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
@@ -35305,6 +35276,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
+"ljI" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/lower/atmos)
"lma" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -35329,6 +35306,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"lop" = (
+/obj/machinery/media/jukebox,
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"lpK" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -35415,25 +35396,6 @@
/obj/machinery/holoposter,
/turf/simulated/wall,
/area/hallway/lower/first_west)
-"lBv" = (
-/obj/machinery/door/airlock/maintenance/medical{
- id_tag = "autor";
- name = "Auto-Resleeving";
- req_access = list(5)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/autoresleeving)
"lBO" = (
/obj/structure/cable{
d1 = 1;
@@ -35456,6 +35418,7 @@
/obj/machinery/alarm{
pixel_y = 25
},
+/obj/item/toy/figure/clown,
/turf/simulated/floor/carpet/gaycarpet,
/area/tether/surfacebase/funny/clownoffice)
"lDW" = (
@@ -35479,12 +35442,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-"lEA" = (
-/turf/simulated/wall,
-/area/maintenance/engineering/atmos/airlock/gas)
-=======
"lEA" = (
/turf/simulated/wall,
/area/maintenance/engineering/atmos/airlock/gas)
@@ -35496,7 +35453,6 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lowmedbaymaint)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"lIj" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
@@ -35604,11 +35560,9 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/autoresleeving)
"lQu" = (
@@ -35716,6 +35670,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
+"lWU" = (
+/obj/structure/closet/crate/plastic,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/hardstorage)
"lXE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -35724,6 +35685,9 @@
/area/tether/surfacebase/funny/hideyhole)
"lZU" = (
/obj/structure/sign/poster,
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"meS" = (
@@ -35791,7 +35755,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -35809,8 +35773,11 @@
/area/tether/surfacebase/tram)
"mtL" = (
/obj/structure/sign/poster,
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
+"mut" = (
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"mvl" = (
/obj/machinery/light{
dir = 4
@@ -35847,6 +35814,20 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
+"mxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"mxi" = (
/obj/structure/table/alien/blue{
desc = "Is this imported?";
@@ -35912,6 +35893,10 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 6
},
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
"mGP" = (
@@ -35956,7 +35941,7 @@
pixel_y = -30
},
/obj/effect/landmark/tram,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -35980,7 +35965,7 @@
/area/maintenance/lower/vacant_site)
"mSz" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -36058,7 +36043,7 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 9
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -36093,8 +36078,24 @@
name = "Medbay Substation";
req_one_access = list(11,24,5)
},
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/substation/SurfMedsubstation)
+"ncw" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"ndH" = (
/obj/structure/cable/green{
d1 = 1;
@@ -36143,20 +36144,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
-<<<<<<< HEAD
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-=======
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -36199,6 +36186,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
"nlT" = (
@@ -36213,10 +36201,8 @@
name = "Mime's Office";
req_one_access = list(138)
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/mimeoffice)
@@ -36241,6 +36227,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
+ nightshift_setting = 2;
pixel_x = -28
},
/obj/effect/floor_decal/industrial/warning{
@@ -36256,7 +36243,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/weaponsrange)
"nsp" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -36307,6 +36294,9 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/weaponsrange)
+"nAK" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/engineering/atmos/airlock/gas)
"nBm" = (
/obj/structure/railing{
dir = 4
@@ -36355,6 +36345,7 @@
"nID" = (
/obj/machinery/power/apc{
name = "south bump";
+ nightshift_setting = 2;
pixel_y = -32
},
/obj/structure/cable/green,
@@ -36366,15 +36357,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-"nKz" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "atrium"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/vacant_site)
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-=======
"nLm" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -36392,7 +36374,6 @@
/obj/item/weapon/virusdish/random,
/turf/simulated/floor/tiled/white,
/area/medical/virology)
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
"nMH" = (
/obj/structure/closet{
desc = "Dents and old flaky paint blanket this old storage unit.";
@@ -36428,24 +36409,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
-<<<<<<< HEAD
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-"nTC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey{
- dir = 5
- },
-/obj/effect/floor_decal/corner/grey{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
"nRK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -36470,7 +36433,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
"nUG" = (
/obj/structure/table/rack,
/obj/item/weapon/tool/prybar/red{
@@ -36485,11 +36447,6 @@
/area/maintenance/lower/trash_pit)
"nZj" = (
/obj/structure/undies_wardrobe,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
"ocx" = (
@@ -36536,6 +36493,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"ogh" = (
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ external_pressure_bound = 101.3;
+ external_pressure_bound_default = 101.3;
+ pressure_checks = 1;
+ pressure_checks_default = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"ohi" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
@@ -36549,12 +36515,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -36564,6 +36530,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"ojM" = (
@@ -36577,6 +36546,11 @@
},
/obj/item/clothing/mask/smokable/pipe/cobpipe,
/obj/item/weapon/flame/lighter/zippo/ironic,
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/item/weapon/reagent_containers/food/snacks/pie,
+/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
"okO" = (
@@ -36588,10 +36562,12 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
"okP" = (
-/obj/structure/railing{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/random/maintenance/cargo,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"oli" = (
@@ -36606,6 +36582,15 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"omy" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/vacant_site)
"oox" = (
/obj/item/device/radio/intercom{
pixel_y = -24
@@ -36741,6 +36726,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhall)
+"owW" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/engineering/atmos/airlock)
+"oxb" = (
+/obj/structure/sign/fire{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
"ozx" = (
/obj/structure/sink{
dir = 4;
@@ -36755,6 +36750,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"oGO" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
"oId" = (
/obj/structure/closet{
desc = "Dents and old flaky paint blanket this old storage unit.";
@@ -36764,6 +36766,14 @@
/obj/random/plushie,
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
+"oJY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"oKn" = (
/turf/simulated/mineral,
/area/tether/surfacebase/funny/clownoffice)
@@ -36777,7 +36787,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -36793,8 +36803,8 @@
name = "obscure table"
},
/obj/random/action_figure,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/sign/painting/public{
+ pixel_y = 30
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
@@ -36802,6 +36812,13 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/item/weapon/pen/crayon/marker/rainbow,
+/obj/item/weapon/pen/crayon/rainbow,
+/obj/item/weapon/stamp/clown,
+/obj/item/weapon/cartridge/clown,
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
/turf/simulated/floor/carpet/gaycarpet,
/area/tether/surfacebase/funny/clownoffice)
"oPH" = (
@@ -36859,12 +36876,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"paJ" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/tram)
"paY" = (
/obj/structure/cable/green{
d1 = 4;
@@ -36929,8 +36940,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-=======
"ppS" = (
/obj/effect/landmark/vermin,
/turf/simulated/floor/tiled,
@@ -36939,7 +36948,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
/turf/simulated/floor/plating,
/area/maintenance/engineering/atmos/airlock/gas)
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
"ptv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
dir = 4
@@ -36949,19 +36957,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-||||||| parent of bb3cfe95f0... Merge pull request #10765 from Very-Soft/messeswithstuff
-"pud" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/crew_quarters/visitor_laundry)
-=======
"pud" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/cable/orange{
@@ -36986,7 +36981,6 @@
/obj/structure/table/standard,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> bb3cfe95f0... Merge pull request #10765 from Very-Soft/messeswithstuff
"pyD" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Mining Maintenance Access"
@@ -36998,8 +36992,6 @@
"pCj" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-=======
"pDY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -37011,8 +37003,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/mouse_hole_spawner{
- dir = 1
+/obj/machinery/station_map{
+ pixel_y = 32
+ },
+/obj/machinery/station_map{
+ pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
@@ -37025,7 +37020,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"pIG" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -37033,6 +37027,7 @@
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"pKE" = (
@@ -37049,10 +37044,17 @@
"pKR" = (
/obj/random/junk,
/obj/random/junk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ alarm_id = "pen_nine";
+ breach_detection = 0;
+ dir = 1;
+ pixel_y = -22
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
-<<<<<<< HEAD
-=======
"pMd" = (
/obj/effect/landmark/vermin,
/turf/simulated/floor/grass,
@@ -37073,7 +37075,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
"pUI" = (
/obj/structure/railing{
dir = 1
@@ -37088,6 +37089,11 @@
dir = 1;
pixel_y = -22
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"pZb" = (
@@ -37111,6 +37117,19 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
+"qde" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 30
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "atmos_airlock_scrubber"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
"qfJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -37120,6 +37139,12 @@
/obj/effect/landmark/tram,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"qhg" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"qhk" = (
/obj/structure/cable/green{
d1 = 4;
@@ -37141,7 +37166,7 @@
/turf/simulated/floor/plating,
/area/maintenance/lowmedbaymaint)
"qhq" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -37154,6 +37179,9 @@
"qhr" = (
/obj/random/junk,
/obj/random/maintenance/cargo,
+/obj/structure/railing{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"qhs" = (
@@ -37208,6 +37236,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"qpt" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"qsl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -37223,15 +37255,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/lowerhall)
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-"qtU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/atmos/airlock/gas)
-=======
"qtC" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -37256,7 +37279,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/atmos/airlock/gas)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"qwm" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -37294,25 +37316,20 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"qCD" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/grey/border,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"qDR" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/turf/simulated/wall,
-<<<<<<< HEAD
-/area/maintenance/substation/cargostoresubstation)
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-/area/maintenance/substation/surfaceservicesubstation)
-"qEW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/funny/clownoffice)
-=======
/area/maintenance/substation/surfaceservicesubstation)
"qEW" = (
/obj/structure/cable/green{
@@ -37332,9 +37349,9 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lowmedbaymaint)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"qJl" = (
/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"qJT" = (
@@ -37403,7 +37420,7 @@
/obj/structure/table/standard{
name = "plastic table frame"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37419,6 +37436,10 @@
/obj/structure/railing{
dir = 1
},
+/obj/random/maintenance/cargo,
+/obj/structure/railing{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"qPR" = (
@@ -37452,6 +37473,12 @@
},
/turf/simulated/floor,
/area/tether/surfacebase/security/gasstorage)
+"qQo" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
"qRI" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -37464,7 +37491,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37475,20 +37502,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"qSJ" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lowmedbaymaint)
"qVi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -37558,7 +37586,7 @@
dir = 4
},
/obj/effect/landmark/tram,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37568,8 +37596,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-<<<<<<< HEAD
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
"rhc" = (
/obj/structure/cable/green{
d1 = 1;
@@ -37578,15 +37604,23 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
-=======
-"rhc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"ril" = (
+/obj/machinery/embedded_controller/radio/airlock/phoron{
+ id_tag = "atmos_airlock";
+ pixel_x = 25;
+ pixel_y = 25
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/vacant_site)
+/obj/machinery/airlock_sensor/phoron{
+ id_tag = "atmos_airlock_sensor";
+ pixel_x = 25;
+ pixel_y = 34
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
"rjh" = (
/obj/effect/floor_decal/emblem/nt1,
/turf/simulated/floor/tiled,
@@ -37597,7 +37631,13 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
+"rnA" = (
+/obj/structure/table/woodentable,
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"rse" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/mimedouble,
@@ -37615,8 +37655,21 @@
name = "Mime's Office";
req_one_access = list(138)
},
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/mimeoffice)
+"rwD" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"rxq" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -37644,6 +37697,9 @@
"rxD" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/clowndouble,
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
/turf/simulated/floor/carpet/gaycarpet,
/area/tether/surfacebase/funny/clownoffice)
"rxG" = (
@@ -37712,6 +37768,9 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
+"rJv" = (
+/turf/simulated/floor/plating,
+/area/maintenance/lower/solars)
"rNu" = (
/obj/random/cutout,
/turf/simulated/floor/plating,
@@ -37752,7 +37811,7 @@
},
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37791,7 +37850,7 @@
dir = 1;
icon_state = "pipe-j2"
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -37843,7 +37902,7 @@
},
/obj/machinery/door/firedoor/glass,
/obj/machinery/cryopod/robot/door/tram,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37860,7 +37919,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -37913,7 +37972,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -37930,7 +37989,7 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig/storage)
"sya" = (
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -37939,7 +37998,7 @@
dir = 4;
pixel_x = -30
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/visitor_dining)
"syt" = (
/obj/effect/floor_decal/rust,
@@ -37974,6 +38033,18 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"sBl" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Civ West";
+ output_attempt = 0
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"sEz" = (
/obj/structure/disposalpipe/junction{
dir = 1
@@ -37981,7 +38052,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
@@ -37991,17 +38062,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-"sHK" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/tether/surfacebase/funny/mimeoffice)
-=======
"sGh" = (
/obj/structure/table/rack/shelf,
/obj/random/maintenance/medical,
@@ -38017,7 +38077,6 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"sHO" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
@@ -38029,6 +38088,17 @@
dir = 6
},
/area/looking_glass/lg_1)
+"sJP" = (
+/obj/structure/cable/orange{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/structure/cable/orange,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/crew_quarters/visitor_laundry)
"sJX" = (
/obj/structure/catwalk,
/obj/structure/closet,
@@ -38064,8 +38134,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-<<<<<<< HEAD
-=======
"sLN" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -38087,12 +38155,19 @@
},
/turf/simulated/wall,
/area/maintenance/substation/SurfMedsubstation)
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
"sQB" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"sVe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/tether/surfacebase/funny/clownoffice)
"sVX" = (
/obj/structure/table/steel,
/obj/item/weapon/material/twohanded/fireaxe/foam,
@@ -38108,6 +38183,33 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig/storage)
+"sXO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
"sYi" = (
/obj/effect/decal/remains/human,
/turf/simulated/floor/plating,
@@ -38153,9 +38255,26 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
+"tnF" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/vacant_site)
"trV" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/brig/storage)
+"ttT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/engineering/atmos/airlock)
"tvk" = (
/obj/structure/cable{
d1 = 1;
@@ -38183,6 +38302,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"twO" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "atmos_airlock_scrubber"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
"txZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -38251,12 +38380,53 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/mining_eva)
+"tGh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
"tHb" = (
/obj/machinery/light/small{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
+"tIG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Atmospherics";
+ req_access = list(24)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"tLx" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -38266,7 +38436,7 @@
dir = 4
},
/obj/effect/landmark/tram,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -38287,7 +38457,6 @@
/obj/structure/railing{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"tNJ" = (
@@ -38306,7 +38475,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -38354,15 +38523,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/lowernorthhall)
-"tRD" = (
-/obj/machinery/alarm{
- alarm_id = "pen_nine";
- breach_detection = 0;
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
"tRJ" = (
/obj/effect/floor_decal/spline/plain{
dir = 10
@@ -38407,7 +38567,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -38513,8 +38673,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
-<<<<<<< HEAD
-=======
"uku" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -38548,7 +38706,6 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/engineering/atmos/airlock)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
"uqH" = (
/obj/structure/railing{
dir = 4
@@ -38601,6 +38758,32 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
+"uxT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/atmos,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/processing)
+"uyf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mouse_hole_spawner,
+/turf/simulated/floor/tiled,
+/area/hallway/lower/first_west)
"uzs" = (
/obj/machinery/light{
dir = 8
@@ -38611,15 +38794,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-"uAv" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/tether/surfacebase/security/brig/bathroom)
"uAA" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/mauve/bordercorner,
@@ -38649,7 +38823,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -38725,9 +38899,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"uOe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -38739,6 +38910,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"uOA" = (
@@ -38750,6 +38922,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/weaponsrange)
+"uOQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"uUP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -38757,7 +38935,7 @@
dir = 4
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
@@ -38811,9 +38989,7 @@
/obj/machinery/power/apc{
pixel_y = -25
},
-/obj/structure/cable{
- icon_state = "0-4"
- },
+/obj/structure/cable/green,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
"vlJ" = (
@@ -38889,20 +39065,7 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"vCn" = (
-/obj/item/weapon/pen/crayon/mime,
-/obj/item/weapon/pen/crayon/marker/mime,
-/obj/item/weapon/cartridge/mime,
-/obj/item/weapon/bedsheet/mime,
-/obj/item/toy/figure/mime,
-/obj/item/clothing/under/sexymime,
-/obj/item/clothing/shoes/mime,
-/obj/item/clothing/mask/gas/sexymime,
-/obj/item/clothing/head/soft/mime,
-/obj/structure/closet/secure_closet{
- desc = "...";
- name = "silent storage";
- req_one_access = list(138)
- },
+/obj/structure/barricade/cutout/mime,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
"vDb" = (
@@ -38920,7 +39083,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
@@ -39018,17 +39181,19 @@
"waR" = (
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/weaponsrange)
-<<<<<<< HEAD
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-"whV" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+"wcz" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "atmos_airlock_scrubber"
},
-/turf/simulated/wall,
-/area/maintenance/substation/surfaceservicesubstation)
-=======
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/sign/fire{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock)
"wek" = (
/obj/structure/bed/chair/wood{
dir = 4
@@ -39047,35 +39212,6 @@
},
/turf/simulated/wall,
/area/maintenance/substation/surfaceservicesubstation)
-<<<<<<< HEAD
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-"wjo" = (
-/obj/effect/map_helper/airlock/door/ext_door,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "atmos_airlock_outer";
- locked = 1
- },
-/obj/machinery/access_button/airlock_exterior{
- dir = 8;
- master_tag = "atmos_airlock";
- pixel_x = -8;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/engineering/atmos/airlock)
-=======
"wjd" = (
/obj/effect/floor_decal/rust,
/obj/machinery/power/apc{
@@ -39113,7 +39249,6 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/engineering/atmos/airlock)
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
"wjq" = (
/obj/structure/bed/chair{
dir = 4
@@ -39235,15 +39370,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-<<<<<<< HEAD
-=======
"wxk" = (
/obj/machinery/atmospherics/binary/passive_gate/on{
dir = 4
@@ -39268,7 +39401,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
"wzA" = (
/obj/structure/catwalk,
/obj/machinery/alarm{
@@ -39302,6 +39434,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"wEk" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue2,
+/area/crew_quarters/visitor_dining)
"wOK" = (
/obj/effect/floor_decal/rust,
/obj/machinery/light/small{
@@ -39321,6 +39459,9 @@
name = "obscure table"
},
/obj/random/mre,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/simulated/floor/carpet/bcarpet,
/area/tether/surfacebase/funny/mimeoffice)
"wUW" = (
@@ -39386,19 +39527,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
-<<<<<<< HEAD
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-"wXW" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/tether/surfacebase/tram;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_station";
- name = "Tether Surface Base"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/tram)
-=======
"wWK" = (
/obj/structure/table/rack,
/obj/fiftyspawner/wood,
@@ -39413,7 +39541,21 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/tether/surfacebase/tram)
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
+"xdA" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
+"xdD" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"xdV" = (
/obj/structure/cable/green{
d1 = 4;
@@ -39464,10 +39606,39 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"xik" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall,
+/area/maintenance/lower/trash_pit)
"xnn" = (
/obj/machinery/holoposter,
/turf/simulated/wall,
/area/crew_quarters/visitor_laundry)
+"xnS" = (
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/visitor_dining)
+"xoT" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civ_west)
"xpP" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -39483,6 +39654,15 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virology)
+"xqZ" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"xts" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -39524,49 +39704,13 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/floor/carpet/gaycarpet,
-/area/tether/surfacebase/funny/clownoffice)
-<<<<<<< HEAD
-||||||| parent of 72b8c0a3ed... Merge pull request #10911 from VOREStation/Arokha/dart
-"xuM" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Civ West Subgrid";
- name_tag = "Civ West Subgrid"
- },
/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/camera/network/engineering,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civ_west)
-"xvK" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/easel,
-/turf/simulated/floor/tiled,
-/area/storage/art)
-"xyI" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/grey/border,
-/obj/structure/table/bench/standard,
-/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-=======
+/turf/simulated/floor/carpet/gaycarpet,
+/area/tether/surfacebase/funny/clownoffice)
"xuM" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
@@ -39613,7 +39757,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
->>>>>>> 72b8c0a3ed... Merge pull request #10911 from VOREStation/Arokha/dart
"xzn" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
@@ -39687,6 +39830,11 @@
/obj/effect/landmark/start{
name = "Clown"
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/clownoffice)
"xSF" = (
@@ -39695,6 +39843,20 @@
/obj/item/toy/bouquet,
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/hideyhole)
+"xTI" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"xVX" = (
/obj/structure/railing{
dir = 8
@@ -39731,6 +39893,18 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/funny/hideyhole)
+"xZB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 4
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"yaA" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
@@ -39780,6 +39954,13 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/brig)
+"ycG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 6
+ },
+/obj/machinery/alarm,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/atmos/airlock/gas)
"yey" = (
/obj/structure/sink{
dir = 8;
@@ -39819,6 +40000,16 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"yiS" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/surfacebase/outside/outside1)
"ylH" = (
/obj/machinery/fitness/punching_bag/clown,
/turf/simulated/floor/carpet/gaycarpet,
@@ -40009,40 +40200,40 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aGD
aaa
aHL
@@ -40152,40 +40343,40 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
aaa
aHL
aHL
@@ -40298,36 +40489,36 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
aHo
aad
aad
@@ -40337,7 +40528,7 @@ aad
aad
aad
aad
-aHL
+aad
aad
aad
aHo
@@ -40442,35 +40633,35 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
+aah
aad
aad
aad
@@ -40568,6 +40759,8 @@ aad
aad
aad
aad
+aah
+aah
aad
aad
aad
@@ -40584,6 +40777,33 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
+aah
aad
aad
aad
@@ -40611,35 +40831,6 @@ aad
aad
aad
aad
-aGF
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aHL
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -40707,6 +40898,14 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -40721,41 +40920,33 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGG
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
+aah
+aah
aad
aad
aad
@@ -40849,10 +41040,18 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
-bcV
aad
aad
aad
@@ -40863,6 +41062,33 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
+aah
+aah
aad
aad
aad
@@ -40895,7 +41121,6 @@ aad
aad
aad
aad
-aGG
aad
aad
aad
@@ -40906,7 +41131,6 @@ aad
aad
aad
aad
-aHL
aad
aad
aad
@@ -40925,45 +41149,6 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-bcV
-=======
-aad
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aad
-aad
-aad
-aad
aaa
"}
(9,1,1) = {"
@@ -40996,6 +41181,21 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+bcV
aad
aad
aad
@@ -41005,47 +41205,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGG
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+baU
+baU
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+yiS
+aah
+aah
aad
aad
aad
@@ -41138,18 +41323,16 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bcV
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41164,6 +41347,33 @@ aad
aad
aad
aad
+baU
+baU
+aah
+baU
+ano
+aah
+baU
+aah
+ano
+baU
+baU
+baU
+ano
+baU
+baU
+baU
+ano
+baU
+baU
+aah
+ano
+aah
+aah
+aAx
+aah
+baU
+baU
aad
aad
aad
@@ -41185,31 +41395,6 @@ aad
aad
aad
aad
-aGG
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aHL
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -41280,6 +41465,17 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41294,43 +41490,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
aGG
-aad
-aad
-aad
+baU
+baU
+baU
aad
aad
aad
@@ -41422,6 +41607,17 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41436,43 +41632,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
aGG
-aad
-aad
-aad
+baU
+baU
+baU
aad
aad
aad
@@ -41564,6 +41749,18 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41578,43 +41775,31 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGH
-aad
-aad
-aad
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+aGG
+baU
+baU
+baU
aad
aad
aad
@@ -41687,6 +41872,7 @@ aad
aad
aad
aad
+bcV
aad
aad
aad
@@ -41705,6 +41891,19 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41717,6 +41916,32 @@ aad
aad
aad
aad
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+aGG
+baU
+baU
+baU
aad
aad
aad
@@ -41730,53 +41955,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41849,6 +42034,18 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41861,6 +42058,33 @@ aad
aad
aad
aad
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+baU
+kGQ
+baU
+baU
+aGG
+baU
+baU
+baU
+baU
aad
aad
aad
@@ -41871,56 +42095,17 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -41991,19 +42176,19 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
ajK
@@ -42011,59 +42196,59 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aGE
-aad
-aad
-aad
-aad
+azs
+aib
+aib
+aib
+aib
+iwg
+iwg
+aAu
+iwg
+iwg
+iwg
+aAs
+iwg
+iwg
+iwg
+aAs
+iwg
+iwg
+iwg
+aAs
+iwg
+iwg
+iwg
+aAs
+iwg
+iwg
+aBu
+baU
+baU
+baU
+baU
aad
ajK
aad
aad
aad
+aah
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42118,45 +42303,6 @@ aad
aad
aad
aad
-bcV
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -42173,6 +42319,19 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42182,31 +42341,57 @@ aad
aGE
aad
aad
+baU
+baU
+aah
+aah
+ano
+aah
+baU
+baU
+ano
+baU
+baU
+baU
+ano
+baU
+baU
+baU
+ano
+baU
+aah
+aah
+ano
+baU
+baU
+baU
+aah
+aah
+aah
+aah
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42277,44 +42462,18 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42324,31 +42483,57 @@ aad
aGE
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+baU
+baU
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42425,39 +42610,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+baU
+baU
+aah
+aah
aad
aad
aad
@@ -42465,33 +42624,59 @@ aad
aad
aGE
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42568,73 +42753,73 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
+baU
+baU
+baU
+baU
+baU
+baU
aad
aad
aad
aad
aad
aGE
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42710,73 +42895,73 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
+baU
+baU
+baU
+baU
+baU
+baU
aad
aad
aad
aad
aad
aGE
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -42863,62 +43048,62 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-auK
-auK
-auK
-auK
-auK
-auK
-auK
-aEQ
-aad
-aad
aGE
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -43005,7 +43190,41 @@ aad
aad
aad
aad
-aad
+aGE
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -43021,46 +43240,12 @@ aah
aah
aah
aah
-auK
-aAs
-aBu
-aCc
-aCc
-aCc
-aCc
-aER
-aib
-aib
-aGI
-aad
-aad
aah
aah
aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -43144,33 +43329,53 @@ aah
aah
aah
aoq
-aoq
-aoq
-aoq
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-auK
aaT
-auK
-auK
-auK
-auK
-auK
-auK
+ayr
+ayr
+aAl
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -43183,26 +43388,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -43286,28 +43471,9 @@ aah
aah
aah
aoq
+abB
aoq
aoq
-aoq
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-auK
-aAu
-auK
aah
aah
aah
@@ -43328,21 +43494,40 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -43428,7 +43613,7 @@ aah
aah
aah
aor
-aoV
+awU
aoV
aqm
aci
@@ -43441,37 +43626,6 @@ aah
aah
aah
aah
-<<<<<<< HEAD
-=======
-ajL
-akV
-bde
-ajT
-ajY
-akb
-akh
-akk
-akq
-akw
-akE
-bdG
-akW
-cCx
-aly
-alN
-amf
-amA
-ajS
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
-aah
-aah
-aah
-aah
-aah
-aah
-auK
-aAu
-auK
aah
aah
aah
@@ -43492,21 +43646,30 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -43611,9 +43774,6 @@ aah
aah
aah
aah
-auK
-abB
-auK
aah
aah
aah
@@ -43634,20 +43794,23 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -43753,9 +43916,6 @@ aah
aah
aah
aah
-auK
-aAu
-auK
aah
aah
aah
@@ -43776,16 +43936,19 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -43895,9 +44058,6 @@ aah
aah
aah
aah
-auK
-aAl
-auK
aah
aah
aah
@@ -43919,14 +44079,17 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -44037,9 +44200,17 @@ agv
agv
agv
agv
-azs
-aAu
-auK
+agv
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44050,7 +44221,6 @@ aah
aah
aah
aah
-aiW
aah
aah
aah
@@ -44061,13 +44231,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -44132,7 +44295,7 @@ aad
aad
aad
aad
-aad
+aah
ajO
akL
akL
@@ -44179,9 +44342,15 @@ ahH
adV
aip
aiJ
-azs
-aaT
-auK
+agv
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44203,12 +44372,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -44273,7 +44436,7 @@ aad
aad
aad
aad
-aad
+aah
aah
ajO
akO
@@ -44321,9 +44484,15 @@ ahO
aij
ais
aiK
-azs
-aAu
-auK
+agv
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44345,12 +44514,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -44414,8 +44577,8 @@ aad
aad
aad
aad
-aad
-aad
+aah
+aah
aah
ajO
ajO
@@ -44463,9 +44626,14 @@ ahP
ahP
aiH
aiL
-azs
-aAu
-auK
+agv
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44487,11 +44655,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -44554,10 +44717,10 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
aah
aah
ajO
@@ -44605,89 +44768,17 @@ ahQ
ain
aiI
aiM
-azs
-aAu
-auK
-aah
-aah
-aah
-aah
-<<<<<<< HEAD
-=======
-akB
-akB
-akB
-waR
-dCs
-waR
-vhI
-waR
-nwH
-eFp
-bOd
-lSW
-uiK
-ajM
-bcY
-bdn
-bdn
-bdB
-akS
-ald
-alo
-ahl
-ahl
-ami
-amC
-atH
-akR
-atG
-atH
-atH
-ahM
-nBZ
-aju
-aoE
-apl
-apl
-apl
-apl
-apl
-apo
-apl
-aqy
-apl
-apl
-auK
-rJv
-rJv
-rJv
-avM
-aws
-abN
-abW
-acp
-afe
-aeR
-aeR
-agG
-aha
-ahy
-aiB
-ajm
-abN
-kyE
-aGX
-adn
-adn
-adn
-aCK
-aKa
-aKL
-aKL
-aKL
-aKL
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
+agv
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44705,10 +44796,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -44771,10 +44858,10 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44823,18 +44910,21 @@ agv
agv
agv
agv
-azs
-aAx
-auK
-aBv
-aBv
-aBv
-aBv
-aBv
-aBv
-aBv
-aBv
-aBv
+agv
+awn
+awn
+awn
+awn
+awn
+awn
+awn
+awn
+awn
+awn
+awn
+aah
+aah
+aah
aah
aah
aah
@@ -44847,9 +44937,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
aad
aad
aad
@@ -44911,11 +44998,11 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -44964,7 +45051,7 @@ avE
awl
awS
axA
-ayr
+akg
azt
aAy
aBw
@@ -44976,7 +45063,9 @@ aES
ajB
aFY
aGd
-aBv
+awn
+aah
+aah
aah
aah
aah
@@ -44989,8 +45078,6 @@ aah
aah
aah
aah
-aad
-aad
aad
aad
aad
@@ -45051,13 +45138,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45118,7 +45205,7 @@ aET
aCe
cdO
glH
-aBv
+awn
aah
aah
aah
@@ -45131,7 +45218,7 @@ aah
aah
aah
aah
-aad
+aah
aad
aad
aad
@@ -45192,13 +45279,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45216,7 +45303,7 @@ akw
akE
bdG
akW
-akN
+cCx
aly
alN
amf
@@ -45260,7 +45347,7 @@ abN
abN
ygY
aGX
-aBv
+awn
aah
aah
aah
@@ -45272,6 +45359,7 @@ aKL
aah
aah
aah
+aah
aad
aad
aad
@@ -45299,117 +45387,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-bqI
-pZb
-rBG
-mhu
-xFG
-bqI
-txZ
-uge
-gCa
-aXs
-aXD
-gCa
-fCk
-fCk
-exW
-bJz
-lTn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ahl
-ahL
-acV
-adF
-ahl
-apj
-apj
-apj
-apl
-apl
-apl
-apl
-apl
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abn
-abn
-abn
-acx
-afg
-aoR
-abm
-aCm
-akg
-aDy
-akj
-aCV
-aCV
-szT
-jSU
-alW
-amd
-alW
-ams
-amy
-amL
-amL
-amW
-adn
-adn
-adn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 5dad1cf58a... Merge pull request #14245 from Heroman3003/firework-stuff
-aad
aad
aad
aad
@@ -45442,16 +45419,16 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45499,7 +45476,7 @@ ava
avH
awn
auK
-avh
+aws
abN
aeR
aeR
@@ -45512,7 +45489,7 @@ aio
abN
xgQ
ofS
-aBv
+awn
aah
aah
aah
@@ -45583,16 +45560,16 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45641,7 +45618,7 @@ avb
avI
ahl
rJv
-avh
+aws
abN
aeR
aeR
@@ -45654,11 +45631,11 @@ aiB
abN
lMf
aGX
-aBv
-aBv
-aBv
-aBv
-aBv
+awn
+awn
+awn
+awn
+awn
aKL
aLo
bbo
@@ -45725,16 +45702,16 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45766,12 +45743,12 @@ ahL
aiE
ajq
anx
-anP
+laI
anx
anx
aqX
anx
-anP
+laI
anx
ask
anx
@@ -45783,7 +45760,7 @@ anx
acJ
ahl
rJv
-avh
+aws
abN
aeR
aeR
@@ -45867,13 +45844,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -45903,7 +45880,6 @@ aah
aah
aah
ahl
-<<<<<<< HEAD
aCI
ahL
anN
@@ -45918,20 +45894,15 @@ arJ
arV
asl
asE
-aoD
+hLn
atF
auj
auG
avc
avJ
-=======
-pDY
-anP
-adu
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
ahl
rJv
-avh
+aws
abN
aeR
aeR
@@ -46014,13 +45985,13 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -46047,11 +46018,11 @@ ajS
ajS
aah
aah
-aah
-aah
-aah
-aah
-ahl
+atH
+atH
+atH
+atH
+atH
ahJ
anO
ajs
@@ -46066,14 +46037,14 @@ arW
asm
ahl
ahl
-atG
+auK
auk
-atH
+auK
auK
auK
auK
rJv
-axD
+aAk
abN
aeR
aeR
@@ -46156,12 +46127,12 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
akB
@@ -46186,25 +46157,6 @@ ajS
alc
aln
ajS
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ahl
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-aah
-aah
-aah
-atH
-xoT
-sBl
-aun
-atG
-=======
ahl
ahl
ahl
@@ -46213,10 +46165,9 @@ xoT
sBl
aun
atG
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-ahK
-anP
-ajt
+ahL
+laI
+abD
ahl
apj
apj
@@ -46228,13 +46179,13 @@ apl
apo
apl
ata
-atH
+auK
aul
auH
-auK
-avK
axI
-awU
+avK
+aws
+aws
aAk
abN
akT
@@ -46259,7 +46210,7 @@ aMd
aKL
aah
aah
-aad
+aah
aad
aad
aad
@@ -46318,14 +46269,2000 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+eku
+fPf
+lIj
+eGp
+lIj
+rxG
+lxo
+npK
+qJT
+uiK
+ajM
+aby
+aki
+akz
+akG
+ahl
+aeT
+alf
+ahl
+ahl
+axM
+aBU
+atH
+xuM
+dQn
+jGM
+fiP
+hDQ
+tGh
+ajt
+ahl
+apk
+apV
+aqy
+apl
+apl
+apl
+apl
+apl
+apl
+apl
+auK
+aum
+aum
+avd
+avL
+aws
+abN
+abN
+abN
+aeR
+aeR
+aeR
+agF
+ahe
+ahF
+aim
+aiU
+alT
+ajd
+aGX
+awn
+aHP
+aID
+aJv
+aJZ
+aKL
+auW
+auW
+aKL
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(46,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+waR
+dCs
+waR
+vhI
+waR
+nwH
+eFp
+bOd
+lSW
+uiK
+ajM
+bcY
+bdn
+bdn
+bdB
+akS
+ald
+alo
+ahl
+ahl
+ami
+amC
+atH
+akR
+atG
+atH
+atH
+ahM
+nBZ
+aju
+aoE
+apl
+apl
+apl
+apl
+apl
+apo
+apl
+aqy
+apl
+apl
+auK
+rJv
+rJv
+rJv
+avM
+aws
+abN
+abW
+acp
+afe
+aeR
+aeR
+agG
+aha
+ahy
+aiB
+ajm
+abN
+kyE
+aGX
+adn
+adn
+adn
+aCK
+aKa
+aKL
+aKL
+aKL
+aKL
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(47,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+eku
+uOA
+pmr
+gnt
+mIw
+kuB
+pea
+eEn
+gjD
+uiK
+ajL
+akl
+aks
+ajL
+acj
+ahl
+ale
+alp
+aiD
+alP
+aiD
+aiD
+amS
+amX
+ana
+ang
+ans
+any
+anx
+ajv
+aoF
+apX
+apX
+aqA
+aqZ
+apl
+apl
+apl
+apl
+apl
+apl
+auK
+auK
+auK
+rJv
+avM
+aws
+abN
+aiR
+acp
+afe
+aeR
+aeR
+agF
+agP
+aik
+aiF
+akp
+alS
+ygY
+aGX
+adn
+alY
+adn
+aCW
+aKa
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(48,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+waR
+vhI
+waR
+dCs
+waR
+tRX
+eFp
+kjX
+dfJ
+uiK
+aah
+akn
+abE
+jbU
+akJ
+ahl
+alg
+alq
+alB
+alQ
+amj
+amD
+amT
+amY
+anb
+anh
+ant
+auZ
+acT
+adj
+aoG
+apn
+apn
+are
+apl
+apl
+apl
+apl
+apl
+apl
+atb
+apj
+apj
+auK
+avf
+awr
+aws
+abN
+abN
+abN
+aeR
+aeR
+aeR
+agF
+agP
+ahF
+agx
+alI
+alU
+aje
+oli
+adn
+alZ
+adn
+adn
+adn
+adn
+adn
+adn
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+adK
+adK
+adK
+adK
+adK
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(49,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+eku
+rHb
+lIj
+dFD
+lIj
+dyd
+klO
+geO
+rDJ
+uiK
+aah
+abC
+abF
+abG
+abF
+ahl
+alh
+als
+ahl
+alR
+ajz
+amE
+ahl
+ahl
+ahl
+ahl
+ahl
+anz
+anP
+adk
+aoE
+apo
+apo
+apl
+apl
+aqy
+apl
+apl
+apl
+apl
+apj
+apj
+apj
+auK
+avg
+avP
+awt
+abN
+acb
+abN
+aeR
+aeR
+ane
+agF
+agP
+ail
+aiG
+alL
+alS
+ygY
+hps
+adn
+ama
+adn
+amp
+amv
+amJ
+amO
+amO
+adn
+adn
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+baq
+auI
+auI
+auI
+baq
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(50,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+hDd
+uiK
+gCa
+gCa
+gCa
+gCa
+lTn
+lTn
+lTn
+qYs
+lTn
+ahl
+ahl
+ahl
+ahl
+ahl
+ahN
+ahN
+ahN
+ahL
+anP
+adu
+ahl
+app
+apl
+apl
+apl
+aqy
+apl
+apl
+apl
+asF
+apj
+apj
+apj
+auK
+avh
+abm
+abm
+abN
+abN
+abN
+abN
+abN
+abN
+abN
+abN
+abN
+abN
+alS
+alS
+gxM
+tvA
+alV
+amb
+alV
+amr
+amx
+amK
+amO
+amO
+and
+alY
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+bar
+aad
+aad
+aad
+bar
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(51,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+bqI
+pZb
+rBG
+mhu
+xFG
+bqI
+txZ
+uge
+gCa
+aXs
+aXD
+gCa
+fCk
+fCk
+exW
+bJz
+lTn
+aah
+aah
+aah
+aah
+ahl
+ahN
+anA
+ahN
+ahL
+acV
+adF
+ahl
+apj
+apj
+apj
+apl
+apl
+apl
+apl
+apl
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+abn
+abn
+abn
+acx
+afg
+aoR
+abm
+aCm
+akg
+aDy
+akj
+aCV
+aCV
+szT
+jSU
+alW
+amd
+alW
+ams
+amy
+amL
+amL
+amW
+adn
+adn
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+baq
+aad
+aad
+aad
+baq
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(52,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+bqI
+sxc
+ilZ
+njE
+qOa
+bqI
+kfT
+fmY
+gCa
+aXx
+aXE
+gCa
+vTn
+fpU
+rVW
+bJz
+lTn
+aah
+aah
+aah
+aah
+ahl
+ahN
+ahN
+ahN
+ahL
+anP
+adu
+ahl
+apj
+apj
+apj
+apj
+apl
+apl
+apl
+aso
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+cMk
+abv
+abv
+acD
+afu
+agm
+abm
+aCn
+aDc
+aDJ
+aDJ
+aDJ
+aDJ
+uOe
+nis
+adn
+amn
+amo
+amt
+amz
+amN
+amR
+amR
+and
+alY
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(53,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+bqI
+sVX
+mTw
+rOh
+gud
+bqI
+nOB
+csd
+gCa
+aXB
+aXF
+gCa
+ezn
+qPR
+hco
+ubK
+lTn
+aah
+aah
+aah
+aah
+ahl
+ahl
+ahl
+ahl
+kJP
+anP
+adI
+ahl
+apj
+apj
+apj
+apj
+apl
+apo
+apo
+asp
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+abw
+abw
+abw
+abv
+afA
+abv
+abm
+aCo
+aDd
+aDg
+aEm
+aDg
+aDg
+aGm
+aGW
+adn
+amo
+amo
+amu
+amI
+amN
+amR
+amR
+adn
+adn
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(54,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+bqI
+bqI
+uFS
+trV
+bqI
+bqI
+paY
+tQH
+gCa
+odn
+aXK
+odn
+lTn
+fDx
+lTn
+lTn
+lTn
+odn
+odn
+aah
+aah
+aah
+aah
+aah
+ahl
+pDY
+anP
+uyf
+ahl
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+abv
+abv
+abv
+adz
+afP
+agn
+agE
+ajJ
+aDe
+aEn
+aEn
+aDe
+aDe
+aGn
+aGX
+adn
+adn
+adn
+adn
+adn
+adn
+adn
+adn
+adn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(55,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+gCa
+owv
+kxx
+kAm
+jKD
+jKD
+dJZ
+ntZ
+lTz
+gAn
+mAR
+orf
+ixF
+vSS
+tTC
+iqO
+xVX
+adH
+odn
+aah
+aah
+aah
+aah
+aah
+ahl
+anB
+anP
+adu
+ahl
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+abw
+abw
+abw
+adM
+afU
+abI
+abm
+ajW
+aDf
+akX
+aDg
+aFe
+aDg
+aGo
+aGY
+awn
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aOR
+aOR
+aOR
+aOR
+aOR
+aOR
+aOR
+aOR
+aOR
+aOR
+aTW
+aTW
+aTW
+aTW
+aVE
+aTW
+aTW
+aTW
+aTW
+aTW
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(56,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+gCa
+jTQ
+nBT
+hFq
+hOA
+vRL
+hFq
+iEk
+vRL
+hFq
+neZ
+diq
+aXo
+mvM
+fLB
+dMu
+jIc
+aeV
+odn
+aah
+aah
+aah
+aah
+aah
+ahl
+ahR
+anP
+iet
+ahl
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+abI
+abv
+abv
+adM
+afU
+abI
+abm
+ajX
+aDf
+akX
+aDg
+aFe
+aDg
+aGo
+aGX
+awn
+aBO
+aBO
+aBO
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aOR
+aPl
+aPl
+aQo
+aQR
+aRu
+aPl
+aPl
+haz
+aOR
+aTW
+aUv
+aUy
+aUv
+aUy
+aUv
+aUy
+aUv
+aUy
+aTW
+aTW
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(57,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+gCa
+gCa
+ucv
+pCj
+eJQ
+eby
+pCj
+eJQ
+wVB
+pCj
+pCj
+okO
+qwV
+wpZ
+lwL
+abT
+abT
+abT
+abT
+abT
+abT
+abT
+abT
+abT
+lxU
+ahL
+anP
+adu
+ahl
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+lWU
+abv
+abv
+adM
+afU
+abI
+abm
+aka
+aFf
+akc
+akd
+aFf
+aFf
+aGp
+aGZ
+aHt
+aBN
+aIa
+aBO
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aOR
+aPl
+aPL
+aQp
+aQS
+aQp
+aRP
+aSw
+aQp
+aTJ
+aTX
+aUw
+aUR
+aUR
+aUR
+aUR
+aUR
+aUR
+aUR
+aUy
+aTW
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(58,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+gCa
+iWx
+qsl
+pCj
+mrO
+kmb
+pCj
+tiJ
+kmb
+pCj
+kUN
+aTH
+qwV
+aXp
+hMu
+abT
+bbd
+auM
+baZ
+bbw
+bbU
+cGJ
+bch
+air
+ahl
+ahK
+add
+adJ
+ahl
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+apj
+auK
+avh
+abm
+aIn
+abv
+abv
+adN
+afU
+agr
+abm
+aCs
+aDh
+aDN
+aEp
+aFg
+aFL
+aGq
+aHa
+awn
+aBP
+aCv
+aBO
+aBO
+aBO
+aBO
+aBO
+aBO
+aBO
+aBO
+aBO
+aOR
+aPl
+aPM
+aQq
+aQT
+aRv
+aRP
+aSx
+aTc
+aTK
+aTX
+aUx
+aUA
+aUx
+aUA
+aUx
+aUA
+aUx
+aXd
+aXd
+aTW
+aad
+aad
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(59,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
aad
aad
aad
aad
aad
aad
-<<<<<<< HEAD
-=======
aad
aad
aad
@@ -46429,106 +48366,15 @@ aad
aad
aah
aah
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aah
-aah
-akB
-akB
-akB
-eku
-fPf
-lIj
-eGp
-lIj
-rxG
-lxo
-npK
-qJT
-uiK
-ajM
-aby
-aki
-akz
-akG
-akR
-aeT
-alf
-akR
-akR
-akR
-akR
-akR
aah
aah
aah
-ahl
-<<<<<<< HEAD
-ahL
-anP
-||||||| parent of 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-ahl
-ahl
-ahl
-atH
-xuM
-dQn
-jGM
-fiP
-hDQ
-tGh
-=======
-ahl
-axM
-aBU
-atH
-xuM
-dQn
-jGM
-fiP
-hDQ
-tGh
->>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR
-ajt
-ahl
-apk
-apV
-aqy
-apl
-apl
-apl
-apl
-apl
-apl
-apl
-atH
-aum
-auI
-avd
-avL
-aws
-abN
-abN
-abN
-aeR
-aeR
-aeR
-agF
-ahe
-ahF
-aim
-aiU
-alT
-ajd
-aGX
-awn
-aHP
-aID
-aJv
-aJZ
-aKL
-auW
-auW
-aKL
+aad
+aad
+aad
+aad
+aad
+aad
aah
aah
aad
@@ -46545,46 +48391,293 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aaa
"}
-(46,1,1) = {"
+(60,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+gCa
+wwm
+jio
+pCj
+dju
+aOO
+pCj
+dju
+aOO
+pCj
+jzW
+aWp
+qwV
+wtD
+wQS
+abT
+anp
+aeW
+aeW
+aeW
+aeW
+aeW
+aeW
+aeW
+aeW
+ahL
+bbO
+adu
+ahl
+apu
+apu
+apu
+apu
+apu
+apu
+apu
+apu
+uqH
+mHO
+csb
+nBm
+asn
+atl
+axC
+kCz
+csb
+imW
+tMP
+alJ
+apu
+aAm
+aCt
+aDi
+aDO
+aEr
+aFh
+aDi
+aah
+aah
+aBO
+aBP
+aIG
+aCX
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aOR
+aPn
+aPO
+aQs
+aQT
+aRx
+aRQ
+aSx
+aTe
+aTL
+aTX
+aUz
+aUR
+aUR
+aUR
+aUR
+aUR
+aUR
+aUR
+aUx
+aTW
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(61,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+bcV
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+gCa
+gCa
+gCa
+pCj
+pCj
+lhM
+pCj
+pCj
+ocx
+pCj
+pCj
+wwo
+qwV
+gnW
+jCD
+iKy
+anp
+aeW
+amk
+amF
+amU
+agz
+agI
+ani
+aeW
+ahS
+bbP
+bbS
+bbG
+apW
+aqz
+apW
+arh
+axS
+axS
+bcl
+apu
+agy
+alb
+alb
+alb
+alb
+alC
+axE
+ayD
+alF
+alG
+alH
+alK
+acW
+aAn
+aAv
+aDi
+aDP
+aEs
+aFi
+aDi
+aah
+aah
+aBO
+aCh
+aIG
+aBO
+aKh
+aIa
+aDx
+aBO
+aMM
+aNy
+aDM
+aIa
+aOR
+aPo
+aPP
+aQr
+aQT
+aRy
+aRv
+aSz
+aTf
+aOR
+aTW
+aUA
+aUx
+aUA
+aUx
+aUA
+aUx
+aUA
+aUx
+aTW
+aTW
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(62,1,1) = {"
aaa
aad
aad
@@ -46596,8 +48689,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-=======
aad
aad
aad
@@ -46702,3586 +48793,15 @@ aah
aah
aah
aah
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
aah
aah
-akB
-akB
-akB
-waR
-dCs
-waR
-vhI
-waR
-nwH
-eFp
-bOd
-lSW
-uiK
-ajM
-bcY
-bdn
-bdn
-bdB
-akS
-ald
-alo
-akR
-akR
-ami
-amC
-akR
-akR
-akR
-akR
-ahl
-ahM
-anP
-aju
-aoE
-apl
-apl
-apl
-apl
-apl
-apo
-apl
-aqy
-apl
-apl
-atH
-aun
-auJ
-ave
-avM
-aws
-abN
-abW
-acp
-afe
-aeR
-aeR
-agG
-aha
-ahy
-aiB
-ajm
-abN
-kyE
-aGX
-adn
-adn
-adn
-aCK
-aKa
-aKL
-aKL
-aKL
-aKL
aah
aah
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(47,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-akB
-akB
-akB
-eku
-uOA
-pmr
-gnt
-mIw
-kuB
-pea
-eEn
-gjD
-uiK
-ajL
-akl
-aks
-ajL
-acj
-akR
-ale
-alp
-alr
-alP
-alr
-alr
-amS
-amX
-ana
-ang
-ans
-any
-anP
-ajv
-aoF
-apX
-apX
-aqA
-aqZ
-apl
-apl
-apl
-apl
-apl
-apl
-atH
-atH
-atH
-auK
-avN
-aws
-abN
-aiR
-acp
-afe
-aeR
-aeR
-agF
-agP
-aik
-aiF
-akp
-alS
-ygY
-aGX
-adn
-alY
-adn
-aCW
-aKa
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(48,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-akB
-akB
-akB
-waR
-vhI
-waR
-dCs
-waR
-tRX
-eFp
-kjX
-dfJ
-uiK
-aah
-akn
-abE
-jbU
-akJ
-ahl
-alg
-alq
-alB
-alQ
-amj
-amD
-amT
-amY
-anb
-anh
-ant
-auZ
-acT
-adj
-aoG
-apn
-apn
-are
-apl
-apl
-apl
-apl
-apl
-apl
-atb
-apj
-apj
-auK
-avf
-awr
-aws
-abN
-abN
-abN
-aeR
-aeR
-aeR
-agF
-agP
-ahF
-agx
-alI
-alU
-aje
-oli
-adn
-alZ
-adn
-adn
-adn
-adn
-adn
-adn
-adn
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-=======
-pCj
-wjq
-wjq
-aQO
-pmV
-loj
-plW
-aSZ
-fqa
-fOy
-eAd
-ozx
-iUF
-fqa
-anp
-aeW
-axN
-afr
-amV
-agB
-agK
-anl
-aeW
-ahU
-aiN
-aet
-aoI
-apr
-apr
-aqD
-arc
-aru
-aoH
-bcd
-apu
-eyq
-ate
-apu
-bcd
-apu
-bcs
-azU
-agb
-agc
-agc
-agc
-agc
-agb
-aBJ
-aAE
-aBO
-aah
-aah
-aah
-aah
-aBO
-aBO
-aBO
-aIc
-aIJ
-aIh
-aKl
-aKU
-aLA
-aMk
-aMR
-aNC
-aNW
-aOx
-aJI
-aPt
-aJI
-jYP
-sLN
-aRD
-aRW
-aSD
-aTk
-aIh
-ycG
-mxe
-pPF
-qtU
-nAK
-aTZ
-aWs
-aVn
-owW
-qde
-wcz
-owW
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-adK
-adK
-adK
-adK
-adK
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(49,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-akB
-akB
-akB
-eku
-rHb
-lIj
-dFD
-lIj
-dyd
-klO
-geO
-rDJ
-uiK
-aah
-abC
-abF
-abG
-abF
-akR
-alh
-als
-akR
-alR
-ajz
-amE
-akR
-akR
-akR
-akR
-ahl
-anz
-anP
-adk
-aoE
-apo
-apo
-apl
-apl
-aqy
-apl
-apl
-apl
-apl
-apj
-apj
-apj
-auK
-avg
-avP
-awt
-abN
-acb
-abN
-aeR
-aeR
-ane
-agF
-agP
-ail
-aiG
-alL
-alS
-ygY
-hps
-adn
-ama
-adn
-amp
-amv
-amJ
-amO
-amO
-adn
-adn
-adn
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-baq
-auI
-auI
-auI
-baq
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(50,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-akB
-akB
-akB
-akB
-akB
-akB
-akB
-akB
-akB
-akB
-akB
-hDd
-uiK
-gCa
-gCa
-gCa
-gCa
-lTn
-lTn
-lTn
-qYs
-lTn
-akR
-akR
-akR
-akR
-aah
-aah
-aah
-ahl
-anA
-anP
-adu
-ahl
-app
-apl
-apl
-apl
-aqy
-apl
-apl
-apl
-asF
-apj
-apj
-apj
-auK
-avh
-abm
-abm
-abN
-abN
-abN
-abN
-abN
-abN
-abN
-abN
-abN
-abN
-alS
-alS
-gxM
-tvA
-alV
-amb
-alV
-amr
-amx
-amK
-amO
-amO
-and
-alY
-adn
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-bar
-=======
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-adt
-adt
-adt
-adt
-adt
-abT
-abT
-abT
-tCV
-akt
-ahX
-aiS
-aeH
-aoM
-apw
-ahX
-aqF
-ari
-aqb
-aqb
-arZ
-asq
-asK
-apu
-apu
-apu
-apu
-avi
-apu
-agM
-agM
-axV
-ayH
-azN
-agM
-agM
-gHx
-aBO
-aah
-aah
-aah
-aah
-aBO
-aHf
-aHv
-aIf
-aIN
-aIh
-alr
-aJI
-aLC
-acv
-aMT
-aMT
-aMT
-aMT
-aMT
-aPx
-aPW
-aPx
-aRc
-aRI
-aSa
-ajw
-aRM
-aPG
-aTY
-aIh
-aah
-aah
-aVn
-aTZ
-aWx
-aVn
-aXg
-aTZ
-aHu
-aYm
-aYk
-aTZ
-aTZ
-aVn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aad
-aad
-aad
-bar
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(51,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-bqI
-pZb
-rBG
-mhu
-xFG
-bqI
-txZ
-uge
-gCa
-aXs
-aXD
-gCa
-fCk
-fCk
-exW
-bJz
-lTn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ahl
-ahL
-acV
-adF
-ahl
-apj
-apj
-apj
-apl
-apl
-apl
-apl
-apl
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abn
-abn
-abn
-acx
-afg
-fna
-abm
-aCm
-akg
-aDy
-akj
-aCV
-aCV
-szT
-jSU
-alW
-amd
-alW
-ams
-amy
-amL
-amL
-amW
-adn
-adn
-adn
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-baq
-aad
-aad
-aad
-baq
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(52,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-bqI
-sxc
-ilZ
-njE
-qOa
-bqI
-kfT
-fmY
-gCa
-aXx
-aXE
-gCa
-vTn
-fpU
-rVW
-bJz
-lTn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ahl
-ahN
-ada
-adH
-ahl
-apj
-apj
-apj
-apj
-apl
-apl
-apl
-aso
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abv
-abv
-abv
-acD
-afu
-agm
-abm
-aCn
-aDc
-aDJ
-aDJ
-aDJ
-aDJ
-uOe
-nis
-adn
-amn
-amo
-amt
-amz
-amN
-amR
-amR
-and
-alY
-adn
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(53,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-bqI
-sVX
-mTw
-rOh
-gud
-bqI
-nOB
-csd
-gCa
-aXB
-aXF
-gCa
-ezn
-qPR
-hco
-ubK
-lTn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ahl
-ahL
-anP
-adI
-ahl
-apj
-apj
-apj
-apj
-apl
-apo
-apo
-asp
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abw
-abw
-abw
-abv
-afA
-abv
-abm
-aCo
-aDd
-aDg
-aEm
-aDg
-aDg
-aGm
-aGW
-adn
-amo
-amo
-amu
-amI
-amN
-amR
-amR
-adn
-adn
-adn
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(54,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-bqI
-bqI
-uFS
-trV
-bqI
-bqI
-paY
-tQH
-gCa
-odn
-aXK
-odn
-lTn
-fDx
-lTn
-lTn
-lTn
-odn
-odn
-aah
-aah
-aah
-aah
-aah
-ahl
-ahL
-anP
-adu
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abD
-abv
-abv
-adz
-afP
-agn
-agE
-ajJ
-aDe
-aDK
-aEn
-aDe
-aDe
-aGn
-aGX
-adn
-adn
-adn
-adn
-adn
-adn
-adn
-adn
-adn
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(55,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-gCa
-owv
-kxx
-kAm
-jKD
-jKD
-dJZ
-ntZ
-lTz
-gAn
-mAR
-orf
-ixF
-vSS
-tTC
-iqO
-xVX
-adH
-odn
-aah
-aah
-<<<<<<< HEAD
-aah
-aah
-aah
-ahl
-anB
-anP
-adu
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abw
-abw
-abw
-adM
-afU
-abI
-abm
-ajW
-aDf
-akX
-aDg
-aFe
-aDg
-aGo
-aGY
-awn
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aOR
-aOR
-aOR
-aOR
-aOR
-aOR
-aOR
-aOR
-aOR
-aOR
-aTW
-aTW
-aTW
-aTW
-aVE
-aTW
-aTW
-aTW
-aTW
-aTW
-aad
-aad
-aad
-aad
-aad
-=======
-apu
-asL
-apu
-ahc
-agM
-bcp
-bXC
-atL
-atL
-atj
-ayc
-ayG
-dCc
-aAR
-aBQ
-aAL
-aBQ
-aBQ
-aAU
-aFl
-aFN
-ohi
-ohi
-loc
-aec
-aIT
-aJL
-aKu
-aJI
-aJI
-aMq
-aMZ
-aNI
-aJI
-aJI
-aJI
-aPz
-aNE
-aQA
-aMY
-aOB
-aRH
-aSL
-aTn
-aTR
-aTR
-aIh
-aUV
-aTZ
-aVn
-abz
-aWB
-aWS
-aWB
-aXC
-aWS
-aWS
-aWA
-aXk
-aJE
-aLw
-aZX
-bas
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(56,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bcV
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aah
-gCa
-jTQ
-nBT
-hFq
-hOA
-vRL
-hFq
-iEk
-vRL
-hFq
-neZ
-diq
-aXo
-mvM
-fLB
-dMu
-jIc
-aeV
-odn
-aah
-aah
-aah
-aah
-aah
-ahl
-ahR
-anP
-adu
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abI
-abv
-abv
-adM
-afU
-abI
-abm
-ajX
-aDf
-akX
-aDg
-aFe
-aDg
-aGo
-aGX
-awn
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aaa
-"}
-(80,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-aAD
-aAD
-aAD
-aAI
-aAI
-aAI
-aef
-aeZ
-afN
-aBA
-aCr
-aCr
-aCr
-aCr
-aCr
-aGa
-aGa
-aGa
-aHV
-aGa
-aGa
-aGa
-agM
-aja
-afh
-agM
-agM
-agM
-aqI
-agM
-agM
-agM
-asa
-agM
-asM
-agM
-aqI
-agM
-agM
-agM
-agM
-agM
-agM
-abc
-sQB
-byP
-agM
-aBO
-aBO
-aBO
-aBO
-aEz
-aFl
-=======
-aaa
-"}
-(80,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-aAD
-aAD
-aAD
-sGh
-qJe
-jkI
-aef
-aeZ
-afN
-aBA
-aCr
-aCr
-aCr
-aCr
-aCr
-aGa
-aGa
-aGa
-aHV
-aGa
-aGa
-aGa
-agM
-aja
-afh
-agM
-agM
-agM
-aqI
-agM
-agM
-agM
-asa
-agM
-asM
-agM
-aqI
-agM
-agM
-agM
-agM
-agM
-agM
-abc
-sQB
-byP
-agM
-aBO
-aBO
-aBO
-aBO
-aEz
-aFl
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aBO
-aBO
-aBO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aOR
-aPl
-aPl
-aQo
-aQR
-aRu
-aPl
-aPl
-haz
-aOR
-aTW
-aUv
-aUy
-aUv
-aUy
-aUv
-aUy
-aUv
-aUy
-aTW
-aTW
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aaa
-"}
-(81,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-aAI
-aAI
-aAI
-aAI
-aAI
-aAI
-aef
-aeS
-afO
-aBB
-aCr
-aDa
-aDU
-aEj
-aCr
-aGb
-aGK
-aHr
-aIq
-aJU
-aLt
-aGa
-anD
-anU
-afp
-aoP
-apz
-aqd
-aqJ
-arf
-arx
-arN
-aqd
-asr
-asN
-atk
-atM
-aus
-auN
-avm
-avV
-jDg
-wUW
-abh
-abk
-osh
-agM
-aah
-aah
-aah
-aBO
-aEw
-aFl
-aBO
-aah
-aBO
-aHC
-aIh
-aIV
-aJN
-aJI
-aJI
-aJI
-aMs
-aNa
-aJI
-aJI
-aJI
-aJI
-aJI
-aNZ
-aQy
-aNa
-aJI
-aMm
-aSM
-aTo
-aTS
-aTS
-aIh
-aTZ
-aEx
-aVn
-aWc
-aWc
-aWc
-aWA
-aHd
-aYb
-aYb
-aHZ
-aHZ
-aYb
-aYb
-aZY
-aYd
-=======
-aaa
-"}
-(81,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-udU
-sYi
-aAD
-xfm
-syt
-xfm
-aef
-aeS
-tAo
-aBB
-aCr
-aDa
-aDU
-aEj
-aCr
-aGb
-aGK
-aHr
-aIq
-aJU
-aLt
-aGa
-anD
-anU
-afp
-aoP
-apz
-aqd
-aqJ
-arf
-arx
-arN
-aqd
-asr
-asN
-atk
-atM
-aus
-auN
-avm
-avV
-jDg
-wUW
-abh
-abk
-osh
-agM
-aah
-aah
-aah
-aBO
-aEw
-aFl
-aBO
-aah
-aBO
-aHC
-aIh
-aIV
-aJN
-aJI
-aJI
-aJI
-aMs
-aNa
-aJI
-aJI
-aJI
-aJI
-aJI
-aNZ
-aQy
-aNa
-aJI
-aMm
-aSM
-aTo
-aTS
-aTS
-aIh
-aTZ
-aEx
-aVn
-aWc
-aWc
-aWc
-aWA
-aHd
-aYb
-aYb
-aHZ
-aHZ
-aYb
-aYb
-aZY
-aYd
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(57,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-gCa
-gCa
-ucv
-pCj
-eJQ
-eby
-pCj
-eJQ
-wVB
-pCj
-pCj
-okO
-qwV
-wpZ
-lwL
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-lxU
-ahL
-anP
-adu
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-abI
-abv
-abv
-adM
-afU
-abI
-abm
-aka
-aFf
-akc
-akd
-aFf
-aFf
-aGp
-aGZ
-aHt
-aBN
-aIa
-aBO
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aaa
-"}
-(82,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-aAI
-aAI
-aAI
-aAI
-aAI
-aAI
-aef
-aeS
-afO
-aBC
-aCr
-aDb
-aDV
-aEk
-aCr
-aGc
-aGL
-aHs
-aIs
-aKb
-aLu
-aGa
-aic
-anV
-aoh
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-asb
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-xAT
-aoQ
-tvk
-abl
-ghr
-agM
-=======
-aaa
-"}
-(82,1,1) = {"
-aqR
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aAD
-tcK
-aAI
-aAD
-rtV
-ctE
-lEB
-ucq
-qtC
-dvU
-aBC
-aCr
-aDb
-aDV
-aEk
-aCr
-aGc
-aGL
-aHs
-aIs
-aKb
-aLu
-aGa
-aic
-anV
-aoh
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-asb
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-aoQ
-xAT
-aoQ
-tvk
-abl
-ghr
-agM
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aOR
-aPl
-aPL
-aQp
-aQS
-aQp
-aRP
-aSw
-aQp
-aTJ
-aTX
-aUw
-aUR
-aUR
-aUR
-aUR
-aUR
-aUR
-aUR
-aUy
-aTW
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-<<<<<<< HEAD
-(58,1,1) = {"
-aaa
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-(83,1,1) = {"
-aqR
-aaf
-aaf
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aaf
-aag
-aaf
-aaf
-aAD
-aAI
-aAI
-aAI
-aAI
-aAI
-aAI
-aef
-afi
-afQ
-bca
-aCr
-aDs
-aDW
-aEl
-aFc
-aGe
-aGM
-aHz
-aIA
-aKc
-aLZ
-baX
-aid
-goJ
-aoi
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoi
-awH
-oQm
-gVe
-lNt
-mon
-agM
-aah
-aah
-aah
-aBO
-aAY
-aFl
-aBO
-aah
-aBO
-aHC
-aIh
-aIX
-aJO
-aKw
-aLd
-aLJ
-aMr
-aNc
-aNK
-aOf
-aOf
-aOf
-aOf
-aNZ
-aQB
-aRe
-aRJ
-aSe
-aSO
-aTr
-aer
-aTZ
-aTZ
-aTZ
-aTZ
-aVn
-aWe
-aWd
-aWc
-aWA
-aXG
-aXk
-aWA
-aWA
-aWA
-aWA
-aXk
-aWc
-aWc
-aWc
-bas
-baU
-baU
-aad
-=======
-(83,1,1) = {"
-aqR
-aaf
-aaf
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aae
-aaf
-aag
-aaf
-aaf
-aAD
-eJc
-udU
-aAD
-syt
-dNE
-wjd
-aef
-afi
-afQ
-bca
-aCr
-aDs
-aDW
-aEl
-aFc
-aGe
-aGM
-aHz
-aIA
-aKc
-aLZ
-baX
-aid
-goJ
-aoi
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoi
-awH
-oQm
-gVe
-lNt
-mon
-agM
-aah
-aah
-aah
-aBO
-aAY
-aFl
-aBO
-aah
-aBO
-aHC
-aIh
-aIX
-aJO
-aKw
-aLd
-aLJ
-aMr
-aNc
-aNK
-aOf
-aOf
-aOf
-aOf
-aNZ
-aQB
-aRe
-aRJ
-aSe
-aSO
-aTr
-aer
-aTZ
-aTZ
-aTZ
-aTZ
-aVn
-aWe
-aWd
-aWc
-aWA
-aXG
-aXk
-aWA
-aWA
-aWA
-aWA
-aXk
-aWc
-aWc
-aWc
-bas
-baU
-baU
-aad
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-gCa
-iWx
-qsl
-pCj
-mrO
-kmb
-pCj
-tiJ
-kmb
-pCj
-kUN
-aTH
-qwV
-aXp
-hMu
-abT
-bbd
-auM
-baZ
-bbw
-bbU
-cGJ
-bch
-air
-ahl
-ahK
-add
-adJ
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-auK
-avh
-abm
-aIn
-abv
-abv
-adN
-afU
-agr
-abm
-aCs
-aDh
-aDN
-aEp
-aFg
-aFL
-aGq
-aHa
-awn
-aBP
-aCv
-aBO
-aBO
-aBO
-aBO
-aBO
-aBO
-aBO
-aBO
-aBO
-aOR
-aPl
-aPM
-aQq
-aQT
-aRv
-aRP
-aSx
-aTc
-aTK
-aTX
-aUx
-aUA
-aUx
-aUA
-aUx
-aUA
-aUx
-aXd
-aXd
-aTW
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(59,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-gCa
-kwN
-lLD
-pCj
-qjE
-bzb
-pCj
-qjE
-bzb
-pCj
-bcQ
-hTQ
-qwV
-wVI
-oox
-abT
-amQ
-bbe
-bbe
-bbe
-bbe
-bbe
-bbe
-bci
-bbG
-bbH
-bbN
-adu
-ahl
-apj
-apj
-apj
-apj
-apj
-apj
-apj
-apu
-apu
-apu
-apu
-apu
-apu
-avj
-abm
-abm
-abm
-abm
-abm
-afX
-abm
-abm
-awn
-awn
-awn
-aEq
-awn
-awn
-awn
-awn
-awn
-aBP
-aCw
-aLv
-aCY
-aCZ
-aLv
-aMf
-aLv
-aLv
-aLv
-aLv
-aej
-aPm
-aPN
-aQr
-aQT
-aRw
-aRQ
-aSy
-aTd
-aTK
-aTX
-aUy
-aUv
-aUy
-aUv
-aUy
-aUv
-aUy
-aXd
-aXd
-aTW
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(60,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-gCa
-wwm
-jio
-pCj
-dju
-aOO
-pCj
-dju
-aOO
-pCj
-jzW
-aWp
-qwV
-wtD
-wQS
-abT
-anp
-aeW
-aeW
-aeW
-aeW
-aeW
-aeW
-aeW
-aeW
-ahL
-bbO
-adu
-ahl
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-uqH
-mHO
-csb
-nBm
-asn
-atl
-axC
-kCz
-csb
-imW
-tMP
-alJ
-apu
-aAm
-aCt
-aDi
-aDO
-aEr
-aFh
-aDi
-aah
-aah
-aBO
-aBP
-aIG
-aCX
-aIa
-aIa
-aIa
-aIa
-aIa
-aIa
-aIa
-aIa
-aOR
-aPn
-aPO
-aQs
-aQT
-aRx
-aRQ
-aSx
-aTe
-aTL
-aTX
-aUz
-aUR
-aUR
-aUR
-aUR
-aUR
-aUR
-aUR
-aUx
-aTW
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(61,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-gCa
-gCa
-gCa
-pCj
-pCj
-lhM
-pCj
-pCj
-ocx
-pCj
-pCj
-wwo
-qwV
-gnW
-jCD
-iKy
-anp
-aeW
-amk
-amF
-amU
-agz
-agI
-ani
-aeW
-ahS
-bbP
-bbS
-bbG
-apW
-aqz
-apW
-arh
-axS
-axS
-bcl
-apu
-agy
-alb
-alb
-alb
-alb
-alC
-axE
-ayD
-alF
-alG
-alH
-alK
-acW
-aAn
-aAv
-aDi
-aDP
-aEs
-aFi
-aDi
-=======
-aad
-aap
-aax
-aaK
-aaK
-abo
-aaK
-aaK
-adP
-aao
-cPX
-afO
-elf
-aCr
-dYd
-aEh
-aDC
-aCr
-aGj
-aGQ
-aGj
-aGj
-aKG
-aGj
-aGj
-aii
-anW
-aoj
-aoS
-apC
-aqf
-aqf
-arg
-arz
-arz
-asc
-arz
-arz
-apC
-aqf
-aqf
-arg
-aoS
-aoj
-awH
-axn
-ayh
-ayR
-iwE
-efV
-aBS
-aCE
-aDm
-aDS
-aBb
-aBg
-aBO
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aah
-aah
-aBO
-aCh
-aIG
-aBO
-aKh
-aIa
-aDx
-aBO
-aMM
-aNy
-aDM
-aIa
-aOR
-aPo
-aPP
-aQr
-aQT
-aRy
-aRv
-aSz
-aTf
-aOR
-aTW
-aUA
-aUx
-aUA
-aUx
-aUA
-aUx
-aUA
-aUx
-aTW
-aTW
-aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(62,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-adK
-aad
-<<<<<<< HEAD
-aad
-aad
-pCj
-wjq
-wjq
-tdh
-lQu
-dPC
-tdh
-qmc
-ofW
-qoK
-uzs
-kEs
-hMu
-iKy
-anp
-aeW
-aml
-afT
-afT
-afT
-agJ
-anj
-anu
-anC
-adh
-adO
-ahl
-bcn
-axS
-bcl
-azb
-apW
-apW
-apW
-bbX
-aiC
-alt
-alv
-alv
-apu
-bcq
-avT
-avT
-axe
-avT
-avT
-avT
-avT
-aBJ
-aAw
-aDi
-aDQ
-aEt
-aFj
-aDi
-=======
-aao
-aay
-aaL
-aaZ
-adb
-acn
-awy
-adQ
-aao
-yaU
-afO
-aBB
-aCr
-aDC
-aEh
-aDt
-aCr
-aGk
-aDA
-aHQ
-aJy
-aKI
-aRR
-aGj
-bbl
-anX
-aoj
-aoS
-apC
-aqf
-aqf
-arg
-arA
-arz
-hzr
-arz
-asO
-apC
-aqf
-aqf
-arg
-aoS
-pMd
-awI
-axo
-ayh
-ayS
-iwE
-nmD
-aBT
-aCF
-aDn
-ayh
-aBc
-aFl
-aBO
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
-aah
-aah
-aBO
-aIa
-aIG
-aJF
-aJF
-aJF
-aJF
-aJF
-aJF
-aJF
-aJF
-aJF
-aIh
-aPp
-aPl
-aQt
-aQU
-aRz
-ajn
-aSA
-aTg
-aOR
-aTW
-aUB
-ajf
-ajg
-ajh
-aVU
-aVU
-aWO
-aTW
-aTW
aah
aah
aah
@@ -50297,21 +48817,6 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aaa
"}
(63,1,1) = {"
@@ -50421,29 +48926,29 @@ aVk
aVF
aVV
aVV
-aOR
-aOR
+owW
+owW
+iOk
+wjo
+owW
+owW
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -50507,9 +49012,9 @@ aoI
apq
apY
aqB
-aoH
-aoH
-bcd
+xvK
+ggX
+apu
bcd
apu
aqb
@@ -50517,7 +49022,7 @@ ate
apu
apu
apu
-bcr
+adr
avT
agb
agb
@@ -50549,22 +49054,37 @@ aOw
aIh
aPr
aPR
-aOR
+uxT
aQW
aRB
aRT
aSB
aTi
aTM
-aTM
+jMx
aUD
aTM
aEu
aEA
aWq
aWq
-aQW
-aOR
+fSR
+ulr
+gLZ
+gLZ
+twO
+owW
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -50572,21 +49092,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -50649,8 +49154,8 @@ aoI
apr
apr
apr
-ara
-aoH
+apr
+bmK
aoH
bcd
apu
@@ -50659,8 +49164,8 @@ ate
apu
bcd
apu
-bcr
-avT
+bcs
+azG
agb
agc
agc
@@ -50699,14 +49204,29 @@ aSC
aTj
aSC
bcP
-aSC
+hxK
aUS
aEv
-aSC
+cKr
aEB
aWr
-aQW
-aOR
+oxb
+iTb
+ril
+ttT
+kcJ
+owW
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -50714,21 +49234,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -50802,8 +49307,8 @@ apu
bcd
apu
bcB
-avT
-agb
+azK
+bbQ
agc
agc
agc
@@ -50840,15 +49345,27 @@ aRV
aQV
aTh
aOR
-aOR
-aOR
-aOR
-aOR
-aOR
+nAK
+tIG
+nAK
+nAK
+nAK
aeu
aOR
-aOR
-aOR
+owW
+owW
+kYx
+kYx
+owW
+owW
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -50859,18 +49376,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -50899,114 +49404,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-=======
-aan
-aaV
-aba
-acO
-adw
-aan
-atJ
-awA
-aeU
-acZ
-ade
-aeU
-jQL
-amw
-aBW
-aCM
-aDF
-aCM
-lUk
-aCM
-aCM
-aCM
-aCM
-aJC
-qWW
-aZg
-aef
-bbq
-anW
-aoj
-hzr
-apA
-apA
-apA
-hzr
-ary
-ary
-ary
-ary
-ary
-hzr
-apA
-apA
-apA
-hzr
-aoj
-awH
-axm
-ayh
-ayh
-aAf
-cpp
-ayh
-aCJ
-aCJ
-aCJ
-aCJ
-aFr
-aCJ
-aCJ
-aCJ
-agM
-aeM
-aJd
-ayG
-aqk
-aLg
-aLM
-aLM
-aLM
-aLg
-aOk
-aOk
-aOk
-aOj
-aQc
-aQc
-aQc
-aQb
-aSj
-aSj
-aSj
-aSi
-aUe
-aUG
-aUW
-aUW
-aUW
-aWf
-aWE
-aUb
-xJs
-aXJ
-aYe
-aYe
-aYe
-aYe
-aYe
-aYe
-aYe
-aYe
-aYe
-aYe
-baU
-baU
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
aad
aad
aad
@@ -51046,13 +49443,13 @@ aru
aoH
bcd
apu
-aqb
+eyq
ate
apu
bcd
apu
bcs
-avT
+azU
agb
agc
agc
@@ -51084,20 +49481,32 @@ aJI
aPt
aJI
jYP
-aQy
+sLN
aRD
aRW
aSD
aTk
aIh
-aah
-aah
-aah
-aah
-aVn
+ycG
+mxe
+pPF
+qtU
+nAK
aTZ
aWs
aVn
+owW
+qde
+wcz
+owW
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
aah
aah
@@ -51110,18 +49519,6 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -51193,7 +49590,7 @@ ate
apu
bcd
apu
-bcr
+aiW
avT
agb
agc
@@ -51232,18 +49629,18 @@ aRX
aSE
aSE
aIh
-aah
-aah
-aah
-aah
-aVn
+ncw
+xdD
+mut
+wxk
+nAK
aTZ
aWt
aVn
-aVn
-aVn
-aVn
-aVn
+aUT
+aUT
+aUT
+aUT
aVn
aVn
aVn
@@ -51254,16 +49651,16 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -51278,282 +49675,6 @@ asS
aaa
aad
aad
-<<<<<<< HEAD
-||||||| parent of 18fa28a431... Merge pull request #11698 from GhostActual/toolz
-aan
-abj
-acm
-acU
-adA
-aan
-aBn
-lbu
-axL
-adc
-adS
-aeU
-afs
-aeD
-aCg
-mGH
-aDH
-mGH
-aEX
-aFv
-aGw
-aGV
-aHU
-aJT
-tRA
-igw
-bbf
-ago
-anY
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-ase
-aok
-aok
-aok
-sEz
-aut
-aut
-avn
-avW
-awJ
-avW
-kgk
-mSz
-qhq
-oib
-agM
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-agM
-agM
-agM
-aIm
-aJf
-aJQ
-aKC
-aLg
-aLM
-aLM
-aLM
-aLg
-aOk
-aOk
-aOk
-aOj
-aQc
-aQc
-aQc
-aQb
-aSj
-aSj
-aSj
-aSi
-aUc
-aUc
-aUc
-aVr
-aUc
-aUc
-aUc
-aUb
-aXt
-aXO
-aYh
-aHE
-aIj
-aZo
-aZC
-aZC
-aVp
-aWu
-aZQ
-baS
-baU
-baU
-aah
-=======
-aan
-abj
-acm
-acU
-adA
-aan
-<<<<<<< HEAD
-aBn
-lbu
-axL
-adc
-adS
-aeU
-afs
-aeD
-aCg
-mGH
-aDH
-adx
-aEX
-aFv
-=======
-atP
-awE
-aeU
-uIU
-uIU
-uIU
-lBv
-cqg
-afE
-aef
-aef
-aef
-aEY
-aFO
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
-aGw
-<<<<<<< HEAD
-aGV
-aHU
-aJT
-tRA
-igw
-bbf
-ago
-anY
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-ase
-aok
-aok
-aok
-sEz
-aut
-aut
-avn
-avW
-awJ
-avW
-kgk
-mSz
-qhq
-oib
-=======
-aHh
-aef
-aef
-aef
-aef
-aef
-bbt
-anZ
-aol
-aoT
-apE
-wDf
-aqL
-doa
-aqL
-ajA
-asf
-ass
-mGP
-atn
-cHW
-auu
-auQ
-avo
-avX
-awK
-aqh
-vfy
-qwm
-ayG
-qRI
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-agM
-aCJ
-aCJ
-aCJ
-rCj
-aCJ
-aCJ
-agM
-<<<<<<< HEAD
-agM
-agM
-aIm
-aJf
-aJQ
-aKC
-=======
-yaA
-uku
-ayG
-qBb
-aJR
-aKD
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-aLg
-aLM
-aLM
-aLM
-aLg
-aOk
-aOk
-aOk
-aOj
-aQc
-aQc
-aQc
-aQb
-aSj
-aSj
-aSj
-aSi
-aUc
-aUc
-aUc
-aVr
-aUc
-aUc
-aUc
-aUb
-aXt
-aXO
-aYh
-aHE
-aIj
-aZo
-aZC
-aZC
-aVp
-aWu
-aZQ
-baS
-baU
-baU
-aah
->>>>>>> 18fa28a431... Merge pull request #11698 from GhostActual/toolz
aad
aad
aad
@@ -51582,8 +49703,8 @@ eBd
fqa
fOy
xtS
-fvH
-uAv
+auJ
+auX
fqa
anp
adK
@@ -51611,8 +49732,8 @@ ate
apu
bcd
apu
-bcr
-avU
+adr
+avT
agb
agb
agc
@@ -51632,7 +49753,7 @@ aHv
aHv
aHv
aIh
-aKn
+azJ
aKV
aLC
aJI
@@ -51650,11 +49771,11 @@ aSn
aSF
aTl
aIh
-aah
-aah
-aah
-aah
-aVn
+rwD
+xdA
+uOQ
+prr
+nAK
aTZ
aEC
aVn
@@ -51672,16 +49793,16 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -51708,262 +49829,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-||||||| parent of 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
-aan
-aaR
-abL
-abL
-abL
-ael
-aan
-<<<<<<< HEAD
-atQ
-awV
-axQ
-adZ
-ayB
-ayZ
-aAc
-aAi
-asT
-pVp
-uVK
-oKn
-fFb
-meS
-meS
-ara
-aaU
-aaU
-qJl
-aaU
-aaU
-bwr
-bwr
-cZL
-haw
-pKR
-apF
-aqP
-apF
-arL
-arO
-asi
-asU
-asU
-ats
-atS
-auw
-=======
-uHS
-awC
-aeU
-uIU
-bbI
-fKm
-lPQ
-cqg
-akA
-aAG
-tdg
-aef
-aEZ
-aFP
-aGw
-aHi
-aef
-eAt
-eAt
-eAt
-agM
-agM
-aoa
-agM
-agM
-agM
-agM
-aqM
-agM
-aqM
-agM
-asg
-ash
-uxF
-ash
-kMG
-ash
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
-auR
-avu
-awc
-awN
-axt
-aym
-azf
-ayG
-byn
-uUP
-tVd
-eow
-kAG
-rZZ
-ghg
-wxa
-glc
-glc
-glc
-hTz
-rVb
-kPT
-bbn
-aLi
-aLQ
-aMB
-aNm
-aNR
-aOo
-aOJ
-aPc
-aPJ
-aQg
-aQJ
-aNm
-aRO
-aVv
-aOJ
-aNm
-aTV
-aUl
-aUO
-aVc
-aVy
-aVO
-aWm
-aWL
-aVn
-aXP
-aXP
-aYi
-aYi
-aKq
-aYi
-aYi
-aZS
-bao
-baC
-baQ
-aYi
-baU
-aah
-=======
-aan
-aaR
-abL
-abL
-abL
-ael
-aan
-atQ
-awV
-axQ
-adZ
-ayB
-ayZ
-aAc
-aAi
-asT
-pVp
-uVK
-oKn
-fFb
-meS
-meS
-ara
-aaU
-aaU
-qJl
-aaU
-aaU
-bwr
-bwr
-cZL
-haw
-pKR
-apF
-aqP
-apF
-arL
-arO
-asi
-asU
-asU
-ats
-atS
-auw
-auR
-avu
-awc
-awN
-axt
-aym
-azf
-rjh
-byn
-uUP
-tVd
-eow
-kAG
-rZZ
-ghg
-wxa
-glc
-glc
-glc
-hTz
-rVb
-kPT
-bbn
-aLi
-aLQ
-aMB
-aNm
-aNR
-aOo
-aOJ
-aPc
-aPJ
-aQg
-aQJ
-aNm
-aRO
-aVv
-aOJ
-aNm
-aTV
-aUl
-aUO
-aVc
-aVy
-aVO
-aWm
-aWL
-aVn
-aXP
-aXP
-aYi
-aYi
-aKq
-aYi
-aYi
-aZS
-bao
-baC
-baQ
-aYi
-baU
-aah
->>>>>>> 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
aad
aad
aad
@@ -52009,8 +49874,8 @@ atf
apu
bcd
apu
-bcr
-agM
+adr
+apu
agM
axg
axT
@@ -52030,7 +49895,7 @@ aHv
aCj
aIL
aIh
-aKo
+aBv
aJI
aLC
aJI
@@ -52050,9 +49915,9 @@ aTm
aIh
aIh
aIh
-aah
-aah
-aVn
+qhg
+qhg
+nAK
aTZ
aWv
aVn
@@ -52070,15 +49935,15 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -52151,8 +50016,8 @@ atg
apu
bcd
apu
-bcr
-bbQ
+awB
+bcd
agM
axh
axU
@@ -52192,9 +50057,9 @@ aTn
aTN
aTN
aIh
-aah
-aah
-aVn
+nAK
+nAK
+lEA
aTZ
aED
aVn
@@ -52213,14 +50078,14 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -52293,13 +50158,7 @@ apu
apu
apu
apu
-<<<<<<< HEAD
-bcq
-||||||| parent of c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
-ayD
-=======
avi
->>>>>>> c9bc676ff0... Merge pull request #9472 from Very-Soft/littlefix
apu
agM
agM
@@ -52308,7 +50167,7 @@ ayH
azN
agM
agM
-aAw
+gHx
aBO
aah
aah
@@ -52360,242 +50219,18 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
aah
aah
aah
-aan
-acc
-acI
-adm
-aan
-aff
-aff
-awX
-aff
-aff
-ayC
-azE
-axP
-axP
-bPH
-ksA
-nlO
-gEn
-kAn
-miP
-saF
-cUB
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-xqZ
-qPs
-qhr
-apF
-aqP
-arl
-apF
-apF
-ash
-ast
-asU
-att
-atU
-auy
-auR
-avw
-awe
-awO
-axu
-auR
-azh
-ayG
-vDb
-aBY
-aCP
-aDu
-aDX
-aEJ
-aFx
-sya
-aGx
-aHl
-aDu
-aDu
-aDu
-aDu
-aCS
-aLj
-aLR
-aMC
-aNo
-aNS
-aOp
-aOK
-aPe
-aPK
-aQh
-aQK
-aRn
-aPK
-aSp
-aSV
-aTC
-aSo
-aUn
-aUp
-aVd
-aVz
-aUt
-aWM
-aWM
-aWV
-aVn
-aHg
-aYi
-aYE
-aIM
-aZu
-aYi
-aZU
-aVH
-baE
-baD
-baT
-baU
-aad
-aad
-aad
-=======
aah
aah
aah
-aan
-acc
-acI
-adm
-aan
-aff
-aff
-awX
-aff
-aff
-ayC
-azE
-axP
-axP
-bPH
-ksA
-nlO
-gEn
-kAn
-miP
-saF
-cUB
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-xqZ
-qPs
-qhr
-apF
-aqP
-arl
-apF
-apF
-ash
-ast
-asU
-att
-atU
-auy
-auR
-avw
-awe
-awO
-axu
-auR
-azh
-ikG
-vDb
-aBY
-aCP
-aDu
-aDX
-aEJ
-aFx
-sya
-aGx
-aHl
-aDu
-aDu
-aDu
-aDu
-aCS
-aLj
-aLR
-aMC
-aNo
-aNS
-aOp
-aOK
-aPe
-aPK
-aQh
-aQK
-aRn
-aPK
-aSp
-aSV
-aTC
-aSo
-aUn
-aUp
-aVd
-aVz
-aUt
-aWM
-aWM
-aWV
-aVn
-aHg
-aYi
-aYE
-aIM
-aZu
-aYi
-aZU
-aVH
-baE
-baD
-baT
-baU
+aah
+aah
+aad
aad
aad
aad
->>>>>>> 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
aad
aad
baV
@@ -52665,9 +50300,9 @@ ath
axS
apu
bcz
-bct
+azb
bcv
-bco
+axS
agM
axW
ayI
@@ -52726,14 +50361,14 @@ aah
aah
aah
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -52762,8 +50397,8 @@ aad
aad
aad
aad
-adK
-adK
+ano
+ano
aad
aad
aad
@@ -52807,7 +50442,7 @@ apu
axS
apu
bcA
-bco
+axS
apu
apu
agM
@@ -52866,9 +50501,9 @@ aah
aah
aah
aah
-aad
-aad
-aad
+aah
+aah
+aah
aad
aad
aad
@@ -52948,8 +50583,8 @@ asL
apu
axS
apu
-bcC
-bco
+aXL
+axS
apu
bcd
agM
@@ -53007,8 +50642,8 @@ aVn
aah
aah
aah
-aad
-aad
+aah
+aah
aad
aad
aad
@@ -53068,7 +50703,7 @@ adt
bbi
adt
bbF
-adt
+whV
abT
abT
abT
@@ -53148,8 +50783,8 @@ aVn
aVn
aYd
aYd
-aad
-aad
+aah
+aah
aad
aad
aad
@@ -53231,9 +50866,9 @@ apu
asL
atj
atL
-bcm
-bcm
-bcm
+atL
+atL
+atL
agM
ahc
ahu
@@ -53374,8 +51009,8 @@ asL
apu
agM
agM
-bcm
-bcm
+atL
+atL
agM
agM
agM
@@ -53517,8 +51152,8 @@ apu
ahc
agM
bcp
-bcm
-bcm
+bXC
+atL
atL
atj
ayc
@@ -53623,9 +51258,9 @@ aAD
aAD
aAD
aAD
-aAI
-aAI
-aAI
+sGh
+qJe
+jkI
aef
aeZ
afN
@@ -53762,15 +51397,15 @@ aaf
aaf
aaf
aAD
-aAI
-aAI
-aAI
-aAI
-aAI
-aAI
+udU
+sYi
+aAD
+xfm
+syt
+xfm
aef
aeS
-afO
+tAo
aBB
aCr
aDa
@@ -53904,15 +51539,15 @@ aaf
aaf
aaf
aAD
+tcK
aAI
-aAI
-aAI
-aAI
-aAI
-aAI
-aef
-aeS
-afO
+aAD
+rtV
+ctE
+lEB
+ucq
+qtC
+dvU
aBC
aCr
aDb
@@ -54046,12 +51681,12 @@ aag
aaf
aaf
aAD
-aAI
-aAI
-aAI
-aAI
-aAI
-aAI
+eJc
+udU
+aAD
+syt
+dNE
+wjd
aef
afi
afQ
@@ -54420,7 +52055,7 @@ aXm
aXI
aYd
aYd
-aYM
+aGz
aYd
aYd
aLL
@@ -54481,7 +52116,7 @@ adD
aao
afj
age
-aBB
+azI
aCr
aDt
aEg
@@ -54494,7 +52129,7 @@ aJl
aHK
aOS
aGa
-bbm
+haf
anW
aoj
aoS
@@ -54514,7 +52149,7 @@ arg
aoS
aoj
awH
-axm
+hFn
ayh
ayh
ayh
@@ -54563,7 +52198,7 @@ aXJ
aYd
aYr
aYN
-aZh
+aKA
aYd
aZI
aWc
@@ -54619,7 +52254,7 @@ aaY
abi
ach
acL
-axa
+awY
aev
afk
agg
@@ -54761,11 +52396,11 @@ aaK
abo
aaK
aaK
-adP
+axa
aao
cPX
afO
-aBB
+elf
aCr
dYd
aEh
@@ -54891,8 +52526,8 @@ aad
aad
aad
aad
-aad
-aad
+ano
+ano
aad
aad
aad
@@ -54907,7 +52542,7 @@ adQ
aao
yaU
afO
-aBB
+duN
aCr
aDC
aEh
@@ -54938,7 +52573,7 @@ aqf
aqf
arg
aoS
-aoj
+pMd
awI
axo
ayh
@@ -55033,8 +52668,8 @@ aad
aad
aad
aad
-aad
-aad
+ano
+ano
aad
aad
aad
@@ -55272,7 +52907,7 @@ aXr
aXP
aYe
aYe
-aYR
+aJD
aYe
aYe
aZL
@@ -55415,7 +53050,7 @@ aXJ
aYe
aYv
aIg
-aZl
+aMG
aYe
aUE
aZz
@@ -55694,8 +53329,8 @@ aUW
aWf
aWE
aUb
-aXr
-aXJ
+xJs
+ljI
aYe
aYe
aYe
@@ -55742,19 +53377,19 @@ aad
aad
aad
aad
-aad
+ano
aad
aad
aan
abf
acl
acR
-abP
+acG
aeY
atN
adX
adY
-awY
+awR
adR
adU
afo
@@ -55807,7 +53442,7 @@ aCJ
aCJ
aCJ
agM
-ayG
+oGO
aJe
aJP
aKB
@@ -55904,7 +53539,7 @@ aeD
aCg
mGH
aDH
-mGH
+adx
aEX
aFv
aGw
@@ -55943,7 +53578,7 @@ agM
aCJ
aCJ
aCJ
-aCJ
+rCj
aCJ
aCJ
agM
@@ -56038,13 +53673,13 @@ aan
atP
awE
aeU
-aeU
-aeU
-aeU
-aef
-aef
+uIU
+uIU
+uIU
+azH
+cqg
afE
-azU
+aef
aef
aef
aEY
@@ -56061,7 +53696,7 @@ anZ
aol
aoT
apE
-aqh
+wDf
aqL
doa
aqL
@@ -56090,7 +53725,7 @@ aCJ
aCJ
agM
yaA
-vrS
+uku
ayG
qBb
aJR
@@ -56180,22 +53815,14 @@ aan
uHS
awC
aeU
-aeU
+uIU
bbI
fKm
lPQ
-bTE
+cqg
akA
-<<<<<<< HEAD
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAG
-aah
-=======
aAG
tdg
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
aef
aEZ
aFP
@@ -56277,7 +53904,7 @@ aYz
aIF
aZp
aYg
-aZQ
+rnA
bah
bah
aXn
@@ -56317,5752 +53944,9 @@ aad
aad
aad
aad
-adK
aad
aad
-aar
-aaE
-abr
-abr
-adf
-adT
-afb
-atO
-awC
-aeU
-aeU
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-akA
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aah
-aah
-aah
-aah
-akA
-aAG
-aah
-=======
-bbM
-lbd
-aAI
-cqg
-jcT
-ksK
-tdg
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aef
-aFa
-aFQ
-aGw
-aHk
-aef
-eWR
-mnN
-oeB
-ahx
-anI
-aob
-aom
-ahx
-guV
-apF
-ahc
-apF
-nKz
-apF
-ash
-ast
-asU
-ato
-evF
-ast
-auR
-avq
-anH
-awM
-axs
-awN
-azd
-ayG
-jnj
-agM
-cOq
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-agM
-aBs
-gjn
-aEH
-aJh
-aJQ
-aKF
-aLg
-aLN
-aMy
-aNi
-aLg
-aOl
-aOG
-aOY
-aOj
-aQd
-aQG
-aRi
-aQb
-aSk
-aST
-aTx
-aSi
-aUi
-aUL
-aUZ
-aVu
-aVL
-aWj
-aWI
-aUb
-aXr
-aXJ
-aYg
-aHO
-aYY
-aZq
-aYg
-aZQ
-bal
-baB
-bah
-baS
-baU
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(100,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aar
-abL
-abL
-abL
-abL
-aea
-afb
-atO
-awp
-axO
-aeU
-bbZ
-utQ
-lbd
-qVi
-anF
-<<<<<<< HEAD
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAG
-aah
-=======
-ksK
-tdg
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aef
-aFb
-aFZ
-aGJ
-aHq
-aef
-nUG
-mnN
-wWK
-ahx
-ait
-aoc
-aon
-aoU
-apG
-apF
-aqN
-apF
-aqN
-apF
-ash
-ast
-asU
-atp
-hoH
-ast
-auR
-avr
-avZ
-awN
-axt
-awN
-azc
-ayG
-uEK
-agM
-agM
-agM
-aIp
-aEF
-agM
-agM
-agM
-agM
-agM
-aIp
-aJi
-agM
-agM
-aLg
-aLO
-aMz
-aNj
-aLg
-aOm
-aOH
-aOZ
-aOj
-aQe
-aQH
-aRj
-aQb
-aSl
-aSU
-aTy
-aSi
-aUj
-aUM
-aVa
-aVx
-aVM
-aWk
-aWJ
-aUb
-aXr
-aXJ
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-baU
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(101,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aar
-aaJ
-abU
-acC
-abL
-aei
-afb
-atO
-awG
-aed
-aeU
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-akA
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aah
-aah
-aah
-aah
-akA
-aAG
-aah
-=======
-oPH
-idk
-bbZ
-bTE
-vuO
-ksK
-tdg
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aef
-aef
-aef
-aef
-aef
-aef
-mrj
-mnN
-bTt
-ahx
-anJ
-aod
-aoo
-ahx
-aaW
-aqi
-aqO
-mRY
-aql
-aql
-ash
-asu
-asU
-qOA
-uuu
-ast
-auR
-avs
-awa
-awN
-axt
-awN
-azd
-ayJ
-mZO
-agM
-kbZ
-cqZ
-xzn
-lQQ
-vHP
-bMP
-eUS
-axi
-mCe
-xzn
-abb
-rxq
-aMc
-aLg
-aLg
-aLg
-aNk
-aLg
-aOj
-aOj
-aPa
-aOj
-aQb
-aQb
-aRk
-aQb
-aSi
-aSi
-aTz
-aSi
-aUb
-aUb
-aUb
-aVw
-aUb
-aUb
-aUb
-aUb
-aXr
-aXP
-aYi
-aYB
-aIH
-aJw
-aZD
-aZR
-baD
-baD
-baO
-baT
-baU
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(102,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aar
-aaO
-abV
-acF
-abL
-aek
-afb
-atO
-awz
-aeU
-aeU
-axP
-axP
-axP
-axP
-<<<<<<< HEAD
-akA
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-akA
-aAI
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-vuO
-ksK
-oKn
-oKn
-oKn
-ylH
-oMC
-guO
-aaU
-rNu
-mnN
-oeB
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-ahx
-ahx
-ahx
-ahx
-ahx
-apF
-apF
-aqP
-apF
-apF
-apF
-ash
-asv
-asU
-atr
-atR
-auv
-auR
-avt
-awb
-awN
-abA
-auR
-aze
-ayG
-oKY
-qKn
-sHO
-uKS
-ayG
-ayG
-ayG
-ayG
-ayG
-ayG
-ayG
-ayG
-aJg
-nsp
-aKH
-aLh
-aNQ
-aMA
-aNl
-aOT
-aOn
-aOI
-aPb
-aPI
-aQf
-aQI
-aRl
-aRN
-aSm
-aOI
-aTA
-aTU
-aUk
-aUN
-aVb
-aWW
-aVN
-aWl
-aWK
-aWU
-aXw
-aXO
-aYj
-aHW
-aII
-aJx
-aKS
-aKS
-aVG
-aZD
-baP
-baT
-baU
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(103,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aan
-aaR
-abL
-abL
-abL
-ael
-aan
-atQ
-awV
-axQ
-adZ
-ayB
-ayZ
-aAc
-aAi
-asT
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAI
-adK
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-pVp
-uVK
-oKn
-fFb
-meS
-meS
-meS
-aaU
-aaU
-qJl
-aaU
-aaU
-bwr
-bwr
-cZL
-haw
-pKR
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-apF
-aqP
-apF
-arL
-arO
-asi
-asw
-asw
-ats
-atS
-auw
-auR
-avu
-awc
-awN
-axt
-aym
-azf
-ayG
-byn
-uUP
-tVd
-eow
-kAG
-rZZ
-ghg
-wxa
-glc
-glc
-glc
-hTz
-rVb
-kPT
-bbn
-aLi
-aLQ
-aMB
-aNm
-aNR
-aOo
-aOJ
-aPc
-aPJ
-aQg
-aQJ
-aNm
-aRO
-aVv
-aOJ
-aNm
-aTV
-aUl
-aUO
-aVc
-aVy
-aVO
-aWm
-aWL
-aVn
-aXP
-aXP
-aYi
-aYi
-aZb
-aYi
-aYi
-aZS
-bao
-baC
-baQ
-aYi
-baU
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(104,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-adK
-aad
-aad
-aan
-aan
-abX
-acG
-abX
-aan
-aan
-acP
-awW
-axR
-aee
-ayC
-aza
-aAd
-axP
-<<<<<<< HEAD
-awB
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAz
-aAI
-adK
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aAz
-aAI
-uVK
-jXR
-xtV
-tOe
-xRP
-meS
-dNP
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-okP
-tRD
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-apF
-aqQ
-arl
-ark
-apF
-ash
-asx
-asU
-atp
-atT
-aux
-auR
-avv
-awd
-auR
-awN
-auR
-azg
-cWS
-rRC
-agM
-aCO
-aCO
-aCO
-aEI
-aFw
-aCO
-aCO
-aCO
-aHG
-aHG
-aHG
-aHG
-aCO
-aLj
-aLj
-aLj
-aNn
-aNS
-aNS
-aNS
-aPd
-aPK
-aPK
-aPK
-aRm
-aPK
-aSo
-aSo
-aqS
-aSo
-aUm
-aUm
-aUq
-aUr
-xnn
-aWn
-aWn
-aVn
-aVn
-aVn
-aYi
-aHX
-aZc
-aJD
-aYi
-aZD
-aZD
-baD
-aZD
-baT
-baU
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(105,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aan
-acc
-acI
-adm
-aan
-aff
-aff
-awX
-aff
-aff
-ayC
-azE
-axP
-axP
-<<<<<<< HEAD
-axI
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-axK
-aAI
-adK
-aah
-aah
-aah
-aah
-aah
-=======
-bPH
-ksA
-nlO
-gEn
-kAn
-miP
-saF
-cUB
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-ahk
-qPs
-qhr
-apF
-aqP
-arl
-apF
-apF
-ash
-ast
-asU
-att
-atU
-auy
-auR
-avw
-awe
-awO
-axu
-auR
-azh
-ayG
-vDb
-aBY
-aCP
-aDu
-aDX
-aEJ
-aFx
-sya
-aGx
-aHl
-aDu
-aDu
-aDu
-aDu
-aCS
-aLj
-aLR
-aMC
-aNo
-aNS
-aOp
-aOK
-aPe
-aPK
-aQh
-aQK
-aRn
-aPK
-aSp
-aSV
-aTC
-aSo
-aUn
-aUp
-aVd
-aVz
-aUt
-aWM
-aWM
-aWV
-aVn
-aHg
-aYi
-aYE
-aIM
-aZu
-aYi
-aZU
-aVH
-baE
-baD
-baT
-baU
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(106,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aan
-ace
-acK
-adq
-aan
-aff
-auq
-ady
-ayd
-aff
-aaI
-acA
-axP
-aeF
-axK
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAI
-adK
-aah
-aah
-aah
-aah
-aah
-=======
-aAI
-uVK
-joK
-xts
-meS
-tOe
-xQi
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aaU
-agQ
-ahp
-ahC
-akI
-anf
-aaU
-ahk
-pUI
-mnN
-apF
-abQ
-arj
-apF
-aah
-ash
-ast
-asU
-atu
-asU
-ast
-auR
-avx
-awf
-awf
-axv
-auR
-azi
-ayG
-vDb
-aBY
-aCQ
-aDu
-aDu
-aDu
-aFy
-aFR
-aFR
-aFR
-aFR
-aIr
-aJm
-aJV
-aDu
-aLj
-aLS
-aMD
-aNp
-aNS
-aOq
-aOL
-aPf
-aPK
-aQi
-aQL
-aRo
-aPK
-aSq
-aSW
-aTD
-aSo
-acw
-aUP
-aVe
-aVA
-aVQ
-aUP
-aUP
-pxk
-aVn
-anK
-aYi
-aYi
-aYi
-aYi
-aYi
-aYi
-aYi
-aYi
-aYi
-aYi
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(107,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aan
-aan
-aan
-aan
-aan
-aff
-aur
-awZ
-aye
-aff
-axP
-axP
-axP
-aeJ
-<<<<<<< HEAD
-azK
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAz
-aAI
-adK
-aah
-aah
-aah
-aah
-aah
-=======
-aAz
-aAI
-uVK
-lCH
-iwQ
-tOe
-meS
-vEc
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aaU
-agS
-ahq
-ajP
-akY
-anq
-aaU
-qJl
-aaU
-aaU
-aaU
-abR
-ark
-apF
-aah
-ash
-ast
-asU
-atv
-asU
-ast
-auR
-avy
-awg
-awP
-axw
-auR
-azj
-ayI
-svZ
-aBY
-aCR
-aDv
-aDu
-aEK
-aFz
-aEK
-aEK
-aEK
-aDu
-atm
-aCQ
-aJV
-mtL
-aLj
-aLT
-aME
-aNq
-aNS
-aOr
-aOM
-aPg
-aPK
-aQj
-aQM
-aRp
-aPK
-aSr
-aSX
-aTE
-aSo
-acz
-aUP
-aVf
-aVB
-aVf
-aUP
-aUP
-aWX
-aUm
-bcD
-bcI
-bcK
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(108,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aff
-auo
-adG
-ayf
-<<<<<<< HEAD
-ayD
-azb
-azG
-adr
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aff
-aAI
-aAI
-aAD
-=======
-aff
-oto
-aAI
-jOI
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-afy
-azT
-aAa
-<<<<<<< HEAD
-aah
-aah
-aah
-bbj
-bbj
-bbj
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-adK
-aah
-aah
-bbj
-bbj
-bbj
-=======
-uVK
-ojM
-cUB
-wOK
-fFT
-rxD
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-bbj
-agT
-ahr
-ajR
-alu
-anr
-abJ
-abM
-abJ
-abJ
-abO
-abS
-arC
-apF
-aah
-ash
-asy
-asV
-atw
-atV
-auz
-auR
-avz
-awh
-awQ
-axx
-auR
-azk
-ayG
-tNJ
-agM
-aCS
-aCO
-aDY
-aEL
-aFA
-aEL
-aEL
-aEL
-aDu
-aIt
-aJn
-aJV
-aDu
-aLj
-aLU
-aMF
-aNr
-aNS
-aOs
-aON
-aPh
-aPK
-aQk
-aQN
-aRq
-aPK
-aSs
-aSY
-aTF
-aSo
-afZ
-aUP
-aVf
-aVB
-aVf
-aUP
-aUP
-aWY
-aUm
-bcE
-aUP
-bcL
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(109,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bcV
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeE
-afm
-afm
-axb
-afm
-afm
-aeE
-aeE
-azV
-azV
-azV
-aAb
-<<<<<<< HEAD
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-adK
-aah
-=======
-aAD
-uVK
-bbj
-bbj
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-bbj
-bbj
-bbj
-ahg
-ahz
-ajZ
-alD
-anL
-lry
-ruj
-lry
-lry
-lry
-aql
-arl
-apF
-aah
-ash
-ash
-ash
-ash
-ash
-ash
-auR
-auR
-auR
-auR
-auR
-ayn
-azd
-ayG
-vDb
-aAR
-agM
-aCO
-aDZ
-aEM
-aFB
-aFS
-aEM
-aHm
-aDu
-aIu
-aJo
-aDu
-aKJ
-aLj
-aLV
-aME
-aNs
-aNS
-aOt
-aOM
-aPi
-aPK
-aQl
-aQM
-aRr
-aPK
-aSt
-aSX
-aTG
-aSo
-arm
-aUP
-aVf
-aUs
-aUu
-aVP
-aVP
-aWZ
-bcj
-bcF
-aUP
-bcM
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(110,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeE
-afn
-avk
-axc
-ayg
-ayE
-azu
-azH
-azW
-aAe
-aeE
-<<<<<<< HEAD
-aAz
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAz
-adK
-aah
-=======
-qhk
-aAD
-hGe
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-bbj
-bbx
-bbJ
-bbV
-bbj
-ahk
-ahA
-ahk
-ahA
-aop
-lry
-fkx
-yey
-nmb
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-agM
-azl
-iti
-vDb
-aBZ
-agM
-aCO
-aEa
-aEM
-aFC
-aFT
-aGy
-aHn
-aDu
-aIv
-aDu
-aCP
-aDu
-aLj
-aLj
-aMG
-aLj
-aNS
-aNS
-aOO
-aNS
-aPK
-aPK
-aQO
-aPK
-aPK
-aSo
-aSZ
-aSo
-aSo
-arD
-aUP
-aVf
-aVB
-aVf
-aUP
-aUP
-aXa
-aUm
-bcG
-aUP
-bcL
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(111,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeE
-afx
-avl
-axd
-ayj
-ayF
-azy
-azI
-azX
-aAg
-aeE
-aAz
-<<<<<<< HEAD
-aah
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-adK
-aah
-=======
-aAD
-uVK
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-bbj
-bby
-bbK
-bbW
-bbj
-aaU
-aaU
-aaU
-aaU
-aBo
-lry
-tHb
-emK
-vkL
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-azm
-mRF
-bMs
-atx
-atx
-aCO
-aCO
-acr
-aFD
-aFD
-aFD
-aCO
-aeL
-aIw
-aDu
-aCQ
-aDu
-aLj
-aLW
-aMH
-aNt
-aNS
-aOu
-aOP
-aPj
-aPK
-aQm
-aQP
-aRs
-aPK
-aSu
-aTa
-aTH
-aSo
-aTB
-aUP
-aVg
-aVC
-aVR
-aWp
-aWp
-aXb
-aUm
-bcH
-bcJ
-bcN
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(112,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeE
-afB
-avQ
-axj
-ayk
-ayK
-azv
-azH
-azY
-aAh
-aeE
-aAz
-<<<<<<< HEAD
-aah
-||||||| parent of 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-adK
-=======
-aAD
->>>>>>> 7c76d267c9... Merge pull request #9645 from SweetBlueSylveon/The-Clime-Offices
-aAW
-bbr
-bbz
-bbL
-bbY
-nbj
-mnN
-mnN
-mnN
-qSJ
-aBp
-nmA
-fvL
-jnN
-nZj
-lry
-aql
-nlo
-apF
-aah
-aah
-aah
-aah
-atx
-atW
-auA
-auS
-avA
-atW
-atx
-axy
-ayo
-azn
-bSx
-raS
-aCa
-axy
-atx
-aEb
-aVi
-aFE
-scf
-aLK
-act
-aDu
-aIx
-aDu
-aCR
-aKK
-aLj
-aLX
-aMI
-aNu
-aNS
-aOv
-aOQ
-aPk
-aPK
-aQn
-aQQ
-aRt
-aPK
-aSv
-aTb
-aTI
-aSo
-aUo
-aUQ
-bHR
-aVD
-aVS
-aga
-bcJ
-aXc
-aUm
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(113,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeE
-afD
-avl
-axF
-ayl
-avl
-azw
-aeE
-aeE
-aeE
-aeE
-aAA
-aAH
-aAX
-bbj
-bbA
-bbj
-bbj
-aaU
-aaU
-aaU
-aaU
-aaU
-iaI
-lry
-qbw
-cWJ
-lVt
-lry
-aql
-aql
-apF
-aah
-aah
-aah
-aah
-atx
-afG
-auB
-auB
-auB
-aex
-atx
-axy
-ayo
-azn
-auU
-tLx
-aCa
-axy
-atx
-afY
-aVT
-auB
-auB
-paJ
-aCO
-aHH
-aIu
-aDu
-aDu
-aDu
-aLj
-aLj
-aLj
-aLj
-aNS
-aNS
-aNS
-aNS
-aPK
-aPK
-aPK
-aPK
-aPK
-aSo
-aSo
-aSo
-aUm
-aUm
-aUm
-cwS
-aVD
-bcT
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(114,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aeE
-afL
-avR
-axG
-ayt
-avl
-azx
-azH
-azW
-aAe
-aeE
-aAI
-dSg
-wvV
-fVG
-aBh
-fVG
-fVG
-bHK
-fVG
-fVG
-fVG
-pIG
-aBq
-lry
-mxi
-fkx
-vBy
-lry
-aqj
-cZF
-apF
-aah
-aah
-aah
-aah
-atx
-atX
-auB
-auT
-avB
-awi
-atx
-atx
-atx
-azo
-qfJ
-mOz
-atx
-atx
-atx
-atx
-aEO
-auB
-auB
-aGA
-aCO
-aHI
-aIy
-aJW
-aJW
-aJW
-aLk
-aCP
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aUm
-grD
-tAT
-aVj
-nRK
-bcm
-aWM
-qKk
-aUm
-baU
-baU
-baU
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(115,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aeE
-agq
-avS
-axH
-ayu
-ayL
-azz
-azJ
-azX
-aAg
-aeE
-cUh
-uwD
-gYx
-pdo
-gVF
-aAD
-aBi
-aAD
-aAD
-aAD
-aAD
-lry
-lry
-lry
-oMv
-rIU
-biK
-lry
-aql
-sJX
-apF
-aah
-aah
-aah
-aah
-atx
-atY
-auB
-auV
-avC
-auB
-aCT
-aCT
-ayp
-azp
-mRF
-rYL
-ayp
-aCT
-avA
-aIo
-aEO
-auB
-auB
-lZU
-aCO
-jCv
-aIz
-aJV
-aDu
-aDu
-aLl
-aJn
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aUm
-xtO
-cwS
-aUP
-rnt
-aUP
-aUP
-sch
-aWn
-baU
-baU
-baU
-baU
-aah
-aah
-aah
-aad
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(116,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-ack
-acM
-acM
-aen
-aig
-auL
-xpP
-ayv
-ayM
-bcf
-azH
-azY
-aAh
-aeE
-fWT
-fWT
-fAv
-fWT
-fWT
-fWT
-aAI
-aAI
-aAI
-cNL
-aAI
-lry
-uaa
-lry
-wRb
-fkx
-vCn
-lry
-apF
-apF
-apF
-aah
-<<<<<<< HEAD
-aah
-aah
-adK
-atx
-atZ
-auC
-auC
-avD
-awj
-awj
-awj
-ayq
-azq
-jva
-dZW
-aCb
-aCU
-aCU
-aCU
-aEP
-aFX
-aFX
-aGB
-||||||| parent of 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
-ash
-asy
-asV
-atw
-atV
-auz
-auR
-avz
-awh
-awQ
-axx
-auR
-azk
-ayG
-tNJ
-agM
-aCS
-=======
-ash
-asy
-asV
-atw
-atV
-auz
-auR
-avz
-awh
-awQ
-axx
-auR
-azk
-kBW
-tNJ
-agM
-aCS
->>>>>>> 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
-aCO
-aHJ
-aHJ
-aHJ
-aCO
-aHJ
-aHJ
-aHJ
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aUm
-lei
-wVm
-uke
-jAq
-glu
-bcJ
-mvl
-aUm
-aad
-baU
-baU
-baU
-baU
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(117,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aeE
-aeE
-aeE
-azH
-ayw
-aeE
-aeE
-aeE
-aeE
-aeE
-nlT
-naO
-jvS
-lBO
-dtz
-qnZ
-fWT
-nMH
-oId
-fRJ
-qaa
-vHE
-lry
-lry
-lry
-iWa
-fkx
-rse
-lry
-aah
-aah
-aah
-aah
-aah
-aah
-adK
-aDq
-aEc
-aEc
-aFG
-aFH
-aCT
-aCT
-aCT
-auB
-auB
-auB
-auB
-auB
-aCT
-aCT
-aCT
-aWN
-lsh
-lsh
-lsh
-wek
-pvL
-hOH
-atW
-atx
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aUm
-aUm
-kcv
-kcv
-kcv
-kcv
-kcv
-aUm
-aUm
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(118,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-naC
-ajb
-awu
-lMK
-ayx
-ayN
-azA
-naC
-aah
-aah
-fWT
-rzF
-lXE
-gIt
-wvv
-tXi
-fWT
-aAD
-aAD
-aAD
-aAD
-aAD
-aAD
-aah
-lry
-kuT
-kuT
-lry
-lry
-aah
-aah
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-baU
-aty
-afH
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aty
-atx
-atx
-atx
-atx
-aty
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aty
-atx
-atx
-atx
-atx
-aty
-afH
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aub
-aty
-aad
-aad
-aad
-aad
-aad
-=======
-aah
-aah
-aah
-aah
-adK
-aDw
-aFF
-aFF
-aFF
-aFW
-auB
-auB
-auB
-auB
-auB
-auU
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-ovr
-ird
-mZQ
-auB
-atx
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(119,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-naC
-amc
-arB
-arB
-ayy
-ayO
-azB
-naC
-aah
-aah
-fWT
-qhs
-xZq
-bWg
-xSF
-gWO
-fWT
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aah
-aad
-aad
-aah
-aah
-aah
-aah
-<<<<<<< HEAD
-aah
-aah
-aah
-aah
-<<<<<<< HEAD
-baU
-atz
-atA
-atA
-atA
-atA
-atA
-atA
-atA
-auc
-auc
-auc
-auc
-atA
-atA
-auc
-auc
-auc
-auc
-atA
-atA
-auD
-auc
-auc
-auc
-auD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-auc
-auc
-atz
-auc
-auc
-atA
-atA
-atA
-atA
-atA
-auc
-auc
-auc
-atA
-auc
-atA
-auc
-auc
-auc
-atA
-atA
-atA
-atA
-atA
-auD
-aad
-aad
-aad
-aad
-aad
-=======
-aty
-atx
-atx
-atx
-atx
-aty
-atB
-oeA
-oeA
-oeA
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-oeA
-oeA
-oeA
-oeA
-tPC
-tPC
-tPC
-aGC
-aty
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(120,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-||||||| parent of 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
-aeE
-afm
-afm
-axb
-afm
-afm
-aeE
-aeE
-azV
-azV
-azV
-aAb
-aAD
-uVK
-bbj
-bbj
-bbj
-bbj
-bbj
-ahg
-ahz
-ajZ
-alD
-anL
-fgm
-ruj
-lry
-lry
-lry
-aql
-arl
-apF
-aah
-ash
-ash
-ash
-ash
-ash
-ash
-auR
-auR
-auR
-auR
-auR
-ayn
-azd
-ayG
-vDb
-aAR
-agM
-aCO
-aDZ
-aEM
-aFB
-aFS
-aEM
-aHm
-aDu
-aIu
-aJo
-aDu
-aKJ
-aLj
-aLV
-aME
-aNs
-aNS
-aOt
-aOM
-aPi
-aPK
-aQl
-aQM
-aRr
-aPK
-aSt
-aSX
-aTG
-aSo
-arm
-bcT
-aVf
-aUs
-aUu
-iee
-aVP
-aWZ
-bcj
-bcF
-gzO
-bcM
-aUm
-aUm
-aUm
-aah
-aah
-aah
-=======
-aeE
-afm
-afm
-axb
-afm
-afm
-aeE
-aeE
-azV
-azV
-azV
-aAb
-aAD
-uVK
-bbj
-bbj
-bbj
-bbj
-bbj
-ahg
-ahz
-ajZ
-alD
-anL
-fgm
-ruj
-lry
-lry
-lry
-aql
-arl
-apF
-aah
-ash
-ash
-ash
-ash
-ash
-ash
-auR
-auR
-auR
-auR
-auR
-ayn
-azd
-jAo
-vDb
-aAR
-agM
-aCO
-aDZ
-aEM
-aFB
-aFS
-aEM
-aHm
-aDu
-aIu
-aJo
-aDu
-aKJ
-aLj
-aLV
-aME
-aNs
-aNS
-aOt
-aOM
-aPi
-aPK
-aQl
-aQM
-aRr
-aPK
-aSt
-aSX
-aTG
-aSo
-arm
-bcT
-aVf
-aUs
-aUu
-iee
-aVP
-aWZ
-bcj
-bcF
-gzO
-bcM
-aUm
-aUm
-aUm
-aah
-aah
-aah
->>>>>>> 3209d9c2a7... Merge pull request #11241 from VOREStation/Arokha/moretgmc
-aah
-aah
-naC
-amP
-awv
-awv
-ayz
-ayP
-azC
-naC
-aah
-aah
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-<<<<<<< HEAD
-aah
-aah
-aah
-aad
-aad
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-=======
-auD
-atz
-atz
-atz
-atz
-atz
-auc
-auc
-aFU
-atA
-atA
-atA
-atA
-aJp
-aub
-aub
-aub
-wXW
-atA
-atA
-atA
-atA
-mtl
-auc
-auc
-auc
-auc
-auc
-auc
-auD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aaa
-"}
-(121,1,1) = {"
-aaa
-=======
-aaa
-"}
-(121,1,1) = {"
-aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-afm
-afm
-axb
-afm
-afm
-aeE
-aeE
-azV
-azV
-azV
-aAb
-aAD
-uVK
-bbj
-bbj
-bbj
-bbj
-bbj
-ahg
-ahz
-ajZ
-alD
-anL
-fgm
-ruj
-lry
-lry
-lry
-aql
-arl
-apF
-aah
-ash
-ash
-ash
-ash
-ash
-ash
-auR
-auR
-auR
-auR
-auR
-ayn
-azd
-jAo
-vDb
-aAR
-agM
-aCO
-aDZ
-aEM
-aFB
-aFS
-aEM
-aHm
-aDu
-aIu
-aJo
-aDu
-aKJ
-aLj
-aLV
-aME
-aNs
-aNS
-aOt
-aOM
-aPi
-aPK
-aQl
-aQM
-aRr
-aPK
-aSt
-aSX
-aTG
-aSo
-arm
-bcT
-aVf
-aUs
-aUu
-iee
-aVP
-aWZ
-bcj
-bcF
-gzO
-bcM
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-aeE
-aeE
-afm
-afm
-axb
-afm
-afm
-aeE
-aeE
-azV
-azV
-azV
-aAb
-aAD
-uVK
-bbj
-bbj
-bbj
-bbj
-bbj
-ahg
-ahz
-ajZ
-alD
-anL
-fgm
-ruj
-lry
-lry
-lry
-aql
-arl
-apF
-aah
-ash
-ash
-ash
-ash
-ash
-ash
-auR
-auR
-auR
-auR
-auR
-ayn
-azd
-jAo
-vDb
-aAR
-agM
-aCO
-aDZ
-aEM
-aFB
-aFS
-aEM
-aHm
-aDu
-aIu
-aJo
-aDu
-aKJ
-aLj
-aLV
-aME
-aNs
-aNS
-aOt
-aOM
-aPi
-aPK
-aQl
-aQM
-aRr
-aPK
-aSt
-aSX
-aTG
-aSo
-arm
-bcT
-aVf
-aUs
-aUu
-iee
-aVP
-aWZ
-bcj
-bcF
-gzO
-bcM
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-afn
-avk
-axc
-ayg
-ayE
-azu
-azH
-azW
-aAe
-aeE
-qhk
-aAD
-hGe
-bbj
-bbx
-bbJ
-bbV
-bbj
-ahk
-ahA
-ahk
-ahA
-aop
-lry
-sHK
-yey
-nmb
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-agM
-azl
-iti
-vDb
-aBZ
-agM
-aCO
-aEa
-aEM
-aFC
-aFT
-aGy
-aHn
-aDu
-aIv
-aDu
-aCP
-aDu
-aLj
-aLj
-ave
-aLj
-aNS
-aNS
-awk
-aNS
-aPK
-aPK
-azr
-aPK
-aPK
-aSo
-aDL
-aSo
-aSo
-arD
-bcT
-aVf
-nTC
-aVf
-cwS
-aUP
-aXa
-aUm
-bcG
-ktr
-xyI
-pud
-sJP
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-cdl
-jrh
-afn
-avk
-axc
-ayg
-ayE
-azu
-azH
-azW
-aAe
-aeE
-qhk
-aAD
-hGe
-bbj
-bbx
-bbJ
-bbV
-bbj
-ahk
-ahA
-ahk
-ahA
-aop
-lry
-sHK
-yey
-nmb
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-agM
-azl
-iti
-vDb
-aBZ
-agM
-aCO
-aEa
-aEM
-aFC
-aFT
-aGy
-aHn
-aDu
-aIv
-aDu
-aCP
-aDu
-aLj
-aLj
-ave
-aLj
-aNS
-aNS
-awk
-aNS
-aPK
-aPK
-azr
-aPK
-aPK
-aSo
-aDL
-aSo
-aSo
-arD
-bcT
-aVf
-nTC
-aVf
-cwS
-aUP
-aXa
-aUm
-bcG
-ktr
-xyI
-pud
-sJP
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(121,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-ajK
-aad
-aad
-aad
-aah
-naC
-aAC
-avY
-axJ
-ayA
-ayX
-azD
-naC
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aue
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aah
-aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-wXW
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-aad
-aad
-aad
-aad
-aad
-=======
-aah
-aah
-<<<<<<< HEAD
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aJq
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-aad
-aad
-aad
-aad
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aeE
-afx
-avl
-axd
-ayj
-ayF
-azy
-azI
-azX
-aAg
-aeE
-aAz
-aAD
-uVK
-bbj
-bby
-bbK
-bbW
-bbj
-aaU
-aaU
-aaU
-xik
-aBo
-lry
-tHb
-emK
-vkL
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-azm
-mRF
-bMs
-atx
-atx
-aCO
-aCO
-acr
-aFD
-aFD
-aFD
-aCO
-aeL
-aIw
-aDu
-aCQ
-qQo
-aLj
-aLW
-aMH
-avN
-aNS
-aOu
-aOP
-ayY
-aPK
-aQm
-aQP
-azF
-aPK
-aSu
-aTa
-aFV
-aSo
-aTB
-bcm
-aVg
-aVC
-aVR
-laR
-aUP
-aXb
-aUm
-bcH
-bcJ
-bcN
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aeE
-sLf
-jhN
-afx
-mjL
-axd
-ayj
-ayF
-azy
-azI
-azX
-aAg
-aeE
-aAz
-aAD
-uVK
-bbj
-bby
-bbK
-bbW
-bbj
-aaU
-aaU
-aaU
-xik
-aBo
-lry
-tHb
-emK
-vkL
-lry
-aql
-arl
-apF
-aah
-aah
-aah
-aah
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-azm
-mRF
-bMs
-atx
-atx
-aCO
-aCO
-acr
-aFD
-aFD
-aFD
-aCO
-aeL
-aIw
-aDu
-aCQ
-qQo
-aLj
-aLW
-aMH
-avN
-aNS
-aOu
-aOP
-ayY
-aPK
-aQm
-aQP
-azF
-aPK
-aSu
-aTa
-aFV
-aSo
-aTB
-bcm
-aVg
-aVC
-aVR
-laR
-aUP
-aXb
-aUm
-bcH
-bcJ
-bcN
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-afB
-avQ
-axj
-ayk
-ayK
-azv
-azH
-azY
-aAh
-aeE
-aAz
-aAD
-aAW
-bbr
-bbz
-bbL
-bbY
-nbj
-mnN
-mnN
-mnN
-mnN
-aBp
-nmA
-fvL
-jnN
-nZj
-lry
-aql
-nlo
-apF
-aah
-aah
-aah
-aah
-atx
-atW
-auA
-auS
-avA
-atW
-atx
-axy
-ayo
-azn
-bSx
-raS
-aCa
-axy
-atx
-aEb
-aVi
-aFE
-scf
-aLK
-act
-aDu
-aIx
-aDu
-aCR
-aKK
-aLj
-aLX
-aMI
-aNu
-aNS
-aOv
-aOQ
-aPk
-aPK
-aQn
-aQQ
-aRt
-aPK
-aSv
-aTb
-aTI
-aSo
-aUo
-aUQ
-bHR
-aVD
-aVS
-aga
-xZB
-aXc
-aUm
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-vwM
-avl
-afB
-avQ
-axj
-ayk
-ayK
-azv
-azH
-azY
-aAh
-aeE
-aAz
-aAD
-aAW
-bbr
-bbz
-bbL
-bbY
-nbj
-mnN
-mnN
-mnN
-mnN
-aBp
-nmA
-fvL
-jnN
-nZj
-lry
-aql
-nlo
-apF
-aah
-aah
-aah
-aah
-atx
-atW
-auA
-auS
-avA
-atW
-atx
-axy
-ayo
-azn
-bSx
-raS
-aCa
-axy
-atx
-aEb
-aVi
-aFE
-scf
-aLK
-act
-aDu
-aIx
-aDu
-aCR
-aKK
-aLj
-aLX
-aMI
-aNu
-aNS
-aOv
-aOQ
-aPk
-aPK
-aQn
-aQQ
-aRt
-aPK
-aSv
-aTb
-aTI
-aSo
-aUo
-aUQ
-bHR
-aVD
-aVS
-aga
-xZB
-aXc
-aUm
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-afD
-avl
-axF
-ayl
-avl
-azw
-aeE
-aeE
-aeE
-aeE
-aAA
-aAH
-aAX
-sQc
-bbA
-bbj
-bbj
-aaU
-aaU
-aaU
-aaU
-aaU
-iaI
-lry
-qbw
-cWJ
-lVt
-lry
-aql
-aql
-apF
-aah
-aah
-aah
-aah
-atx
-afG
-auB
-auB
-auB
-aex
-atx
-axy
-ayo
-azn
-auU
-tLx
-aCa
-axy
-atx
-afY
-aVT
-auB
-auB
-paJ
-aCO
-aHH
-aIu
-aDu
-aDu
-aDu
-aLj
-aLj
-aLj
-aLj
-aNS
-aNS
-aNS
-aNS
-aPK
-aPK
-aPK
-aPK
-aPK
-aSo
-aSo
-aSo
-aUm
-aUm
-aUm
-cwS
-aVD
-bcT
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-nLm
-avl
-afD
-vXS
-axF
-ayl
-avl
-azw
-aeE
-aeE
-aeE
-aeE
-aAA
-aAH
-aAX
-sQc
-bbA
-bbj
-bbj
-aaU
-aaU
-aaU
-aaU
-aaU
-iaI
-lry
-qbw
-cWJ
-lVt
-lry
-aql
-aql
-apF
-aah
-aah
-aah
-aah
-atx
-afG
-auB
-auB
-auB
-aex
-atx
-axy
-ayo
-azn
-auU
-tLx
-aCa
-axy
-atx
-afY
-aVT
-auB
-auB
-paJ
-aCO
-aHH
-aIu
-aDu
-aDu
-aDu
-aLj
-aLj
-aLj
-aLj
-aNS
-aNS
-aNS
-aNS
-aPK
-aPK
-aPK
-aPK
-aPK
-aSo
-aSo
-aSo
-aUm
-aUm
-aUm
-cwS
-aVD
-bcT
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(122,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-naC
-naC
-naC
-naC
-naC
-naC
-naC
-naC
-aah
-aah
-aah
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-afL
-avR
-axG
-ayt
-avl
-azx
-azH
-azW
-aAe
-aeE
-aAI
-dSg
-wvV
-fVG
-aBh
-fVG
-fVG
-bHK
-fVG
-fVG
-qSJ
-pIG
-aBq
-lry
-mxi
-fkx
-vBy
-lry
-aqj
-cZF
-apF
-aah
-aah
-aah
-aah
-atx
-atX
-auB
-auT
-avB
-awi
-atx
-atx
-atx
-azo
-qfJ
-mOz
-atx
-atx
-atx
-atx
-aEO
-auB
-auB
-aGA
-aCO
-aHI
-aIy
-aJW
-aJW
-aJW
-aLk
-aCP
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aUm
-grD
-tAT
-aVj
-nRK
-bcm
-aWM
-qKk
-aUm
-baU
-baU
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-bHA
-hCT
-afL
-avR
-axG
-ayt
-avl
-azx
-azH
-azW
-aAe
-aeE
-aAI
-dSg
-wvV
-fVG
-aBh
-fVG
-fVG
-bHK
-fVG
-fVG
-qSJ
-pIG
-aBq
-lry
-mxi
-fkx
-vBy
-lry
-aqj
-cZF
-apF
-aah
-aah
-aah
-aah
-atx
-atX
-auB
-auT
-avB
-awi
-atx
-atx
-atx
-azo
-qfJ
-mOz
-atx
-atx
-atx
-atx
-aEO
-auB
-auB
-aGA
-aCO
-aHI
-aIy
-aJW
-aJW
-aJW
-aLk
-aCP
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aUm
-grD
-tAT
-aVj
-nRK
-bcm
-aWM
-qKk
-aUm
-baU
-baU
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-atz
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-auD
-aad
-aad
-aad
-aad
-aad
-=======
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-aad
-aad
-<<<<<<< HEAD
-=======
aar
aaE
abr
@@ -62168,11 +54052,6 @@ baB
bah
baS
baU
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
-aad
-aad
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
@@ -62192,6 +54071,13 @@ aad
aad
aad
aad
+aaa
+"}
+(100,1,1) = {"
+aaa
+aad
+aad
+aad
aad
aad
aad
@@ -62203,52 +54089,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-<<<<<<< HEAD
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-naC
-amP
-awv
-awv
-ayz
-ayP
-azC
-naC
-aah
-aah
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-aah
-aah
-aah
-aah
-aah
-aah
-baU
-baU
-baU
-baU
-=======
aar
abL
abL
@@ -62495,125 +54335,9 @@ baD
baD
baO
baT
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
baU
aah
aah
-aah
-auD
-atz
-atz
-atz
-atz
-atz
-auc
-auc
-aFU
-atA
-atA
-atA
-atA
-aJp
-aub
-aub
-aub
-wXW
-atA
-atA
-atA
-atA
-mtl
-auc
-auc
-auc
-auc
-auc
-auc
-auD
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-naC
-amP
-awv
-awv
-ayz
-ayP
-azC
-naC
-aah
-aah
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-fWT
-aah
-aah
-aah
-aah
-aah
-aah
-baU
-baU
-baU
-baU
-baU
-aah
-aah
-aah
-auD
-atz
-atz
-atz
-atz
-atz
-auc
-auc
-aFU
-atA
-atA
-atA
-aJp
-aub
-aub
-aub
-aub
-wXW
-atA
-atA
-atA
-mtl
-auc
-auc
-auc
-auc
-auc
-auc
-auc
-auD
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -62633,60 +54357,22 @@ aad
aad
aaa
"}
-(123,1,1) = {"
+(102,1,1) = {"
aaa
aad
aad
aad
aad
aad
-<<<<<<< HEAD
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ano
-ack
-acM
-acM
-aen
-aig
-auL
-xpP
-ayv
-ayM
-bcf
-azH
-azY
-aAh
-aeE
-fWT
-fWT
-fAv
-fWT
-fWT
-fWT
-aAI
-aAI
-aAI
-cNL
-aAI
-lry
-uaa
-lry
-wRb
-fkx
-vCn
-lry
-=======
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aar
aaO
abV
@@ -62699,7 +54385,7 @@ awz
aeU
uIU
uIU
-uIU
+axz
uIU
axP
qBa
@@ -62722,344 +54408,360 @@ ahx
apF
apF
aqP
->>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever
apF
apF
apF
+ash
+asv
+asU
+atr
+atR
+auv
+auR
+avt
+awb
+awN
+abA
+auR
+aze
+ayG
+oKY
+qKn
+sHO
+uKS
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+aJg
+nsp
+aKH
+aLh
+aNQ
+aMA
+aNl
+aOT
+aOn
+aOI
+aPb
+aPI
+aQf
+aQI
+aRl
+aRN
+aSm
+aOI
+aTA
+aTU
+aUk
+aUN
+aVb
+aWW
+aVN
+aWl
+aWK
+aWU
+aXw
+aXO
+aYj
+aHW
+aII
+aJx
+aKS
+aKS
+aVG
+aZD
+baP
+baT
+baU
aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(103,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aan
+aaR
+abL
+abL
+abL
+ael
+aan
+atQ
+awV
+axQ
+adZ
+ayB
+ayZ
+aAc
+aAi
+asT
+pVp
+uVK
+oKn
+fFb
+meS
+meS
+ara
+aaU
+aaU
+qJl
+aaU
+aaU
+bwr
+bwr
+cZL
+haw
+pKR
+apF
+aqP
+apF
+arL
+arO
+asi
+asU
+asU
+ats
+atS
+auw
+auR
+avu
+awc
+awN
+axt
+aym
+azf
+rjh
+byn
+uUP
+tVd
+eow
+kAG
+rZZ
+ghg
+wxa
+glc
+sXO
+glc
+hTz
+rVb
+kPT
+bbn
+aLi
+aLQ
+aMB
+aNm
+aNR
+aOo
+aOJ
+aPc
+aPJ
+aQg
+aQJ
+aNm
+aRO
+aVv
+aOJ
+aNm
+aTV
+aUl
+aUO
+aVc
+aVy
+aVO
+aWm
+aWL
+aVn
+aXP
+aXP
+aYi
+aYi
+aKq
+aYi
+aYi
+aZS
+bao
+baC
+baQ
+aYi
+baU
aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(104,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aah
-adK
-atx
-atZ
-auC
-auC
-avD
-awj
-awj
-awj
-ayq
-azq
-jva
-dZW
-aCb
-aCU
-aCU
-aCU
-aEP
-aFX
-aFX
-aGB
+aan
+aan
+abP
+abX
+abP
+aan
+aan
+acP
+awW
+axR
+aee
+ayC
+aza
+aAd
+axP
+aAz
+oJY
+uVK
+jXR
+xtV
+qEW
+xRP
+sVe
+dNP
+pFF
+pFF
+pFF
+pFF
+pFF
+pFF
+xTI
+okP
+okP
+omy
+aqQ
+tnF
+rhc
+apF
+ash
+asx
+asU
+hTk
+atT
+aux
+auR
+avv
+awd
+auR
+awN
+auR
+azg
+cWS
+rRC
+agM
aCO
-aHJ
-aHJ
-aHJ
aCO
-aHJ
-aHJ
-aHJ
aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aEI
+aFw
+aCO
+aCO
+aCO
+aHG
+aHG
+aHG
+aHG
+aCO
+aLj
+aLj
+aLj
+aNn
+aNS
+aNS
+aNS
+aPd
+aPK
+aPK
+aPK
+aRm
+aPK
+aSo
+aSo
+aqS
+aSo
aUm
-lei
-wVm
-uke
-jAq
-glu
-bcJ
-mvl
aUm
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ano
-ack
-acM
-acM
-aen
-aig
-auL
-xpP
-ayv
-ayM
-bcf
-azH
-azY
-aAh
-aeE
-fWT
-fWT
-fAv
-fWT
-fWT
-fWT
-aAI
-aAI
-aAI
-cNL
-aAI
-lry
-uaa
-lry
-wRb
-fkx
-vCn
-lry
-apF
-apF
-apF
-aah
-aah
-aah
-atx
-atx
-atZ
-auC
-auC
-avD
-awj
-awj
-awj
-ayq
-azq
-jva
-dZW
-aCb
-aCU
-aCU
-aCU
-aEP
-aFX
-aFX
-aGB
-aCO
-aHJ
-aHJ
-aHJ
-aCO
-aHJ
-aHJ
-aHJ
-aCO
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aUm
-lei
-wVm
-uke
-jAq
-glu
-bcJ
-mvl
-aUm
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aua
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-aud
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aJq
-=======
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-=======
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-auD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-auD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aUq
+aUr
+xnn
+aWn
+aWn
+aVn
+aVn
+aVn
+aYi
+aHX
+aZc
+aNt
+aYi
+eoh
+aZD
+baD
+aZD
+baT
+baU
aad
aad
aad
@@ -63081,7 +54783,7 @@ aad
aad
aaa
"}
-(124,1,1) = {"
+(105,1,1) = {"
aaa
aad
aad
@@ -63093,533 +54795,115 @@ aad
aad
aad
aad
-<<<<<<< HEAD
aad
aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
aah
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ano
-ano
-ano
-ano
-aeE
-aeE
-aeE
-azH
-ayw
-aeE
-aeE
-aeE
-aeE
-aeE
-nlT
-naO
-jvS
-lBO
-dtz
-qnZ
-fWT
-nMH
-oId
-fRJ
-qaa
-vHE
-lry
-lry
-lry
-iWa
-fkx
-rse
-lry
-aah
-aah
-aah
-aah
-aah
-aah
-adK
-aDq
-aEc
-aEc
-aFG
-aFH
-aCT
-aCT
-aCT
-auB
-auB
-auB
-auB
-auB
-aCT
-aCT
-aCT
-aWN
-lsh
-lsh
-lsh
-wek
-pvL
-hOH
-atW
-atx
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-ano
-ano
-ano
-ano
-aeE
-aeE
-aeE
-azH
-ayw
-aeE
-aeE
-aeE
-aeE
-aeE
-nlT
-naO
-jvS
-lBO
-dtz
-qnZ
-fWT
-nMH
-oId
-fRJ
-qaa
-vHE
-lry
-lry
-lry
-iWa
-fkx
-rse
-lry
-aah
-aah
-aah
-aah
-aah
-aah
-atx
-aDq
-aEc
-aEc
-aFG
-aFH
-aCT
-aCT
-aCT
-auB
-auB
-auB
-auB
-auB
-aCT
-aCT
-aCT
-aWN
-lsh
-lsh
-lsh
-wek
-pvL
-hOH
-atW
-atx
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 257f18b7ed... Virology Revamp (#11384)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-naC
-ajb
-awu
-lMK
-ayx
-ayN
-azA
-naC
-aah
-aah
-fWT
-rzF
-lXE
-gIt
-wvv
-tXi
-fWT
-aAD
-aAD
-aAD
-aAD
-aAD
-aAD
-aah
-lry
-kuT
-kuT
-lry
-lry
-aah
-aah
-aah
-aah
-aah
-aah
-adK
-aDw
-aFF
-aFF
-aFF
-aFW
-auB
-auB
-auB
-auB
-auB
-auU
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-ovr
-ird
-mZQ
-auB
-atx
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-naC
-ajb
-awu
-lMK
-ayx
-ayN
-azA
-naC
-aah
-aah
-fWT
-rzF
-lXE
-gIt
-wvv
-tXi
-fWT
-aAD
-aAD
-aAD
-aAD
-aAD
-aAD
-aah
-lry
-kuT
-kuT
-lry
-lry
-aah
-aah
-aah
-aah
-aah
-aah
-atx
-aDw
-aFF
-aFF
-aFF
-aFW
-auB
-auB
-auB
-auB
-auB
-auU
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-ovr
-ird
-mZQ
-auB
-atx
->>>>>>> 257f18b7ed... Virology Revamp (#11384)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-=======
-aud
-aud
-aud
-aud
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
+aan
+acc
+acI
+adm
+aan
+aff
+aff
+awX
+aff
+aff
+ayC
+azE
+axP
+axP
+bPH
+ksA
+nlO
+gEn
+kAn
+miP
+saF
+cUB
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+xqZ
+qPs
+qhr
+apF
+aqP
+arl
+apF
+apF
+ash
+ast
+asU
+att
+atU
+auy
+auR
+avw
+awe
+awO
+axu
+auR
+azh
+ikG
+vDb
+aBY
+dhS
+aCP
+aDX
+aEJ
+aFx
+sya
+aGx
+aHl
+lop
+aDu
+aDu
+aDu
+aCS
+aLj
+aLR
+aMC
+aNo
+aNS
+aOp
+aOK
+aPe
+aPK
+aQh
+aQK
+aRn
+aPK
+aSp
+aSV
+aTC
+aSo
+aUn
+aUp
+aVd
+aVz
+aUt
+aWM
+aWM
+aWV
+aVn
+aHg
+aYi
+aYE
+aIM
+aZu
+aYi
+aZU
+aVH
+baE
+baD
+baT
baU
-baU
-aah
-aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-=======
-baU
-baU
-aah
-aah
-<<<<<<< HEAD
-auD
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aah
-aty
-atx
-atx
-atx
-atx
-aty
-atB
-oeA
-oeA
-oeA
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-oeA
-oeA
-oeA
-oeA
-tPC
-tPC
-tPC
-aGC
-aty
-=======
-aah
-aah
-aty
-atx
-atx
-atx
-aty
-atB
-oeA
-oeA
-oeA
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-auB
-oeA
-oeA
-oeA
-oeA
-tPC
-tPC
-tPC
-aGC
-aty
->>>>>>> d963833121... Orange Line Upgrade (#11391)
aad
aad
aad
@@ -63639,236 +54923,298 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-baU
-baU
-aah
-aah
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aah
-=======
-aah
-aah
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-auD
-<<<<<<< HEAD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-auD
-=======
-baU
-baU
-aah
-aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-atz
-atz
-atz
-atz
-atz
-auc
-auc
-aFU
-atA
-atA
-atA
-aJp
-aub
-aub
-aub
-aub
-wXW
-atA
-atA
-atA
-mtl
-auc
-auc
-auc
-auc
-auc
-auc
-auc
-=======
-atz
-atz
-atz
-atz
-auc
-auc
-aFU
-atA
-atA
-atA
-aJp
-aub
-aub
-aub
-aub
-aub
-wXW
-atA
-atA
-atA
-gIa
-auc
-auc
-auc
-auc
-auc
-auc
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-auD
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aad
-aad
-aad
-aad
-aad
-aad
aaa
"}
-(125,1,1) = {"
+(106,1,1) = {"
aaa
aad
-<<<<<<< HEAD
aad
aad
aad
aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
+aah
+aah
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aan
+ace
+acK
+adq
+aan
+aff
+auq
+ady
+ayd
+aff
+aaI
+acA
+axP
+aeF
+axK
+ogh
+uVK
+joK
+xts
+meS
+tOe
+xQi
+aaU
+agQ
+ahp
+ahC
+akI
+anf
+aaU
+xqZ
+pUI
+mnN
+apF
+abQ
+arj
+apF
+aah
+ash
+ast
+asU
+atu
+asU
+ast
+auR
+avx
+awf
+awf
+axv
+auR
+azi
+ayG
+vDb
+aBY
+aDu
+aCP
+aCP
+aCP
+aFy
+aFR
+aFR
+aFR
+aFR
+aIr
+aJm
+aHH
+qpt
+aLj
+aLS
+aMD
+aNp
+aNS
+aOq
+aOL
+aPf
+aPK
+aQi
+aQL
+aRo
+aPK
+aSq
+aSW
+aTD
+aSo
+acw
+aVS
+aVe
+aVA
+aVQ
+bHR
+aUP
+pxk
+aVn
+anK
+aYi
+aYi
+aYi
+aYi
+aYi
+aYi
+aYi
+aYi
+aYi
+aYi
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aad
aad
aad
aad
aaa
"}
-(125,1,1) = {"
+(107,1,1) = {"
aaa
-=======
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aad
+aah
+aah
+aah
+aah
+aah
+aan
+aan
+aan
+aan
+aan
+aff
+aur
+awZ
+aye
+aff
+axP
+axP
+axP
+aeJ
+aAz
+aAI
+uVK
+lCH
+iwQ
+tOe
+meS
+vEc
+aaU
+agS
+ahq
+ajP
+akY
+anq
+xik
+gnH
+aaU
+aaU
+aaU
+abR
+ark
+apF
+aah
+ash
+ast
+asU
+atv
+asU
+ast
+auR
+avy
+awg
+awP
+axw
+auR
+azj
+ayI
+svZ
+aBY
+aCR
+aDv
+aCP
+aEK
+aFz
+aEK
+aEK
+aEK
+aCP
+atm
+aCP
+aCP
+mtL
+aLj
+aLT
+aME
+aNq
+aNS
+aOr
+aOM
+aPg
+aPK
+aQj
+aQM
+aRp
+aPK
+aSr
+aSX
+aTE
+aSo
+acz
+bcT
+aVf
+aVB
+aVf
+cwS
+aUP
+aWX
+aUm
+bcD
+bcI
+bcK
+aUm
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aaa
"}
-(125,1,1) = {"
+(108,1,1) = {"
aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-<<<<<<< HEAD
-=======
aah
aah
aah
@@ -63900,7 +55246,7 @@ uVK
ojM
cUB
wOK
-fFT
+ylH
rxD
bbj
agT
@@ -63941,11 +55287,11 @@ aFA
aEL
aEL
aEL
-aDu
+aCP
aIt
-aJn
+gAi
aJV
-aDu
+aCP
aLj
aLU
aMF
@@ -63970,16 +55316,7 @@ aVB
aVf
cKo
aUP
-<<<<<<< HEAD
aWY
-=======
-aXb
-aUm
-bcH
-wxO
-bcN
-aUm
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
aUm
bcE
aUP
@@ -63998,141 +55335,6 @@ aah
aah
aah
aah
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aeE
-vwM
-avl
-afB
-avQ
-axj
-ayk
-ayK
-azv
-azH
-azY
-aAh
-aeE
-aAz
-aAD
-aAW
-bbr
-bbz
-bbL
-bbY
-nbj
-mnN
-mnN
-mnN
-mnN
-aBp
-nmA
-fvL
-jnN
-nZj
-lry
-aql
-nlo
-apF
-aah
-aah
-aah
-aah
-atx
-oDt
-auA
-auS
-avA
-atW
-atx
-axy
-ayo
-azn
-bSx
-raS
-aCa
-axy
-atx
-aEb
-aVi
-aFE
-scf
-aLK
-act
-aDu
-aIx
-aDu
-aCR
-aKK
-aLj
-aLX
-aMI
-aNu
-aNS
-aOv
-aOQ
-aPk
-aPK
-aQn
-aQQ
-aRt
-aPK
-aSv
-aTb
-aTI
-aSo
-aUo
-aUQ
-bHR
-aVD
-aVS
-aga
-xZB
-aXc
-aUm
-aUm
-aUm
-aUm
-aUm
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
aad
aad
aad
@@ -64147,98 +55349,21 @@ aad
aad
aad
aad
-aad
-atz
-aud
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
+aaa
+"}
+(109,1,1) = {"
+aaa
+aad
+aad
aad
aad
-baU
-aah
-aah
-aah
-auD
-=======
-baU
-baU
-baU
aah
aah
aah
aah
-<<<<<<< HEAD
-auD
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aud
-aud
-aua
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-=======
-mtl
-aua
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-atz
-eDV
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aud
-aud
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-=======
-aud
-aud
-aud
-aud
-auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-=======
+aah
+aah
+aah
aah
aah
aah
@@ -64304,10 +55429,10 @@ aFB
aFS
aEM
aHm
-aDu
+aCP
fOk
aJo
-aDu
+aJV
aKJ
aLj
aLV
@@ -64356,39 +55481,6 @@ aah
aah
aah
aad
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -64399,10 +55491,137 @@ aad
aad
aad
aad
+aaa
+"}
+(110,1,1) = {"
+aaa
aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aeE
+cdl
+jrh
+afn
+avk
+axc
+ayg
+ayE
+azu
+adP
+azW
+aAe
+aeE
+qhk
+aAD
+hGe
+bbj
+bbx
+bbJ
+bbV
+bbj
+ahk
+ahA
+ahk
+ahA
+aop
+lry
+sHK
+yey
+nmb
+lry
+aql
+arl
+apF
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+agM
+azl
+iti
+vDb
+aBZ
+agM
+aCO
+aEa
+aEM
+aFC
+aFT
+aGy
+aHn
+aCP
+aIv
+aCP
+aCP
+xnS
+aLj
+aLj
+ave
+aLj
+aNS
+aNS
+awk
+aNS
+aPK
+aPK
+azr
+aPK
+aPK
+aSo
+aDL
+aSo
+aSo
+arD
+bcT
+aVf
+nTC
+aVf
+cwS
+aUP
+aXa
+aUm
+bcG
+ktr
+xyI
+pud
+sJP
+aUm
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -64416,103 +55635,292 @@ aad
aad
aaa
"}
-(126,1,1) = {"
+(111,1,1) = {"
aaa
aad
-<<<<<<< HEAD
aad
aad
aad
-aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-<<<<<<< HEAD
-aad
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aad
-baU
-baU
-aah
-aah
-auD
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-auD
-=======
-baU
-baU
-baU
aah
aah
aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
->>>>>>> d963833121... Orange Line Upgrade (#11391)
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aeE
+sLf
+jhN
+afx
+mjL
+axd
+ayj
+ayF
+azy
+axD
+azX
+aAg
+aeE
+aAz
+aAD
+uVK
+bbj
+bby
+bbK
+bbW
+bbj
+aaU
+aaU
+aaU
+xik
+aBo
+lry
+tHb
+emK
+vkL
+lry
+aql
+arl
+apF
+aah
+aah
+aah
+aah
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+azm
+mRF
+bMs
+atx
+atx
+aCO
+aCO
+acr
+aFD
+aFD
+aFD
+aCO
+aeL
+aIw
+aCP
+aCQ
+qQo
+aLj
+aLW
+aMH
+avN
+aNS
+aOu
+aOP
+ayY
+aPK
+aQm
+aQP
+azF
+aPK
+aSu
+aTa
+aFV
+aSo
+aTB
+bcm
+aVg
+aVC
+aVR
+laR
+aUP
+aXb
+aUm
+bcH
+wxO
+bcN
+aUm
+aUm
+aUm
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aad
aaa
"}
-(126,1,1) = {"
+(112,1,1) = {"
aaa
-=======
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aeE
+vwM
+avl
+afB
+avQ
+axj
+ayk
+ayK
+azv
+adP
+azY
+aAh
+aeE
+aAz
+aAD
+aAW
+bbr
+bbz
+bbL
+bbY
+nbj
+mnN
+mnN
+mnN
+mnN
+aBp
+nmA
+fvL
+jnN
+nZj
+lry
+aql
+nlo
+apF
+aah
+aah
+aah
+aah
+atx
+oDt
+auA
+auS
+avA
+atW
+atx
+axy
+ayo
+azn
+bSx
+raS
+aCa
+axy
+atx
+aEb
+aVi
+aFE
+scf
+aLK
+act
+aCP
+aIx
+aCP
+aDu
+aKK
+aLj
+aLX
+aMI
+aNu
+aNS
+aOv
+aOQ
+aPk
+aPK
+aQn
+aQQ
+aRt
+aPK
+aSv
+aTb
+aTI
+aSo
+aUo
+aUQ
+bHR
+aVD
+aVS
+aga
+xZB
+aXc
+aUm
+aUm
+aUm
+aUm
+aUm
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aaa
"}
-(126,1,1) = {"
+(113,1,1) = {"
aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
@@ -64520,171 +55928,252 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-=======
-aud
-aud
-aud
-aud
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-baU
-baU
aah
aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-=======
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aeE
+nLm
+avl
+afD
+vXS
+axF
+ayl
+avl
+azw
+aeE
+aeE
+aeE
+aeE
+aAA
+aAH
+aAX
+sQc
+bbA
+bbj
+bbj
+aaU
+aaU
+aaU
+aaU
+aaU
+iaI
+lry
+qbw
+cWJ
+lVt
+lry
+aql
+aql
+apF
+aah
+aah
+aah
+aah
+atx
+afG
+auB
+auB
+auB
+aex
+atx
+axy
+ayo
+azn
+auU
+tLx
+aCa
+axy
+atx
+afY
+aVT
+auB
+auB
+auB
+aHG
+aCP
+aIu
+aCP
+aCR
+qpt
+aLj
+aLj
+aLj
+aLj
+aNS
+aNS
+aNS
+aNS
+aPK
+aPK
+aPK
+aPK
+aPK
+aSo
+aSo
+aSo
+aUm
+aUm
+aUm
+cwS
+aVD
+qCD
+aUm
+aUm
+aUm
+aUm
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(114,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aeE
+bHA
+hCT
+afL
+avR
+axG
+ayt
+avl
+azx
+adP
+azW
+aAe
+aeE
+aAI
+dSg
+wvV
+fVG
+aBh
+fVG
+fVG
+bHK
+fVG
+fVG
+qSJ
+pIG
+aBq
+lry
+mxi
+fkx
+vBy
+lry
+aqj
+cZF
+apF
+aah
+aah
+aah
+aah
+atx
+atX
+auB
+auT
+avB
+awi
+atx
+atx
+atx
+azo
+qfJ
+mOz
+atx
+atx
+atx
+atx
+aEO
+auB
+auB
+aGA
+aCO
+aHI
+aIy
+aJW
+aJW
+aJW
+aLk
+wEk
+aCO
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aUm
+grD
+tAT
+aVj
+nRK
+bcm
+aWM
+qKk
+aUm
baU
baU
aah
aah
aah
-auD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-=======
aah
aah
aah
@@ -64695,15 +56184,335 @@ aah
aah
aah
aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(115,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
ano
ano
ano
ano
aeE
-aeE
-aeE
-azH
+agq
+avS
+axH
+ayu
+ayL
+azz
ayw
+azX
+aAg
+aeE
+cUh
+uwD
+gYx
+pdo
+gVF
+aAD
+aBi
+aAD
+aAD
+aAD
+aAD
+lry
+lry
+lry
+oMv
+rIU
+biK
+lry
+aql
+sJX
+apF
+aah
+aah
+aah
+aah
+atx
+atY
+auB
+auV
+avC
+auB
+aCT
+pUw
+ayp
+azp
+mRF
+rYL
+ayp
+pUw
+avA
+aIo
+aEO
+auB
+auB
+lZU
+aCO
+jCv
+aIz
+aJV
+cBJ
+aCP
+aLl
+aJn
+aCO
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aUm
+xtO
+cwS
+aUP
+rnt
+aUP
+aUP
+sch
+gQH
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(116,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+ano
+ack
+acM
+acM
+aen
+aig
+auL
+xpP
+ayv
+ayM
+bcf
+adP
+azY
+aAh
+aeE
+fWT
+fWT
+fAv
+fWT
+fWT
+fWT
+aAI
+aAI
+aAI
+cNL
+aAI
+lry
+uaa
+lry
+wRb
+fkx
+vCn
+lry
+apF
+apF
+apF
+aah
+aah
+aah
+atx
+atx
+atZ
+auC
+auC
+avD
+awj
+awj
+awj
+ayq
+azq
+jva
+dZW
+aCb
+aCU
+aCU
+aCU
+aEP
+aFX
+aFX
+aGB
+aCO
+aHJ
+aHJ
+aHJ
+aCO
+aHJ
+aHJ
+aHJ
+aCO
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aUm
+lei
+wVm
+uke
+jAq
+glu
+bcJ
+mvl
+aUm
+aad
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(117,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+ano
+ano
+ano
+ano
+aeE
+aeE
+aeE
+adP
+apN
aeE
aeE
aeE
@@ -64760,7 +56569,53 @@ pvL
hOH
izF
atx
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aUm
+aUm
+kcv
+kcv
+kcv
+kcv
+kcv
+aUm
+aUm
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -64772,20 +56627,14 @@ aad
aad
aad
aad
+aaa
+"}
+(118,1,1) = {"
+aaa
aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-=======
aah
aah
aah
@@ -64862,222 +56711,428 @@ ird
mZQ
auB
atx
->>>>>>> 413c0b13d21... Merge pull request #12168 from Very-Soft/anodawun
aad
aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-baU
-baU
-aah
-aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-=======
-baU
-baU
aah
aah
aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aaa
-"}
-(127,1,1) = {"
-aaa
-aad
-<<<<<<< HEAD
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
aad
aad
aad
aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
aad
aaa
"}
-(127,1,1) = {"
+(119,1,1) = {"
aaa
-=======
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+naC
+amc
+arB
+arB
+ayy
+ayO
+azB
+naC
+aah
+aah
+fWT
+qhs
+xZq
+bWg
+xSF
+gWO
+fWT
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+baU
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+aty
+atx
+atx
+atx
+aty
+atB
+oeA
+oeA
+oeA
+auB
+auB
+auB
+auB
+auB
+auB
+auB
+auB
+auB
+auB
+auB
+oeA
+oeA
+oeA
+oeA
+tPC
+tPC
+tPC
+aGC
+aty
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aaa
"}
-(127,1,1) = {"
+(120,1,1) = {"
aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+naC
+amP
+awv
+awv
+ayz
+ayP
+azC
+naC
+aah
+aah
+fWT
+fWT
+fWT
+fWT
+fWT
+fWT
+fWT
+aah
+aah
+aah
+aah
+aah
+aah
+baU
+baU
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+auD
atz
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-baU
-aah
-aah
-auD
-=======
-baU
-aah
-aah
-aah
-auD
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
+atz
+atz
+auc
+auc
+aFU
+atA
+atA
+atA
+aJp
+aub
+aub
+aub
+aub
+aub
+wXW
+atA
+atA
+atA
+gIa
+auc
+auc
+auc
+auc
+auc
+auc
auD
aad
aad
aad
aad
aad
-=======
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(121,1,1) = {"
+aaa
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+naC
+aAC
+avY
+axJ
+ayA
+ayX
+azD
+naC
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+baU
+baU
+baU
+aah
+aah
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+mtl
+aua
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+atz
+eDV
+aud
+aud
+aud
aud
aud
aud
@@ -65087,7 +57142,15 @@ aad
aad
aad
aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aad
aad
aad
@@ -65103,6 +57166,849 @@ aad
aad
aad
aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(122,1,1) = {"
+aaa
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+naC
+naC
+naC
+naC
+naC
+naC
+naC
+naC
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+baU
+baU
+aah
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(123,1,1) = {"
+aaa
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+baU
+aah
+aah
+aah
+auD
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(124,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+baU
+aah
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(125,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+aah
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(126,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+baU
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aaa
+"}
+(127,1,1) = {"
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+baU
+aah
+aah
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aad
aad
aad
@@ -65155,65 +58061,48 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-atz
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aad
-baU
aah
-auD
-=======
-baU
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
baU
aah
aah
auD
->>>>>>> d963833121... Orange Line Upgrade (#11391)
aud
aud
aud
@@ -65238,547 +58127,10 @@ aud
aud
aud
aud
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-=======
aud
aud
aud
auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(129,1,1) = {"
-aaa
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aaa
-"}
-(129,1,1) = {"
-aaa
-=======
-aaa
-"}
-(129,1,1) = {"
-aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aad
-=======
-baU
-aah
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aah
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-aud
-=======
-aah
-auD
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aud
-=======
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-auD
-aad
-aad
-aad
-aad
-aad
-=======
-auD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-auD
-aad
-aad
-aad
-aad
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aaa
-"}
-(129,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aah
-auD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-auD
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-=======
-aaa
-"}
-(129,1,1) = {"
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aad
-aah
-auD
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-aJq
-auD
aad
aad
aad
@@ -65871,39 +58223,55 @@ aah
aah
aah
aah
-=======
-baU
->>>>>>> d963833121... Orange Line Upgrade (#11391)
+aah
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aah
aah
auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
+afH
auD
aad
aad
@@ -65929,16 +58297,11 @@ aad
aad
aad
aad
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
aad
aad
aad
aad
aad
-aaa
-"}
-(130,1,1) = {"
-aaa
aad
aad
aad
@@ -65968,144 +58331,6 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-bcV
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-aad
-atz
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-atB
-auD
-=======
-auD
-afH
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-afH
-aue
-atC
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-atC
-aue
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-afH
-auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
aaa
"}
(130,1,1) = {"
@@ -66140,51 +58365,11 @@ aah
aah
aah
aad
-=======
-aaa
-"}
-(129,1,1) = {"
-aaa
aad
aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
bcV
aad
aad
@@ -66200,269 +58385,6 @@ aad
aad
aad
aah
-auD
-afH
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-afH
-aue
-atC
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-atC
-aue
-afH
-afH
-afH
-atC
-afH
-afH
-afH
-afH
-auD
-aad
-aad
-=======
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-auD
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-afH
-auD
-aad
-aad
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-"}
-(131,1,1) = {"
-aaa
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aaa
-"}
-(131,1,1) = {"
-aaa
-=======
-aaa
-"}
-(131,1,1) = {"
-aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aaa
-"}
-(131,1,1) = {"
-aaa
-=======
-aaa
-"}
-(130,1,1) = {"
-aaa
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aad
-aad
-aad
-aad
-bcV
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-aah
-aah
-=======
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
->>>>>>> d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aad
-<<<<<<< HEAD
-aad
-aad
-aad
-bcV
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-atz
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-aad
-aad
-aah
aah
auD
aud
@@ -66496,117 +58418,9 @@ auD
aad
aad
aad
-<<<<<<< HEAD
-=======
-aud
-aud
-aud
-aud
-auD
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-auD
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-auD
-=======
-aty
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-aty
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aad
-aad
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aty
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-atx
-aty
-aad
-aad
-=======
->>>>>>> d963833121... Orange Line Upgrade (#11391)
aad
aad
aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
@@ -66676,22 +58490,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
-aad
-aad
-||||||| parent of d963833121... Orange Line Upgrade (#11391)
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-=======
aah
aah
aah
@@ -66766,7 +58564,6 @@ aad
aad
aad
aad
->>>>>>> d963833121... Orange Line Upgrade (#11391)
aad
aad
aad
@@ -66794,7 +58591,6 @@ aad
aad
aad
aad
-<<<<<<< HEAD
aad
aad
aad
@@ -66809,100 +58605,6 @@ aad
aad
aad
aad
-atz
-atC
-atC
-atC
-atC
-aua
-atC
-atC
-<<<<<<< HEAD
-auf
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aue
-=======
-atC
-atC
-aue
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aua
-atC
-atC
-atC
-aua
-atC
-atC
-atC
-aua
-<<<<<<< HEAD
-atC
-auf
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-atC
-aue
-=======
-aue
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-atC
-atC
-atC
-aua
-atC
-atC
-<<<<<<< HEAD
-atz
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-auD
-=======
-atC
-atC
-auD
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-||||||| parent of 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-auD
-atC
-atC
-atC
-atC
-aua
-atC
-atC
-atC
-atC
-aue
-aua
-atC
-atC
-atC
-aua
-atC
-atC
-atC
-aua
-aue
-atC
-atC
-atC
-aua
-atC
-atC
-atC
-atC
-auD
-=======
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aad
aad
aad
@@ -66925,8 +58627,6 @@ aad
aad
aad
aad
->>>>>>> 6133dc6fdd... Merge pull request #11341 from VOREStation/Arokha/fancy_shuttle_done
-aad
aad
aad
aad
@@ -67029,26 +58729,10 @@ aad
aad
aad
aad
-<<<<<<< HEAD
aad
aad
aad
aad
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aaa
-"}
-(133,1,1) = {"
-aaa
-=======
-aaa
-"}
-(133,1,1) = {"
-aaa
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aad
aad
aad
@@ -67215,26 +58899,6 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-<<<<<<< HEAD
-||||||| parent of 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
-aad
-aad
-aad
-aad
-aad
-=======
-aad
->>>>>>> 44766f85bb... Merge pull request #10079 from KillianKirilenko/kk-mapping
aaa
"}
(134,1,1) = {"
@@ -67242,7 +58906,7 @@ aaa
aad
aad
aad
-aad
+ajK
aad
aad
aad
diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 77adde36bc..c0a9adc395 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -19765,6 +19765,8 @@
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer/guide,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aFD" = (
@@ -20239,6 +20241,8 @@
/obj/machinery/camera/network/medbay{
dir = 1
},
+/obj/item/device/healthanalyzer/guide,
+/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aGn" = (
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index 650ba57f8e..625b735263 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -22,6 +22,8 @@
#define Z_LEVEL_FUELDEPOT 20
#define Z_LEVEL_GATEWAY 21
#define Z_LEVEL_OM_ADVENTURE 22
+#define Z_LEVEL_REDGATE 23
+
//Camera networks
#define NETWORK_TETHER "Tether"
@@ -184,6 +186,13 @@
list("Grass Cave")
)
+ lateload_redgate = list(
+ list("Teppi Ranch"),
+ list("Innland"),
+ list("Abandoned Island"),
+ list("Dark Adventure")
+ )
+
ai_shell_restricted = TRUE
ai_shell_allowed_levels = list(
Z_LEVEL_SURFACE_LOW,
diff --git a/maps/yw/submaps/gateway/snowfield.dm b/maps/yw/submaps/gateway/snowfield.dm
index 6d6f7b1b2d..6548ca6f0d 100644
--- a/maps/yw/submaps/gateway/snowfield.dm
+++ b/maps/yw/submaps/gateway/snowfield.dm
@@ -28,7 +28,7 @@
valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar,
/mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar,
- /mob/living/simple_mob/animal/wolf)
+ /mob/living/simple_mob/vore/wolf)
valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
/obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
/obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
@@ -176,4 +176,4 @@
/obj/effect/floor_decal/derelict/d16
name = "derelict16"
- icon_state = "derelict16"
\ No newline at end of file
+ icon_state = "derelict16"
diff --git a/maps/yw/submaps/underdark_pois/goldhall.dmm b/maps/yw/submaps/underdark_pois/goldhall.dmm
index ac72691f12..86ff4cec87 100644
--- a/maps/yw/submaps/underdark_pois/goldhall.dmm
+++ b/maps/yw/submaps/underdark_pois/goldhall.dmm
@@ -23,7 +23,7 @@
/area/mine/explored/underdark)
"g" = (
/obj/effect/decal/remains,
-/obj/item/weapon/ore/bluespace_crystal,
+/obj/item/weapon/bluespace_crystal,
/turf/simulated/floor/tiled/kafel_full/yellow/virgo3b,
/area/mine/explored/underdark)
diff --git a/maps/~map_system/maps.dm b/maps/~map_system/maps.dm
index 135374fecb..037824482b 100644
--- a/maps/~map_system/maps.dm
+++ b/maps/~map_system/maps.dm
@@ -57,6 +57,7 @@ var/list/all_maps = list()
//Similar to above, but only pick ONE to load, useful for random away missions and whatnot
var/list/lateload_gateway = list()
var/list/lateload_overmap = list() //VOREStation Add - The same thing as gateway, but not
+ var/list/lateload_redgate = list() //VOREStation Add - The same thing as gateway, but safe-ish
var/list/allowed_jobs = list() //Job datums to use.
//Works a lot better so if we get to a point where three-ish maps are used
diff --git a/modular_chomp/code/datums/supplypacks/contraband.dm b/modular_chomp/code/datums/supplypacks/contraband.dm
new file mode 100644
index 0000000000..9ebdc4d3eb
--- /dev/null
+++ b/modular_chomp/code/datums/supplypacks/contraband.dm
@@ -0,0 +1,99 @@
+/*
+* Here is where any supply packs that may or may not be legal
+* and require modification of the supply controller live.
+*/
+
+
+/datum/supply_pack/randomised/contraband
+ num_contained = 5
+ contains = list(
+ /obj/item/seeds/bloodtomatoseed,
+ /obj/item/weapon/storage/pill_bottle/zoom,
+ /obj/item/weapon/storage/pill_bottle/happy,
+ /obj/item/weapon/reagent_containers/food/drinks/bottle/pwine
+ )
+
+ name = "Contraband crate"
+ cost = 25
+ containertype = /obj/structure/closet/crate
+ containername = "Unlabeled crate"
+ contraband = 1
+ group = "Supplies"
+
+/datum/supply_pack/security/specialops
+ name = "Special Ops supplies"
+ contains = list(
+ /obj/item/weapon/storage/box/emps,
+ /obj/item/weapon/grenade/smokebomb = 4,
+ /obj/item/weapon/grenade/chem_grenade/incendiary
+ )
+ cost = 25
+ containertype = /obj/structure/closet/crate/weapon
+ containername = "Special Ops crate"
+ contraband = 1
+
+/datum/supply_pack/supply/moghes
+ name = "Moghes imports"
+ contains = list(
+ /obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew = 2,
+ /obj/item/weapon/reagent_containers/food/snacks/unajerky = 4
+ )
+ cost = 25
+ containertype = /obj/structure/closet/crate/unathi
+ containername = "Moghes imports crate"
+ contraband = 1
+
+/datum/supply_pack/munitions/bolt_rifles_militia
+ name = "Weapon - Surplus militia rifles"
+ contains = list(
+ /obj/item/weapon/gun/projectile/shotgun/pump/rifle = 3,
+ /obj/item/ammo_magazine/clip/c762 = 6
+ )
+ cost = 1000
+ contraband = 1
+ containertype = /obj/structure/closet/crate/hedberg
+ containername = "Ballistic weapons crate"
+
+/datum/supply_pack/randomised/misc/telecrate
+ name = "Confiscated equipment"
+ num_contained = 1
+ contains = list(
+ list( //the operator,
+ /obj/item/clothing/suit/storage/vest/heavy/merc,
+ /obj/item/clothing/glasses/night,
+ /obj/item/weapon/storage/box/anti_photons
+ ),
+ list( //the indian,
+ /obj/item/weapon/gun/projectile/dartgun,
+ /obj/item/ammo_magazine/chemdart
+ ),
+
+ list( //the doc,
+ /obj/item/weapon/storage/firstaid/combat,
+ /obj/item/weapon/reagent_containers/hypospray
+ ),
+
+ list( //the sapper,
+ /obj/item/weapon/melee/energy/sword/ionic_rapier,
+ /obj/item/weapon/storage/box/syndie_kit/space, //doesn't matter what species you are,
+ /obj/item/device/multitool/ai_detector,
+ /obj/item/weapon/storage/toolbox/syndicate/powertools
+ ),
+ list( //the infiltrator,
+ /obj/item/device/chameleon,
+ /obj/item/weapon/storage/box/syndie_kit/chameleon,
+ /obj/item/device/encryptionkey/syndicate,
+ /obj/item/weapon/card/id/syndicate,
+ /obj/item/clothing/mask/gas/voice,
+ /obj/item/weapon/makeover
+ ),
+ list( //the professional,
+ /obj/item/weapon/gun/energy/ionrifle/pistol,
+ /obj/item/weapon/material/knife/tacknife/combatknife,
+ /obj/item/clothing/mask/balaclava
+ )
+ )
+ cost = 400 //price,
+ contraband = 1
+ containertype = /obj/structure/closet/crate/large
+ containername = "Suspicious crate"
diff --git a/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm b/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm
new file mode 100644
index 0000000000..12c2309172
--- /dev/null
+++ b/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm
@@ -0,0 +1,339 @@
+/obj/structure/closet/secure_closet/captains
+ name = "site manager's locker"
+ req_access = list(access_captain)
+ closet_appearance = /decl/closet_appearance/secure_closet/command
+
+ starts_with = list(
+ /obj/item/weapon/storage/backpack/dufflebag/captain,
+ /obj/item/clothing/head/helmet,
+ /obj/item/clothing/suit/storage/vest,
+ /obj/item/weapon/cartridge/captain,
+ /obj/item/weapon/storage/lockbox/medal,
+ /obj/item/device/radio/headset/heads/captain,
+ /obj/item/device/radio/headset/heads/captain/alt,
+ /obj/item/weapon/gun/energy/gun,
+ /obj/item/weapon/melee/telebaton,
+ /obj/item/device/flash,
+ /obj/item/weapon/storage/box/ids)
+
+
+/obj/structure/closet/secure_closet/hop
+ name = "head of personnel's locker"
+ req_access = list(access_hop)
+ closet_appearance = /decl/closet_appearance/secure_closet/command/hop
+
+ starts_with = list(
+ /obj/item/clothing/suit/storage/vest,
+ /obj/item/clothing/head/helmet,
+ /obj/item/weapon/cartridge/hop,
+ /obj/item/device/radio/headset/heads/hop,
+ /obj/item/device/radio/headset/heads/hop/alt,
+ /obj/item/weapon/storage/box/ids = 2,
+ /obj/item/weapon/gun/energy/gun/compact,
+ /obj/item/weapon/storage/box/commandkeys,
+ /obj/item/weapon/storage/box/servicekeys,
+ /obj/item/device/flash)
+
+/obj/structure/closet/secure_closet/hop2
+ name = "head of personnel's attire"
+ req_access = list(access_hop)
+ closet_appearance = /decl/closet_appearance/secure_closet/command/hop
+
+ starts_with = list(
+ /obj/item/clothing/under/rank/head_of_personnel,
+ /obj/item/clothing/under/dress/dress_hop,
+ /obj/item/clothing/under/dress/dress_hr,
+ /obj/item/clothing/under/lawyer/female,
+ /obj/item/clothing/under/lawyer/black,
+ /obj/item/clothing/under/lawyer/black/skirt,
+ /obj/item/clothing/under/lawyer/red,
+ /obj/item/clothing/under/lawyer/red/skirt,
+ /obj/item/clothing/under/lawyer/oldman,
+ /obj/item/clothing/under/rank/neo_hop,
+ /obj/item/clothing/under/rank/neo_hop_skirt,
+ /obj/item/clothing/under/rank/neo_hop_parade_masc,
+ /obj/item/clothing/under/rank/neo_hop_parade_fem,
+ /obj/item/clothing/under/rank/neo_hop_turtle,
+ /obj/item/clothing/under/rank/neo_hop_turtle_skirt,
+ /obj/item/clothing/under/rank/neo_cmd_gorka,
+ /obj/item/clothing/suit/storage/toggle/labcoat/neo_hopformal,
+ /obj/item/clothing/suit/storage/toggle/labcoat/neo_civ_dep,
+ /obj/item/clothing/shoes/brown,
+ /obj/item/clothing/shoes/black,
+ /obj/item/clothing/shoes/laceup,
+ /obj/item/clothing/shoes/laceup/brown,
+ /obj/item/clothing/shoes/white,
+ /obj/item/clothing/under/rank/head_of_personnel_whimsy,
+ /obj/item/clothing/head/caphat/hop,
+ /obj/item/clothing/under/suit_jacket/teal,
+ /obj/item/clothing/under/suit_jacket/teal/skirt,
+ /obj/item/clothing/glasses/sunglasses,
+ /obj/item/clothing/suit/storage/hooded/wintercoat/hop,
+ /obj/item/clothing/head/caphat/hop/beret,
+ /obj/item/clothing/head/caphat/hop/beret/white)
+
+
+/obj/structure/closet/secure_closet/hos
+ name = "head of security's locker"
+ req_access = list(access_hos)
+ storage_capacity = 2.5 * MOB_MEDIUM
+ closet_appearance = /decl/closet_appearance/secure_closet/security/hos
+
+ starts_with = list(
+ /obj/item/clothing/head/helmet/HoS,
+ /obj/item/clothing/head/helmet/HoS/hat,
+ /obj/item/clothing/suit/storage/vest/hos,
+ /obj/item/clothing/under/rank/head_of_security/jensen,
+ /obj/item/clothing/under/rank/head_of_security/corp,
+ /obj/item/clothing/suit/storage/vest/hoscoat/jensen,
+ /obj/item/clothing/suit/storage/vest/hoscoat,
+ /obj/item/clothing/head/helmet/dermal,
+ /obj/item/weapon/cartridge/hos,
+ /obj/item/device/radio/headset/heads/hos,
+ /obj/item/device/radio/headset/heads/hos/alt,
+ /obj/item/clothing/glasses/sunglasses/sechud,
+ /obj/item/taperoll/police,
+ /obj/item/weapon/shield/riot,
+ /obj/item/weapon/shield/riot/tele,
+ /obj/item/weapon/storage/box/holobadge/hos,
+ /obj/item/clothing/accessory/badge/holo/hos,
+ /obj/item/weapon/reagent_containers/spray/pepper,
+ /obj/item/weapon/tool/crowbar/red,
+ /obj/item/weapon/storage/box/flashbangs,
+ /obj/item/weapon/storage/belt/security,
+ /obj/item/device/flash,
+ /obj/item/weapon/melee/baton/loaded,
+ /obj/item/weapon/gun/magnetic/railgun/heater/pistol/hos,
+ /obj/item/weapon/rcd_ammo/large,
+ /obj/item/weapon/cell/device/weapon,
+ /obj/item/clothing/accessory/holster/waist,
+ /obj/item/weapon/melee/telebaton,
+ /obj/item/clothing/head/beret/sec/corporate/hos,
+ /obj/item/clothing/suit/storage/hooded/wintercoat/security,
+ /obj/item/clothing/suit/storage/hooded/wintercoat/security/hos,
+ /obj/item/clothing/shoes/boots/winter/security,
+ /obj/item/device/flashlight/maglight,
+ /obj/item/clothing/mask/gas/half,
+ /obj/item/clothing/mask/gas/sechailer/swat/hos)
+
+/obj/structure/closet/secure_closet/hos/Initialize()
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/security
+ else
+ starts_with += /obj/item/weapon/storage/backpack/satchel/sec
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec
+ return ..()
+
+
+/obj/structure/closet/secure_closet/warden
+ name = "warden's locker"
+ storage_capacity = 42
+ req_access = list(access_armory)
+ closet_appearance = /decl/closet_appearance/secure_closet/security/warden
+
+ starts_with = list(
+ /obj/item/clothing/suit/storage/vest/warden,
+ /obj/item/clothing/under/rank/warden,
+ /obj/item/clothing/under/rank/warden/corp,
+ /obj/item/clothing/suit/storage/vest/wardencoat,
+ /obj/item/clothing/suit/storage/vest/wardencoat/alt,
+ /obj/item/clothing/suit/storage/vest/wardencoat/alt2, //VOREStation Add,
+ /obj/item/clothing/head/helmet/dermal,
+ /obj/item/clothing/head/helmet/warden,
+ /obj/item/clothing/head/helmet/warden/hat,
+ /obj/item/clothing/under/rank/neo_warden_red,
+ /obj/item/clothing/under/rank/neo_warden_red_skirt,
+ /obj/item/clothing/under/rank/neo_warden_blue,
+ /obj/item/clothing/suit/storage/vest/wardencoat/neo_armsco_trench,
+ /obj/item/clothing/suit/storage/vest/wardencoat/neo_bluewarden,
+ /obj/item/clothing/suit/storage/vest/wardencoat/neo_warden_heavy,
+ /obj/item/clothing/under/rank/neo_sec_gorka,
+ /obj/item/weapon/cartridge/security,
+ /obj/item/device/radio/headset/headset_sec,
+ /obj/item/device/radio/headset/headset_sec/alt,
+ /obj/item/clothing/glasses/sunglasses/sechud,
+ /obj/item/taperoll/police,
+ /obj/item/clothing/accessory/badge/holo/warden,
+ /obj/item/weapon/storage/box/flashbangs,
+ /obj/item/weapon/storage/belt/security,
+ /obj/item/weapon/reagent_containers/spray/pepper,
+ /obj/item/weapon/melee/baton/loaded,
+ /obj/item/weapon/gun/energy/gun,
+ /obj/item/weapon/cell/device/weapon,
+ /obj/item/weapon/storage/box/holobadge,
+ /obj/item/clothing/head/beret/sec/corporate/warden,
+ /obj/item/clothing/suit/storage/hooded/wintercoat/security,
+ /obj/item/clothing/shoes/boots/winter/security,
+ /obj/item/device/flashlight/maglight,
+ /obj/item/device/megaphone,
+ /obj/item/clothing/mask/gas/sechailer/swat/warden,
+ /obj/item/weapon/gun/projectile/revolvershotgun,
+ /obj/item/ammo_magazine/m12gdrumjack/beanbag,
+ /obj/item/ammo_magazine/m12gdrumjack/beanbag,
+ /obj/item/device/ticket_printer, //CHOMPStation addition
+ /obj/item/device/retail_scanner/security //CHOMPStation addition
+ )
+
+/obj/structure/closet/secure_closet/warden/Initialize()
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/security
+ else
+ starts_with += /obj/item/weapon/storage/backpack/satchel/sec
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec
+ return ..()
+
+/obj/structure/closet/secure_closet/security
+ name = "security officer's locker"
+ req_access = list(access_brig)
+ closet_appearance = /decl/closet_appearance/secure_closet/security
+
+ starts_with = list(
+ /obj/item/clothing/suit/storage/vest/officer,
+ /obj/item/clothing/head/helmet,
+ /obj/item/clothing/mask/gas/sechailer/swat/officer,
+ /obj/item/weapon/cartridge/security,
+ /obj/item/device/radio/headset/headset_sec,
+ /obj/item/device/radio/headset/headset_sec/alt,
+ /obj/item/weapon/storage/belt/security,
+ /obj/item/device/flash,
+ /obj/item/weapon/reagent_containers/spray/pepper,
+ /obj/item/weapon/grenade/flashbang,
+ /obj/item/weapon/melee/baton/loaded,
+ /obj/item/clothing/glasses/sunglasses/sechud,
+ /obj/item/taperoll/police,
+ /obj/item/device/hailer,
+ /obj/item/device/flashlight/flare,
+ /obj/item/clothing/accessory/storage/black_vest,
+ /obj/item/clothing/head/soft/sec/corp,
+ /obj/item/clothing/under/rank/security/corp,
+ /obj/item/ammo_magazine/m45/rubber,
+ /obj/item/weapon/gun/energy/taser,
+ /obj/item/weapon/cell/device/weapon,
+ /obj/item/clothing/suit/storage/hooded/wintercoat/security,
+ /obj/item/clothing/shoes/boots/winter/security,
+ /obj/item/device/flashlight/maglight,
+ /obj/item/device/holowarrant, //CHOMPStation addition
+ /obj/item/device/retail_scanner/security, //CHOMPStation addition
+ /obj/item/clothing/glasses/hud/security, //CHOMPStation addition
+ /obj/item/device/ticket_printer //CHOMPStation addition
+ )
+
+/obj/structure/closet/secure_closet/security/Initialize()
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/security
+ else
+ starts_with += /obj/item/weapon/storage/backpack/satchel/sec
+ if(prob(50))
+ starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec
+ if(prob(30))
+ starts_with += /obj/item/poster/nanotrasen
+ return ..()
+
+/obj/structure/closet/secure_closet/security/cargo/Initialize()
+ starts_with += /obj/item/clothing/accessory/armband/cargo
+ starts_with += /obj/item/device/encryptionkey/headset_cargo
+ return ..()
+
+/obj/structure/closet/secure_closet/security/engine/Initialize()
+ starts_with += /obj/item/clothing/accessory/armband/engine
+ starts_with += /obj/item/device/encryptionkey/headset_eng
+ return ..()
+
+/obj/structure/closet/secure_closet/security/science/Initialize()
+ starts_with += /obj/item/clothing/accessory/armband/science
+ starts_with += /obj/item/device/encryptionkey/headset_sci
+ return ..()
+
+/obj/structure/closet/secure_closet/security/med/Initialize()
+ starts_with += /obj/item/clothing/accessory/armband/medblue
+ starts_with += /obj/item/device/encryptionkey/headset_med
+ return ..()
+
+
+/obj/structure/closet/secure_closet/detective
+ name = "detective's cabinet"
+ req_access = list(access_forensics_lockers)
+ closet_appearance = /decl/closet_appearance/cabinet/secure
+
+ open_sound = 'sound/effects/wooden_closet_open.ogg'
+ close_sound = 'sound/effects/wooden_closet_close.ogg'
+
+ starts_with = list(
+ /obj/item/clothing/accessory/badge/holo/detective,
+ /obj/item/clothing/gloves/forensic, //CHOMP Edit replaces black gloves
+ /obj/item/gunbox, //CHOMP Edit undoes vorestation removal and adds back gunbox
+ /obj/item/gunbox/stun,
+ /obj/item/weapon/storage/belt/detective,
+ /obj/item/weapon/storage/box/evidence,
+ /obj/item/device/radio/headset/headset_sec,
+ /obj/item/device/radio/headset/headset_sec/alt,
+ /obj/item/clothing/suit/storage/vest/detective,
+ /obj/item/taperoll/police,
+ /obj/item/clothing/accessory/holster/armpit,
+ /obj/item/device/flashlight/maglight,
+ /obj/item/weapon/reagent_containers/food/drinks/flask/detflask,
+ /obj/item/weapon/storage/briefcase/crimekit,
+ /obj/item/device/taperecorder,
+ /obj/item/weapon/storage/bag/detective,
+ /obj/item/device/tape/random = 3,
+ /obj/item/device/retail_scanner/security, //CHOMPStation addition
+ /obj/item/clothing/glasses/hud/security //CHOMPStation addition
+ )
+
+/obj/structure/closet/secure_closet/injection
+ name = "lethal injections locker"
+ req_access = list(access_captain)
+ closet_appearance = /decl/closet_appearance/secure_closet/courtroom
+
+ starts_with = list(
+ /obj/item/weapon/reagent_containers/syringe/ld50_syringe/choral = 2)
+
+GLOBAL_LIST_BOILERPLATE(all_brig_closets, /obj/structure/closet/secure_closet/brig)
+
+/obj/structure/closet/secure_closet/brig
+ name = "brig locker"
+ req_access = list(access_brig)
+ closet_appearance = /decl/closet_appearance/secure_closet/brig
+ anchored = TRUE
+ var/id = null
+
+ starts_with = list(
+ /obj/item/clothing/under/color/prison,
+ /obj/item/clothing/shoes/orange)
+
+/obj/structure/closet/secure_closet/posters
+ name = "morale storage"
+ req_access = list(access_security)
+ anchored = TRUE
+
+ starts_with = list(
+ /obj/item/poster/nanotrasen,
+ /obj/item/poster/nanotrasen,
+ /obj/item/poster/nanotrasen,
+ /obj/item/poster/nanotrasen,
+ /obj/item/poster/nanotrasen)
+
+/obj/structure/closet/secure_closet/courtroom
+ name = "courtroom locker"
+ req_access = list(access_lawyer)
+ closet_appearance = /decl/closet_appearance/secure_closet/courtroom
+
+ starts_with = list(
+ /obj/item/clothing/shoes/brown,
+ /obj/item/weapon/paper/Court = 3,
+ /obj/item/weapon/pen,
+ /obj/item/clothing/suit/judgerobe,
+ /obj/item/clothing/head/powdered_wig,
+ /obj/item/weapon/storage/briefcase)
+
+
+/obj/structure/closet/secure_closet/wall
+ name = "wall locker"
+ req_access = list(access_security)
+ closet_appearance = /decl/closet_appearance/wall
+ density = TRUE
+
+ //too small to put a man in
+ large = 0
diff --git a/modular_chomp/code/modules/clothing/masks/hailer.dm b/modular_chomp/code/modules/clothing/masks/hailer.dm
new file mode 100644
index 0000000000..3f7cc57fd3
--- /dev/null
+++ b/modular_chomp/code/modules/clothing/masks/hailer.dm
@@ -0,0 +1,169 @@
+/obj/item/clothing/mask/gas/sechailer
+ name = "hailer face mask"
+ desc = "A compact, durable gas mask that can be connected to an air supply. This one possesses a security hailer."
+ description_info = "This mask has a hailer attached, you can activate it on the button or use the Halt! verb, for switching phrases you can alt+click it or change it using the change phrase verb."
+ icon_state = "halfgas"
+ armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 55, rad = 0)
+ action_button_name = "HALT!"
+ body_parts_covered = FACE
+ var/obj/item/device/hailer/hailer
+ var/cooldown = 0
+ var/phrase = 1
+ var/aggressiveness = 1
+ var/safety = 1
+ var/list/phrase_list = list(
+ "halt" = "HALT! HALT! HALT! HALT!",
+ "bobby" = "Stop in the name of the Law.",
+ "compliance" = "Compliance is in your best interest.",
+ "justice" = "Prepare for justice!",
+ "running" = "Running will only increase your sentence.",
+ "dontmove" = "Don't move, Creep!",
+ "floor" = "Down on the floor, Creep!",
+ "robocop" = "Dead or alive you're coming with me.",
+ "god" = "God made today for the crooks we could not catch yesterday.",
+ "freeze" = "Freeze, Scum Bag!",
+ "imperial" = "Stop right there, criminal scum!",
+ "bash" = "Stop or I'll bash you.",
+ "harry" = "Go ahead, make my day.",
+ "asshole" = "Stop breaking the law, asshole.",
+ "stfu" = "You have the right to shut the fuck up",
+ "shutup" = "Shut up crime!",
+ "super" = "Face the wrath of the golden bolt.",
+ "dredd" = "I am, the LAW!"
+ )
+
+/obj/item/clothing/mask/gas/sechailer/swat/hos
+ name = "\improper HOS SWAT mask"
+ desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000. It has a tan stripe."
+ icon_state = "hosmask"
+
+
+/obj/item/clothing/mask/gas/sechailer/swat/warden
+ name = "\improper Warden SWAT mask"
+ desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000. It has a blue stripe."
+ icon_state = "wardenmask"
+
+/obj/item/clothing/mask/gas/sechailer/swat/officer //Just a little nicer to begin with. Can always up the anger with a screwdriver!
+ aggressiveness = 1
+ phrase = 1
+
+/obj/item/clothing/mask/gas/sechailer/swat
+ name = "\improper SWAT mask"
+ desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000."
+ icon_state = "officermask"
+ body_parts_covered = HEAD|FACE|EYES
+ flags_inv = HIDEFACE|BLOCKHAIR
+ aggressiveness = 3
+ phrase = 12
+
+
+/obj/item/clothing/mask/gas/sechailer/ui_action_click()
+ halt()
+
+/obj/item/clothing/mask/gas/sechailer/AltClick(mob/user)
+ selectphrase()
+
+/obj/item/clothing/mask/gas/sechailer/verb/selectphrase()
+ set name = "Select gas mask phrase"
+ set category = "Object"
+ set desc = "Alter the message shouted by your complionator gas mask."
+
+ var/key = phrase_list[phrase]
+ var/message = phrase_list[key]
+
+ if (!safety)
+ to_chat(usr, "You set the restrictor to: FUCK YOUR CUNT YOU SHIT EATING COCKSUCKER MAN EAT A DONG FUCKING ASS RAMMING SHIT FUCK EAT PENISES IN YOUR FUCK FACE AND SHIT OUT ABORTIONS OF FUCK AND DO SHIT IN YOUR ASS YOU COCK FUCK SHIT MONKEY FUCK ASS WANKER FROM THE DEPTHS OF SHIT.")
+ return
+ switch(aggressiveness)
+ if(1)
+ phrase = (phrase < 6) ? (phrase + 1) : 1
+ key = phrase_list[phrase]
+ message = phrase_list[key]
+ to_chat(usr,"You set the restrictor to: [message]")
+ if(2)
+ phrase = (phrase < 11 && phrase >= 7) ? (phrase + 1) : 7
+ key = phrase_list[phrase]
+ message = phrase_list[key]
+ to_chat(usr,"You set the restrictor to: [message]")
+ if(3)
+ phrase = (phrase < 18 && phrase >= 12 ) ? (phrase + 1) : 12
+ key = phrase_list[phrase]
+ message = phrase_list[key]
+ to_chat(usr,"You set the restrictor to: [message]")
+ if(4)
+ phrase = (phrase < 18 && phrase >= 1 ) ? (phrase + 1) : 1
+ key = phrase_list[phrase]
+ message = phrase_list[key]
+ to_chat(usr,"You set the restrictor to: [message]")
+ else
+ to_chat(usr, "It's broken.")
+
+/obj/item/clothing/mask/gas/sechailer/emag_act(mob/user)
+ if(safety)
+ safety = 0
+ to_chat(user, "You silently fry [src]'s vocal circuit with the cryptographic sequencer.")
+ else
+ return
+
+/obj/item/clothing/mask/gas/sechailer/attackby(obj/item/I, mob/user)
+ if(I.is_screwdriver())
+ switch(aggressiveness)
+ if(1)
+ to_chat(user, "You set the aggressiveness restrictor to the second position.")
+ aggressiveness = 2
+ phrase = 7
+ if(2)
+ to_chat(user, "You set the aggressiveness restrictor to the third position.")
+ aggressiveness = 3
+ phrase = 13
+ if(3)
+ to_chat(user, "You set the aggressiveness restrictor to the fourth position.")
+ aggressiveness = 4
+ phrase = 1
+ if(4)
+ to_chat(user, "You set the aggressiveness restrictor to the first position.")
+ aggressiveness = 1
+ phrase = 1
+ if(5)
+ to_chat(user, "You adjust the restrictor but nothing happens, probably because its broken.")
+ if(I.is_wirecutter())
+ if(aggressiveness != 5)
+ to_chat(user, "You broke it!")
+ aggressiveness = 5
+ if(I.is_crowbar())
+ if(!hailer)
+ to_chat(user, "This mask has an integrated hailer, you can't remove it!")
+ else
+ var/obj/N = new /obj/item/clothing/mask/gas/half(src.loc)
+ playsound(src, 'sound/items/Screwdriver.ogg', 50, 1)
+ N.fingerprints = src.fingerprints
+ N.fingerprintshidden = src.fingerprintshidden
+ N.fingerprintslast = src.fingerprintslast
+ N.suit_fibers = src.suit_fibers
+ if(!isturf(N.loc))
+ user.put_in_hands(hailer)
+ user.put_in_hands(N)
+ else
+ hailer.loc = N.loc
+ qdel(src)
+ return
+ ..()
+
+/obj/item/clothing/mask/gas/sechailer/verb/halt()
+ set name = "HALT!"
+ set category = "Objects"
+ set desc = "Activate your face mask hailer."
+ var/key = phrase_list[phrase]
+ var/message = phrase_list[key]
+
+ if(cooldown < world.time - 35) // A cooldown, to stop people being jerks
+ if(!safety)
+ message = "FUCK YOUR CUNT YOU SHIT EATING COCKSUCKER MAN EAT A DONG FUCKING ASS RAMMING SHIT FUCK EAT PENISES IN YOUR FUCK FACE AND SHIT OUT ABORTIONS OF FUCK AND DO SHIT IN YOUR ASS YOU COCK FUCK SHIT MONKEY FUCK ASS WANKER FROM THE DEPTHS OF SHIT."
+ usr.visible_message("[usr]'s Compli-o-Nator: [message]")
+ playsound(src, 'sound/voice/binsult.ogg', 50, 0, 4) //Future sound channel = something like SFX
+ cooldown = world.time
+ return
+
+ usr.visible_message("[usr]'s Compli-o-Nator: [message]")
+ playsound(src, "sound/voice/complionator/[key].ogg", 50, 0, 4) //future sound channel = something like SFX
+ cooldown = world.time
\ No newline at end of file
diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm
index 9cd0239bff..906a572a3e 100644
--- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm
+++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm
@@ -1,4 +1,4 @@
-/datum/trait/positive/hardfeet
+/datum/trait/neutral/hardfeet
custom_only = FALSE
/datum/trait/positive/linguist
diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm
index 0d24d4e28a..2fa6c9dcac 100644
--- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm
+++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm
@@ -1,45 +1,52 @@
//Unfiying spider health, into two catagories. Disrupters and tanks.
/mob/living/simple_mob/animal/giant_spider/carrier //Disrupter, old 100
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
/mob/living/simple_mob/animal/giant_spider/electric //disrupter, old 210
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
projectiletype = /obj/item/projectile/energy/mob/electric_spider
/mob/living/simple_mob/animal/giant_spider/frost //tank, old 175
- maxHealth = 130
- health = 130
+ maxHealth = 120
+ health = 120
+
+/mob/living/simple_mob/animal/giant_spider //tank, old 200
+ maxHealth = 120
+ health = 120
/mob/living/simple_mob/animal/giant_spider/ion //disrupter, old 90
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
/mob/living/simple_mob/animal/giant_spider/hunter //disrupter, old 120
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
/mob/living/simple_mob/animal/giant_spider/lurker //disrupter, old 100
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
/mob/living/simple_mob/animal/giant_spider/pepper //tank, old 210
- maxHealth = 130
- health = 130
+ maxHealth = 120
+ health = 120
/mob/living/simple_mob/animal/giant_spider/phorogenic //tank, old 225
- maxHealth = 130
- health = 130
+ maxHealth = 120
+ health = 120
/mob/living/simple_mob/animal/giant_spider/thermic //tank, old 175
- maxHealth = 130
- health = 130
+ maxHealth = 120
+ health = 120
/mob/living/simple_mob/animal/giant_spider/tunneler_spider //disrupter, old 120
- maxHealth = 70
- health = 70
+ maxHealth = 60
+ health = 60
/mob/living/simple_mob/animal/giant_spider/webslinger //disrupter, old 90
- maxHealth = 70
- health = 70
\ No newline at end of file
+ maxHealth = 60
+ health = 60
+
+/obj/effect/spider/eggcluster
+ spider_type = /obj/effect/spider/spiderling/varied
\ No newline at end of file
diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultboss.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultboss.dm
index 0341d8a28d..1e9a66c9bc 100644
--- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultboss.dm
+++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultboss.dm
@@ -283,7 +283,7 @@
vore_max_size = RESIZE_HUGE
vore_min_size = RESIZE_SMALL
vore_pounce_chance = 0 // Beat them into crit before eating.
- vore_icons = null
+ vore_icons = SA_ICON_LIVING
can_be_drop_prey = FALSE //CHOMP Add
diff --git a/modular_chomp/code/modules/power/cells/device_cells.dm b/modular_chomp/code/modules/power/cells/device_cells.dm
index 0898f6fb46..dbd1f447f0 100644
--- a/modular_chomp/code/modules/power/cells/device_cells.dm
+++ b/modular_chomp/code/modules/power/cells/device_cells.dm
@@ -91,7 +91,7 @@
icon_state = "meb_m_hi"
maxcharge = 10000
charge_amount = 20
- origin_tech = list(TECH_POWER = 5, TECH_PRECURSOR = 1)
+ origin_tech = list(TECH_POWER = 8)
/obj/item/weapon/cell/device/giga/empty/Initialize()
. = ..()
@@ -161,10 +161,10 @@
catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_void_cell)
icon = 'icons/obj/abductor.dmi'
icon_state = "cell"
- maxcharge = 3600
- charge_amount = 180 // 5%.
+ maxcharge = 5000
+ charge_amount = 130 // 2.5%.
charge_delay = 50 // Every five seconds, bit faster than the default.
- origin_tech = list(TECH_POWER = 7, TECH_ENGINEERING = 5, TECH_PHORON = 5, TECH_ARCANE = 1, TECH_PRECURSOR = 1)
+ origin_tech = list(TECH_POWER = 7, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 2, TECH_PRECURSOR = 2)
/obj/item/weapon/cell/device/weapon/recharge/alien/update_icon()
return // No overlays please.
@@ -192,8 +192,8 @@
origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6)
icon = 'icons/obj/abductor.dmi'
icon_state = "cell"
- maxcharge = 4800 //10x the device version
- charge_amount = 1200 //10x the device version
+ maxcharge = 10000
+ charge_amount = 500
self_recharge = TRUE
charge_delay = 50
matter = null
@@ -224,11 +224,12 @@
//YAWN Addtion
/obj/item/weapon/cell/device/weapon/recharge/alien/omni
name = "omni weapon power cell"
- desc = "A mix between alien technology and phoron tech. Seems to fit in almost any cell slot..."
- charge_amount = 120 // 2.5%.
- maxcharge = 4800
+ desc = "A mix between alien technology and phoron-based tech. Not quite as good as a true void cell though."
+ charge_amount = 90 // 2.5%.
+ maxcharge = 3600
charge_delay = 50
- origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 2, TECH_PRECURSOR = 2)
+ swaps_to = null
+ origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 1, TECH_PRECURSOR = 1)
/obj/item/weapon/cell/device/weapon/recharge/alien/omni/empty/Initialize()
. = ..()
diff --git a/modular_chomp/code/modules/power/cells/power_cells.dm b/modular_chomp/code/modules/power/cells/power_cells.dm
index 24e1045b62..765042421c 100644
--- a/modular_chomp/code/modules/power/cells/power_cells.dm
+++ b/modular_chomp/code/modules/power/cells/power_cells.dm
@@ -20,7 +20,7 @@
name = "security borg rechargable D battery"
origin_tech = list(TECH_POWER = 0)
icon_state = "secborg"
- maxcharge = 600 //600 max charge / 100 charge per shot = six shots
+ maxcharge = 2400 //who the hell thought 6 shots was enough for a dogborg taser?
matter = list(MAT_STEEL = 700, MAT_GLASS = 40)
/obj/item/weapon/cell/secborg/empty/New()
@@ -88,7 +88,7 @@
*/
/obj/item/weapon/cell/giga
name = "giga-capacity power cell"
- origin_tech = list(TECH_POWER = 6, TECH_PRECURSOR = 1)
+ origin_tech = list(TECH_POWER = 8)
icon_state = "meb_b_hi"
maxcharge = 40000
matter = list(MAT_STEEL = 1000, MAT_GLASS = 100)
@@ -162,7 +162,7 @@
icon_state = "yellow slime extract" //"potato_battery"
description_info = "This 'cell' holds a max charge of 20k and self recharges over time."
maxcharge = 20000
- charge_amount = 1000 // 5%.
+ charge_amount = 500 // 2.5%.
matter = null
self_recharge = TRUE
standard_overlays = FALSE
diff --git a/modular_chomp/code/modules/research/designs/power_cells.dm b/modular_chomp/code/modules/research/designs/power_cells.dm
index 891c5ce05e..7735aa5562 100644
--- a/modular_chomp/code/modules/research/designs/power_cells.dm
+++ b/modular_chomp/code/modules/research/designs/power_cells.dm
@@ -57,8 +57,8 @@
/datum/design/item/powercell/giga
name = "giga-capacity"
id = "giga_cell"
- req_tech = list(TECH_POWER = 6, TECH_MATERIAL = 5, TECH_PRECURSOR = 1, TECH_PHORON = 4)
- materials = list(MAT_STEEL = 1000, MAT_GOLD = 300, MAT_SILVER = 300, MAT_GLASS = 100, MAT_PHORON = 1000, MAT_METALHYDROGEN = 250, MAT_DURASTEEL = 100, MAT_URANIUM = 100)
+ req_tech = list(TECH_POWER = 7, TECH_MATERIAL = 5, TECH_ARCANE = 1, TECH_PHORON = 4)
+ materials = list(MAT_STEEL = 1000, MAT_GOLD = 300, MAT_SILVER = 300, MAT_GLASS = 100, MAT_PHORON = 1000, MAT_DURASTEEL = 100, MAT_URANIUM = 100)
build_path = /obj/item/weapon/cell/giga
category = list("Misc")
sort_string = "BAAAE"
@@ -140,8 +140,8 @@
/datum/design/item/powercell/giga_device
name = "device, giga"
id = "giga_device"
- req_tech = list(TECH_POWER = 6, TECH_MATERIAL = 6, TECH_PRECURSOR = 1, TECH_PHORON = 4)
- materials = list(MAT_STEEL = 2000, MAT_GOLD = 500, MAT_SILVER = 500, MAT_GLASS = 100, MAT_PHORON = 2000, MAT_METALHYDROGEN = 500, MAT_DURASTEEL = 200, MAT_URANIUM = 200)
+ req_tech = list(TECH_POWER = 7, TECH_MATERIAL = 6, TECH_ARCANE = 1, TECH_PHORON = 4)
+ materials = list(MAT_STEEL = 2000, MAT_GOLD = 500, MAT_SILVER = 500, MAT_GLASS = 100, MAT_PHORON = 2000, MAT_DURASTEEL = 200, MAT_URANIUM = 200)
build_path = /obj/item/weapon/cell/device/giga
category = list("Misc")
sort_string = "BAAAH"
diff --git a/modular_chomp/code/modules/research/designs/weapons.dm b/modular_chomp/code/modules/research/designs/weapons.dm
index daefa87dcd..179d365e0b 100644
--- a/modular_chomp/code/modules/research/designs/weapons.dm
+++ b/modular_chomp/code/modules/research/designs/weapons.dm
@@ -39,35 +39,35 @@
/datum/design/item/weapon/phase/frontier_holdout
id = "holdout frontier phaser"
req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
- materials = list(MAT_STEEL = 6000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 150, MAT_VERDANTIUM = 100, MAT_PHORON = 1000)
+ materials = list(MAT_STEEL = 6000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_VERDANTIUM = 100, MAT_PHORON = 1000)
build_path = /obj/item/weapon/gun/energy/locked/frontier/holdout
sort_string = "MACAE"
/datum/design/item/weapon/phase/frontier_phaser
id = "frontier phaser"
req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
- materials = list(MAT_STEEL = 7000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 2000)
+ materials = list(MAT_STEEL = 7000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_VERDANTIUM = 150, MAT_PHORON = 2000)
build_path = /obj/item/weapon/gun/energy/locked/frontier
sort_string = "MACAF"
/datum/design/item/weapon/phase/frontier_carbine
id = "carbine frontier phaser"
req_tech = list(TECH_COMBAT = 4, TECH_POWER = 8, TECH_MATERIAL = 6, TECH_PHORON = 6)
- materials = list(MAT_STEEL = 6500, MAT_GLASS = 900, MAT_DURASTEEL = 150, MAT_METALHYDROGEN = 250, MAT_VERDANTIUM = 200, MAT_PHORON = 4000)
+ materials = list(MAT_STEEL = 6500, MAT_GLASS = 900, MAT_DURASTEEL = 150, MAT_VERDANTIUM = 200, MAT_PHORON = 4000)
build_path = /obj/item/weapon/gun/energy/locked/frontier/carbine
sort_string = "MACAG"
/datum/design/item/weapon/phase/frontier_rifle
id = "marksman rifle frontier phaser"
req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
- materials = list(MAT_STEEL = 8000, MAT_GLASS = 900, MAT_DURASTEEL = 200, MAT_METALHYDROGEN = 300, MAT_VERDANTIUM = 250, MAT_PHORON = 2000)
+ materials = list(MAT_STEEL = 8000, MAT_GLASS = 900, MAT_DURASTEEL = 200, MAT_VERDANTIUM = 250, MAT_PHORON = 2000)
build_path = /obj/item/weapon/gun/energy/locked/frontier/rifle
sort_string = "MACAH"
/datum/design/item/weapon/phase/frontier_handbow
id = "handbow frontier phaser"
req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
- materials = list(MAT_STEEL = 5000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 1000)
+ materials = list(MAT_STEEL = 5000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_VERDANTIUM = 150, MAT_PHORON = 1000)
build_path = /obj/item/weapon/gun/energy/locked/frontier/handbow
sort_string = "MACAI"
@@ -79,3 +79,10 @@
build_path = /obj/item/weapon/gun/projectile/caseless/prototype
sort_string = "MACBA"
+/datum/design/item/weapon/energy/lasercannon
+ desc = "The lasing medium of this prototype is enclosed in a tube lined with uranium-235 and subjected to high neutron flux in a nuclear reactor core."
+ id = "lasercannon"
+ req_tech = list(TECH_COMBAT = 6, TECH_MATERIAL = 6, TECH_POWER = 5)
+ materials = list(MAT_STEEL = 4000, MAT_GLASS = 1000, MAT_DIAMOND = 2000, MAT_TITANIUM = 4000, MAT_LEAD = 4000, MAT_URANIUM = 5000)
+ build_path = /obj/item/weapon/gun/energy/lasercannon
+ sort_string = "MAAAD"
diff --git a/modular_chomp/icons/mob/animal_ch.dmi b/modular_chomp/icons/mob/animal_ch.dmi
index bf76d268c5..ee3cdd028a 100644
Binary files a/modular_chomp/icons/mob/animal_ch.dmi and b/modular_chomp/icons/mob/animal_ch.dmi differ
diff --git a/modular_chomp/icons/mob/screen_full_vore_ch.dmi b/modular_chomp/icons/mob/screen_full_vore_ch.dmi
index fd055241e7..ea2af8e546 100644
Binary files a/modular_chomp/icons/mob/screen_full_vore_ch.dmi and b/modular_chomp/icons/mob/screen_full_vore_ch.dmi differ
diff --git a/modular_chomp/icons/mob/screen_full_vore_ch_credits.txt b/modular_chomp/icons/mob/screen_full_vore_ch_credits.txt
index 46d6932a71..4d854d1a02 100644
--- a/modular_chomp/icons/mob/screen_full_vore_ch_credits.txt
+++ b/modular_chomp/icons/mob/screen_full_vore_ch_credits.txt
@@ -11,6 +11,9 @@ VBO_intestines6
VBO_intestines7
VBO_intestines8
+VerySoft:
+VBO_belly8
+
TheMirth:
VBO_belly5
VBO_maw1
diff --git a/modular_chomp/icons/mob/vore_fullscreens/VBO_belly8.dmi b/modular_chomp/icons/mob/vore_fullscreens/VBO_belly8.dmi
new file mode 100644
index 0000000000..50e4ba9a47
Binary files /dev/null and b/modular_chomp/icons/mob/vore_fullscreens/VBO_belly8.dmi differ
diff --git a/modular_chomp/icons/mob/vore_fullscreens/VBO_synth2.dmi b/modular_chomp/icons/mob/vore_fullscreens/VBO_synth2.dmi
index 097c9b4290..570d731044 100644
Binary files a/modular_chomp/icons/mob/vore_fullscreens/VBO_synth2.dmi and b/modular_chomp/icons/mob/vore_fullscreens/VBO_synth2.dmi differ
diff --git a/modular_chomp/icons/obj/stationobjs.dmi b/modular_chomp/icons/obj/stationobjs.dmi
new file mode 100644
index 0000000000..7edeaf2cb5
Binary files /dev/null and b/modular_chomp/icons/obj/stationobjs.dmi differ
diff --git a/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm b/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm
index fd74743434..2cc8a36a78 100644
--- a/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm
+++ b/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm
@@ -35,7 +35,7 @@
"aO" = (/obj/structure/closet/radiation,/obj/machinery/light{dir = 8},/obj/item/stack/material/phoron{amount = 10},/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage)
"aP" = (/obj/machinery/light{dir = 4},/obj/structure/closet/crate/secure/large,/obj/item/weapon/reagent_containers/food/drinks/cans/starkist,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/cans/root_beer,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/cola,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage)
"aQ" = (/obj/structure/closet/wardrobe/pink,/obj/item/ammo_magazine/ammo_box/b12g,/turf/simulated/floor/wood,/area/submap/deepstorage)
-"aR" = (/mob/living/simple_mob/otie/security/phoron/red/chubby{faction = "sydicate"; health = 350; name = "rabid chubby red guard otie"},/obj/item/weapon/bedsheet/clown,/turf/simulated/floor/wood/broken,/area/submap/deepstorage)
+"aR" = (/mob/living/simple_mob/vore/otie/security/phoron/red/chubby{faction = "sydicate"; health = 350; name = "rabid chubby red guard otie"},/obj/item/weapon/bedsheet/clown,/turf/simulated/floor/wood/broken,/area/submap/deepstorage)
"aT" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/submap/deepstorage)
"aU" = (/obj/machinery/shower{dir = 8},/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/simulated/floor/tiled/freezer,/area/submap/deepstorage)
"aV" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/obj/item/ammo_magazine/ammo_box/b12g{pixel_y = -4},/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_y = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage)
diff --git a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm
index 6e1679ab22..6f1cbe51ad 100644
--- a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm
+++ b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm
@@ -79,7 +79,7 @@
"um" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/toy/plushie/kitten,/obj/item/toy/plushie/grey_cat,/obj/item/toy/plushie/orange_cat,/obj/item/toy/plushie/borgplushie/scrubpuppy,/obj/item/toy/plushie/black_fox,/obj/item/toy/plushie,/obj/item/toy/plushie/corgi,/obj/item/toy/plushie/crimson_fox,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/turcarpet,/area/survivalpod/superpose/ScienceShip)
"uu" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip)
"uX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip)
-"vl" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip)
+"vl" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip)
"wp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip)
"xk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip)
"xw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip)
diff --git a/sound/items/timer.ogg b/sound/items/timer.ogg
new file mode 100644
index 0000000000..a13db015be
Binary files /dev/null and b/sound/items/timer.ogg differ
diff --git a/vorestation.dme b/vorestation.dme
index c019ddaba8..1608d1a177 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -480,7 +480,6 @@
#include "code\datums\roundstats\departmentgoal.dm"
#include "code\datums\roundstats\roundstats.dm"
#include "code\datums\supplypacks\atmospherics.dm"
-#include "code\datums\supplypacks\contraband.dm"
#include "code\datums\supplypacks\contraband_vr.dm"
#include "code\datums\supplypacks\costumes.dm"
#include "code\datums\supplypacks\costumes_vr.dm"
@@ -1319,6 +1318,7 @@
#include "code\game\objects\items\devices\radio\radio_yw.dm"
#include "code\game\objects\items\devices\radio\radiopack.dm"
#include "code\game\objects\items\devices\scanners\gas.dm"
+#include "code\game\objects\items\devices\scanners\guide.dm"
#include "code\game\objects\items\devices\scanners\halogen.dm"
#include "code\game\objects\items\devices\scanners\health.dm"
#include "code\game\objects\items\devices\scanners\mass_spectrometer.dm"
@@ -1669,7 +1669,6 @@
#include "code\game\objects\structures\crates_lockers\closets\secure\personal.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\scientist.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\secure_closets.dm"
-#include "code\game\objects\structures\crates_lockers\closets\secure\security.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\security_vr.dm"
#include "code\game\objects\structures\flora\flora.dm"
#include "code\game\objects\structures\flora\flora_vr.dm"
@@ -1687,6 +1686,7 @@
#include "code\game\objects\structures\ghost_pods\survivor.dm"
#include "code\game\objects\structures\props\alien_props.dm"
#include "code\game\objects\structures\props\alien_props_vr.dm"
+#include "code\game\objects\structures\props\altevian.dm"
#include "code\game\objects\structures\props\beam_prism.dm"
#include "code\game\objects\structures\props\blackbox.dm"
#include "code\game\objects\structures\props\esoteric.dm"
@@ -1949,6 +1949,7 @@
#include "code\modules\awaymissions\loot.dm"
#include "code\modules\awaymissions\loot_vr.dm"
#include "code\modules\awaymissions\pamphlet.dm"
+#include "code\modules\awaymissions\redgate.dm"
#include "code\modules\awaymissions\trigger.dm"
#include "code\modules\awaymissions\zlevel.dm"
#include "code\modules\awaymissions\overmap_renamer\debrisfield_renamer.dm"
@@ -2136,7 +2137,6 @@
#include "code\modules\clothing\masks\breath_vr.dm"
#include "code\modules\clothing\masks\gasmask.dm"
#include "code\modules\clothing\masks\gasmask_vr.dm"
-#include "code\modules\clothing\masks\hailer.dm"
#include "code\modules\clothing\masks\miscellaneous.dm"
#include "code\modules\clothing\masks\miscellaneous_vr.dm"
#include "code\modules\clothing\masks\shiny_vr.dm"
@@ -2263,6 +2263,7 @@
#include "code\modules\clothing\under\solgov.dm"
#include "code\modules\clothing\under\solgov_vr.dm"
#include "code\modules\clothing\under\syndicate.dm"
+#include "code\modules\clothing\under\syndicate_ch.dm"
#include "code\modules\clothing\under\tribal.dm"
#include "code\modules\clothing\under\accessories\accessory.dm"
#include "code\modules\clothing\under\accessories\accessory_ch.dm"
@@ -2891,6 +2892,7 @@
#include "code\modules\mob\say_ch.dm"
#include "code\modules\mob\say_vr.dm"
#include "code\modules\mob\skillset.dm"
+#include "code\modules\mob\theme_lists.dm"
#include "code\modules\mob\transform_procs.dm"
#include "code\modules\mob\typing_indicator.dm"
#include "code\modules\mob\update_icons.dm"
@@ -4553,6 +4555,7 @@
#include "modular_chomp\code\datums\components\gargoyle.dm"
#include "modular_chomp\code\datums\interfaces\appearance.dm"
#include "modular_chomp\code\datums\outfits\jobs\noncrew.dm"
+#include "modular_chomp\code\datums\supplypacks\contraband.dm"
#include "modular_chomp\code\datums\supplypacks\medical.dm"
#include "modular_chomp\code\datums\supplypacks\science.dm"
#include "modular_chomp\code\datums\supplypacks\security.dm"
@@ -4580,6 +4583,7 @@
#include "modular_chomp\code\game\objects\structures\loot_pile.dm"
#include "modular_chomp\code\game\objects\structures\watercloset_ch.dm"
#include "modular_chomp\code\game\objects\structures\crate_lockers\largecrate.dm"
+#include "modular_chomp\code\game\objects\structures\crate_lockers\closets\secure\security.dm"
#include "modular_chomp\code\game\turfs\turf.dm"
#include "modular_chomp\code\game\turfs\simulated\outdoors\desert_planet.dm"
#include "modular_chomp\code\matrices\color_matrix.dm"
@@ -4597,6 +4601,7 @@
#include "modular_chomp\code\modules\clothing\clothing.dm"
#include "modular_chomp\code\modules\clothing\clothing_icons.dm"
#include "modular_chomp\code\modules\clothing\gateway\gateway.dm"
+#include "modular_chomp\code\modules\clothing\masks\hailer.dm"
#include "modular_chomp\code\modules\clothing\spacesuits\rig\.behemoth.dm"
#include "modular_chomp\code\modules\clothing\spacesuits\rig\clockwork_ch.dm"
#include "modular_chomp\code\modules\clothing\spacesuits\rig\precursor.dm"