diff --git a/civ13.dme b/civ13.dme
index ad1b5606d4..bc6707a579 100644
--- a/civ13.dme
+++ b/civ13.dme
@@ -516,6 +516,7 @@
#include "code\game\objects\map_metadata\operation_falcon.dm"
#include "code\game\objects\map_metadata\osowiec.dm"
#include "code\game\objects\map_metadata\pavlov_house.dm"
+#include "code\game\objects\map_metadata\pepelsibirsk.dm"
#include "code\game\objects\map_metadata\pioneers.dm"
#include "code\game\objects\map_metadata\port_arthur.dm"
#include "code\game\objects\map_metadata\recife.dm"
@@ -783,7 +784,6 @@
#include "code\modules\1713\jobs\ruhr_uprising.dm"
#include "code\modules\1713\jobs\russian.dm"
#include "code\modules\1713\jobs\samurai.dm"
-#include "code\modules\1713\jobs\siberiad.dm"
#include "code\modules\1713\jobs\skyrim.dm"
#include "code\modules\1713\jobs\sovafghan.dm"
#include "code\modules\1713\jobs\spanish.dm"
@@ -1112,5 +1112,5 @@
#include "code\processes\lighting\sources.dm"
#include "interface\interface.dm"
#include "interface\skin.dmf"
-#include "maps\special\battle_ships.dmm"
+#include "maps\1969\pepelsibirsk.dmm"
// END_INCLUDE
diff --git a/code/__defines/maps.dm b/code/__defines/maps.dm
index e6d0052b87..2377c1b9a1 100644
--- a/code/__defines/maps.dm
+++ b/code/__defines/maps.dm
@@ -70,6 +70,8 @@
#define MAP_NATIONSRP_TRIPLE "NATIONSRP_TRIPLE"
#define MAP_NOMADS_UK "NOMADS_UK"
+#define MAP_PEPELSIBIRSK "PEPELSIBIRSK"
+
#define MAP_THE_ART_OF_THE_DEAL "THE_ART_OF_THE_DEAL"
#define MAP_JUNGLE_OF_THE_CHADS "JUNGLE_OF_THE_CHADS"
diff --git a/code/_helpers/debugger.dm b/code/_helpers/debugger.dm
index af0336d05f..f230347e2d 100644
--- a/code/_helpers/debugger.dm
+++ b/code/_helpers/debugger.dm
@@ -11,12 +11,12 @@
/world/New()
var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
if (debug_server)
- call(debug_server, "auxtools_init")()
+ call_ext(debug_server, "auxtools_init")()
enable_debugging()
. = ..()
/world/Del()
var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
if (debug_server)
- call(debug_server, "auxtools_shutdown")()
+ call_ext(debug_server, "auxtools_shutdown")()
. = ..()
diff --git a/code/datums/vote.dm b/code/datums/vote.dm
index 882c034714..8f4ac6ce40 100644
--- a/code/datums/vote.dm
+++ b/code/datums/vote.dm
@@ -62,7 +62,7 @@ var/global/list/round_voters = list() //Keeps track of the individuals voting fo
C << browse(vote.interface(C),"window=vote")
proc/autogamemode()
- if (map.ID == MAP_NATIONSRP || map.ID == MAP_NATIONSRP_TRIPLE || map.ID == MAP_NATIONSRPMED || map.ID == MAP_NATIONSRP_WW2 || map.ID == MAP_NATIONSRP_COLDWAR || map.ID == MAP_NATIONSRP_COLDWAR_CAMPAIGN || map.ID == MAP_NOMADS_PERSISTENCE_BETA || map.ID == MAP_CAMPAIGN || map.ID == MAP_GLADIATORS || map.ID == MAP_ALLEYWAY || map.ID == MAP_FOOTBALL || map.ID == MAP_FOOTBALL_CAMPAIGN || map.ID == MAP_NOMADS_EXTENDED || map.ID == MAP_CIVILIZATIONS || map.ID == MAP_TRIBES || map.ID == MAP_JUNGLE_OF_THE_CHADS || map.ID == MAP_NOMADS_WASTELAND || map.ID == MAP_NOMADS_WASTELAND_2 || map.ID == MAP_TESTING || map.battleroyale || map.ID == MAP_THE_ART_OF_THE_DEAL || map.ID == MAP_FOUR_KINGDOMS)
+ if (map.ID == MAP_NATIONSRP || map.ID == MAP_NATIONSRP_TRIPLE || map.ID == MAP_NATIONSRPMED || map.ID == MAP_NATIONSRP_WW2 || map.ID == MAP_NATIONSRP_COLDWAR || map.ID == MAP_NATIONSRP_COLDWAR_CAMPAIGN || map.ID == MAP_NOMADS_PERSISTENCE_BETA || map.ID == MAP_CAMPAIGN || map.ID == MAP_GLADIATORS || map.ID == MAP_ALLEYWAY || map.ID == MAP_FOOTBALL || map.ID == MAP_FOOTBALL_CAMPAIGN || map.ID == MAP_NOMADS_EXTENDED || map.ID == MAP_CIVILIZATIONS || map.ID == MAP_TRIBES || map.ID == MAP_JUNGLE_OF_THE_CHADS || map.ID == MAP_NOMADS_WASTELAND || map.ID == MAP_NOMADS_WASTELAND_2 || map.ID == MAP_TESTING || map.battleroyale || map.ID == MAP_THE_ART_OF_THE_DEAL || map.ID == MAP_FOUR_KINGDOMS || map.ID == MAP_PEPELSIBIRSK)
return
if (map.persistence)
return
diff --git a/code/game/mob/living/carbon/human/nomads_spawn.dm b/code/game/mob/living/carbon/human/nomads_spawn.dm
index 7aadf10b90..3c8298d0a3 100644
--- a/code/game/mob/living/carbon/human/nomads_spawn.dm
+++ b/code/game/mob/living/carbon/human/nomads_spawn.dm
@@ -1070,6 +1070,90 @@
b_eyes = hex2num(copytext(hex_eyes, 6, 8))
change_eye_color(r_eyes, g_eyes, b_eyes)
+ else if (map.ID == MAP_PEPELSIBIRSK)
+ var/new_hair = "Black"
+ var/new_eyes = "Black"
+ var/list/possible_h_list = list("Black")
+ var/list/possible_e_list = list("Black")
+ var/list/possible_s_list = list(-10,-60)
+ spawn(5)
+ var/randpick = rand(1,100)
+ switch(randpick)
+ if (1 to 10)
+ add_language("Polish",TRUE)
+ add_language("Russian",TRUE)
+ add_note("Known Languages", "Polish", "Russian")
+ remove_language("English")
+ remove_note("Known Languages","English")
+ name = species.get_random_polish_name(gender)
+ real_name = name
+ for (var/datum/language/polish/A in languages)
+ default_language = A
+ src.nationality = "Polish"
+ possible_h_list = list("Black", "Dark Brown","Light Brown","Red")
+ possible_e_list = list("Black","Brown","Green")
+ possible_s_list = list(-25,-60)
+ give_languages()
+ if (11 to 70)
+ add_language("Russian",TRUE)
+ add_note("Known Languages", "Russian")
+ remove_language("English")
+ remove_note("Known Languages","English")
+ name = species.get_random_russian_name(gender)
+ real_name = name
+ for (var/datum/language/russian/A in languages)
+ default_language = A
+ src.nationality = "Russian"
+ possible_h_list = list("Black", "Dark Brown","Light Brown","Red")
+ possible_e_list = list("Black","Brown","Green")
+ possible_s_list = list(-25,-60)
+ give_languages()
+ if (71 to 80)
+ add_language("Russian",TRUE)
+ add_language("German,",TRUE)
+ add_note("Known Languages", "German", "Russian")
+ remove_language("English")
+ remove_note("Known Languages","English")
+ name = species.get_random_german_name(gender)
+ real_name = name
+ for (var/datum/language/german/A in languages)
+ default_language = A
+ src.nationality = "German"
+ possible_h_list = list("Light Brown","Blond","Dirty Blond")
+ possible_e_list = list("Blue","Green")
+ possible_s_list = list(-15,-30)
+ give_languages()
+ if (81 to 100)
+ add_language("Russian",TRUE)
+ add_language("Ukrainian",TRUE)
+ add_note("Known Languages", "Ukrainian", "Russian")
+ remove_language("English")
+ remove_note("Known Languages","English")
+ name = species.get_random_ukrainian_name(gender)
+ real_name = name
+ src.nationality = "Ukrainian"
+ for (var/datum/language/ukrainian/A in languages)
+ default_language = A
+ possible_h_list = list("Black", "Dark Brown","Light Brown","Red")
+ possible_e_list = list("Black","Brown","Green")
+ possible_s_list = list(-25,-60)
+ give_languages()
+ new_hair = pick(possible_h_list)
+ new_eyes = pick(possible_e_list)
+ s_tone = rand(possible_s_list[2],possible_s_list[1])
+ var/hex_hair = hair_colors[new_hair]
+ r_hair = hex2num(copytext(hex_hair, 2, 4))
+ g_hair = hex2num(copytext(hex_hair, 4, 6))
+ b_hair = hex2num(copytext(hex_hair, 6, 8))
+ r_facial = hex2num(copytext(hex_hair, 2, 4))
+ g_facial = hex2num(copytext(hex_hair, 4, 6))
+ b_facial = hex2num(copytext(hex_hair, 6, 8))
+ var/hex_eyes = eye_colors[new_eyes]
+ r_eyes = hex2num(copytext(hex_eyes, 2, 4))
+ g_eyes = hex2num(copytext(hex_eyes, 4, 6))
+ b_eyes = hex2num(copytext(hex_eyes, 6, 8))
+ change_eye_color(r_eyes, g_eyes, b_eyes)
+
else if (map.ID == MAP_NATIONSRP)
var/new_hair = "Black"
var/new_eyes = "Black"
diff --git a/code/game/mob/new_player/new_player.dm b/code/game/mob/new_player/new_player.dm
index 852b597fb1..12a38354b8 100644
--- a/code/game/mob/new_player/new_player.dm
+++ b/code/game/mob/new_player/new_player.dm
@@ -47,6 +47,10 @@ var/global/redirect_all_players = null
var/htmlfile = "
Wiki Guide \
"
src << browse(htmlfile,"window=wiki;size=820x650")
+ if (map && map.ID == MAP_PEPELSIBIRSK)
+ var/htmlfile = "Wiki Guide \
+ "
+ src << browse(htmlfile,"window=wiki;size=820x650")
/mob/new_player/Destroy()
new_player_mob_list -= src
diff --git a/code/game/objects/map_metadata/operation_falcon.dm b/code/game/objects/map_metadata/operation_falcon.dm
index 624c387098..5608f55d38 100644
--- a/code/game/objects/map_metadata/operation_falcon.dm
+++ b/code/game/objects/map_metadata/operation_falcon.dm
@@ -650,8 +650,8 @@ var/global/list/fob_names_russian = list("Anna", "Boris", "Dmitri", "Yelena", "I
var/faction_text = null // To what faction does it belong?
/obj/structure/milsim/anti_air/attack_hand(mob/living/human/H as mob)
- if (!faction_text)
+ if (!faction_text && map.ID != MAP_PEPELSIBIRSK)
faction_text = H.faction_text
name = "[map.roundend_condition_def2name(faction_text)] [name]"
message_admins("[H.ckey] ([H.faction_text]) has built an Anti-Air at ([src.x], [src.y], [src.z] - JMP).", H.ckey)
- return
\ No newline at end of file
+ return
diff --git a/code/game/objects/map_metadata/pepelsibirsk.dm b/code/game/objects/map_metadata/pepelsibirsk.dm
new file mode 100644
index 0000000000..6fcbd64352
--- /dev/null
+++ b/code/game/objects/map_metadata/pepelsibirsk.dm
@@ -0,0 +1,1019 @@
+// Diplomatic variables, very important
+/datum/pepelsibirsk_relations
+ var/list/pepelsibirsk_relations = list(
+ "china_relations" = 50,
+ "soviet_relations" = 50,
+ "pacific_relations" = 50,
+ "civ_relations" = 50,
+ "mil_relations" = 50,
+ )
+
+var/global/datum/pepelsibirsk_relations/pepel_factions = new()
+
+/obj/map_metadata/pepelsibirsk
+ ID = MAP_PEPELSIBIRSK
+ title = "Pepelsibirsk"
+ lobby_icon = "icons/lobby/civ13.gif"
+ no_winner ="The round is proceeding normally."
+ caribbean_blocking_area_types = list(/area/caribbean/no_mans_land/invisible_wall/taiga)
+ respawn_delay = 1200 // 2 minutes
+ has_hunger = TRUE
+
+ faction_organization = list(
+ CIVILIAN,)
+
+ roundend_condition_sides = list(
+ list(CIVILIAN) = /area/caribbean/british
+ )
+ age = "1975 A.D. Q4 (ROUND SETUP)"
+ ordinal_age = 7
+ civilizations = TRUE
+ nomads = TRUE
+ var/tribes_nr = 1
+ faction_distribution_coeffs = list(CIVILIAN = 1)
+ battle_name = "the civilizations"
+ mission_start_message = "Following a limited thermonuclear exchange which saw most central authorities in the northern hemisphere collapse, it appears Pepelsibirsk was left mostly untouched. You must bring the city to prosperity!"
+ ambience = list('sound/ambience/desert.ogg')
+ faction1 = CIVILIAN
+ availablefactions = list("Nomad")
+ songs = list(
+ "Molchat Doma - Toska:1" = "sound/music/toska.ogg",)
+ gamemode = "Cold War"
+ age1_done = TRUE
+ age2_done = TRUE
+ age3_done = TRUE
+ age4_done = TRUE
+ age5_done = TRUE
+ age6_done = TRUE
+ age7_done = TRUE
+ valid_weather_types = list(WEATHER_NONE, WEATHER_WET, WEATHER_EXTREME)
+ var/real_season = "FALL"
+ var/quarter = 1
+ var/year = 1976
+ //Trader spawnpoint
+ var/trader_spawnpoint = "trader_spawnpoint"
+
+/obj/map_metadata/pepelsibirsk/New()
+ ..()
+ relations_subsystem()
+ send_traders()
+ enemy_attacks()
+ recover_relations()
+ check_relations_msg()
+ time_update(age, quarter, year)
+ spawn(1)
+ seasons()
+
+/obj/map_metadata/pepelsibirsk/seasons()
+ if (real_season == "FALL")
+ season = "WINTER"
+ to_chat(world, "The Winter has started.")
+ change_weather_somehow()
+ spawn(1200)
+ for (var/obj/structure/wild/tree/live_tree/TREES in world)
+ TREES.change_season()
+ for (var/turf/floor/dirt/flooded/D)
+ D.ChangeTurf(/turf/floor/beach/water/flooded)
+ for (var/turf/floor/dirt/ploughed/flooded/D)
+ D.ChangeTurf(/turf/floor/beach/water/flooded)
+ for(var/obj/structure/sink/S)
+ if (istype(S, /obj/structure/sink/well) || istype(S, /obj/structure/sink/puddle))
+ S.dry = FALSE
+ S.update_icon()
+ for (var/turf/floor/beach/drywater/B in get_area_turfs(/area/caribbean/nomads/desert))
+ B.ChangeTurf(/turf/floor/beach/water/swamp)
+ for (var/turf/floor/beach/drywater2/C in get_area_turfs(/area/caribbean/nomads/desert))
+ C.ChangeTurf(/turf/floor/beach/water/deep/swamp)
+ for (var/turf/floor/dirt/jungledirt/JD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(50))
+ JD.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/dry_lava/JD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(50))
+ JD.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/jungledirt/JD2 in get_area_turfs(/area/caribbean/nomads/forest/savanna))
+ if (prob(50))
+ JD2.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/burned/BD in get_area_turfs(/area/caribbean/nomads/desert))
+ if (prob(75))
+ BD.ChangeTurf(/turf/floor/dirt)
+ for (var/turf/floor/dirt/burned/BDD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(75))
+ BDD.ChangeTurf(/turf/floor/dirt/jungledirt)
+ for (var/turf/floor/dirt/burned/BDD2 in get_area_turfs(/area/caribbean/nomads/forest/savanna))
+ if (prob(75))
+ BDD2.ChangeTurf(/turf/floor/dirt/jungledirt)
+ for (var/turf/floor/dirt/DT in get_area_turfs(/area/caribbean/nomads/forest))
+ if (!istype(DT, /turf/floor/dirt/underground))
+ var/tmp/area/A = get_area(DT)
+ if (A.climate == "temperate")
+ if (prob(75))
+ DT.ChangeTurf(/turf/floor/dirt/winter)
+ else if (A.climate == "tundra" || A.climate == "taiga")
+ DT.ChangeTurf(/turf/floor/dirt/winter)
+ for (var/turf/floor/grass/GT in get_area_turfs(/area/caribbean/nomads/forest))
+ var/tmp/area/A = get_area(GT)
+ if (A.climate == "temperate")
+ if (prob(80))
+ GT.ChangeTurf(/turf/floor/winter/grass)
+ else if (A.climate == "tundra" || A.climate == "taiga")
+ GT.ChangeTurf(/turf/floor/winter/grass)
+ for (var/turf/floor/dirt/DTT in get_area_turfs(/area/caribbean/nomads/snow))
+ if (!istype(DTT, /turf/floor/dirt/underground))
+ DTT.ChangeTurf(/turf/floor/dirt/winter)
+ for (var/turf/floor/grass/GTT in get_area_turfs(/area/caribbean/nomads/snow))
+ GTT.ChangeTurf(/turf/floor/winter/grass)
+ real_season = "WINTER"
+ else if (real_season == "SPRING")
+ season = "SUMMER"
+ to_chat(world, "The Summer has started.")
+ change_weather_somehow()
+ spawn(300)
+ for (var/obj/structure/wild/tree/live_tree/TREES in world)
+ TREES.change_season()
+ for(var/obj/structure/sink/S in get_area_turfs(/area/caribbean/nomads/desert))
+ if (istype(S, /obj/structure/sink/well) || istype(S, /obj/structure/sink/puddle))
+ S.dry = TRUE
+ S.update_icon()
+ for (var/turf/floor/beach/water/swamp/D in get_area_turfs(/area/caribbean/nomads/desert))
+ if (D.z > 1)
+ D.ChangeTurf(/turf/floor/beach/drywater)
+ for (var/turf/floor/beach/water/deep/swamp/DS in get_area_turfs(/area/caribbean/nomads/desert))
+ if (DS.z > 1)
+ DS.ChangeTurf(/turf/floor/beach/drywater2)
+ for (var/turf/floor/beach/water/flooded/DF)
+ if (DF.z > 1)
+ DF.ChangeTurf(/turf/floor/dirt/flooded)
+ for (var/turf/floor/dirt/winter/DT in get_area_turfs(/area/caribbean/nomads/forest))
+ var/tmp/area/A = get_area(DT)
+ if (A.climate == "temperate")
+ DT.ChangeTurf(/turf/floor/dirt)
+ for (var/turf/floor/winter/grass/GT in get_area_turfs(/area/caribbean/nomads/forest))
+ var/tmp/area/A = get_area(GT)
+ if (A.climate == "temperate")
+ GT.ChangeTurf(/turf/floor/grass)
+ for (var/turf/floor/winter/WT in get_area_turfs(/area/caribbean/roofed))
+ WT.ChangeTurf(/turf/floor/dirt)
+ for (var/turf/floor/dirt/winter/WT in get_area_turfs(/area/caribbean/roofed))
+ WT.ChangeTurf(/turf/floor/dirt)
+ real_season = "SUMMER"
+ else if (real_season == "WINTER")
+ season = "SPRING"
+ to_chat(world, "The weather is getting warmer in other places of the world, but not here. It is now Spring.")
+ real_season = "SPRING"
+ else if (real_season == "SUMMER")
+ season = "FALL"
+ to_chat(world, "The warmth of summer abruptly ends, being replaced with strong winds and rain, swiftly turning to snowstorms and ice. It is now Fall.")
+ spawn(1200)
+ for (var/obj/structure/wild/tree/live_tree/TREES in world)
+ TREES.change_season()
+ for (var/turf/floor/dirt/flooded/D)
+ D.ChangeTurf(/turf/floor/beach/water/flooded)
+ for (var/turf/floor/dirt/ploughed/flooded/D)
+ D.ChangeTurf(/turf/floor/beach/water/flooded)
+ for(var/obj/structure/sink/S)
+ if (istype(S, /obj/structure/sink/well) || istype(S, /obj/structure/sink/puddle))
+ S.dry = FALSE
+ S.update_icon()
+ for (var/turf/floor/beach/drywater/B in get_area_turfs(/area/caribbean/nomads/desert))
+ B.ChangeTurf(/turf/floor/beach/water/swamp)
+ for (var/turf/floor/beach/drywater2/C in get_area_turfs(/area/caribbean/nomads/desert))
+ C.ChangeTurf(/turf/floor/beach/water/deep/swamp)
+ for (var/turf/floor/dirt/jungledirt/JD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(50))
+ JD.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/dry_lava/JD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(50))
+ JD.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/jungledirt/JD2 in get_area_turfs(/area/caribbean/nomads/forest/savanna))
+ if (prob(50))
+ JD2.ChangeTurf(/turf/floor/grass/jungle)
+ for (var/turf/floor/dirt/burned/BD in get_area_turfs(/area/caribbean/nomads/desert))
+ if (prob(75))
+ BD.ChangeTurf(/turf/floor/dirt)
+ for (var/turf/floor/dirt/burned/BDD in get_area_turfs(/area/caribbean/nomads/forest/Jungle))
+ if (prob(75))
+ BDD.ChangeTurf(/turf/floor/dirt/jungledirt)
+ for (var/turf/floor/dirt/burned/BDD2 in get_area_turfs(/area/caribbean/nomads/forest/savanna))
+ if (prob(75))
+ BDD2.ChangeTurf(/turf/floor/dirt/jungledirt)
+ for (var/turf/floor/dirt/DT in get_area_turfs(/area/caribbean/nomads/forest))
+ if (!istype(DT, /turf/floor/dirt/underground))
+ var/tmp/area/A = get_area(DT)
+ if (A.climate == "temperate")
+ if (prob(75))
+ DT.ChangeTurf(/turf/floor/dirt/winter)
+ else if (A.climate == "tundra" || A.climate == "taiga")
+ DT.ChangeTurf(/turf/floor/dirt/winter)
+ for (var/turf/floor/grass/GT in get_area_turfs(/area/caribbean/nomads/forest))
+ var/tmp/area/A = get_area(GT)
+ if (A.climate == "temperate")
+ if (prob(80))
+ GT.ChangeTurf(/turf/floor/winter/grass)
+ else if (A.climate == "tundra" || A.climate == "taiga")
+ GT.ChangeTurf(/turf/floor/winter/grass)
+ for (var/turf/floor/dirt/DTT in get_area_turfs(/area/caribbean/nomads/snow))
+ if (!istype(DTT, /turf/floor/dirt/underground))
+ DTT.ChangeTurf(/turf/floor/dirt/winter)
+ for (var/turf/floor/grass/GTT in get_area_turfs(/area/caribbean/nomads/snow))
+ GTT.ChangeTurf(/turf/floor/winter/grass)
+ real_season = "FALL"
+ spawn(30 MINUTES)
+ seasons()
+
+/obj/map_metadata/pepelsibirsk/cross_message(faction)
+ return "The all-clear has been given. You may now leave the Soviet."
+
+/obj/map_metadata/pepelsibirsk/faction1_can_cross_blocks()
+ return (processes.ticker.playtime_elapsed >= 4800 || admin_ended_all_grace_periods)
+
+/obj/map_metadata/pepelsibirsk/job_enabled_specialcheck(var/datum/job/J)
+ if (J.is_nomad == TRUE)
+ . = TRUE
+ else
+ . = FALSE
+
+////// DIPLOMATIC RELATIONS MANAGEMENT //////
+
+/obj/map_metadata/pepelsibirsk/proc/relations_subsystem()
+ spawn(30) // 3 seconds
+ for(var/relation in pepel_factions.pepelsibirsk_relations)
+ if (pepel_factions.pepelsibirsk_relations[relation] > 100)
+ pepel_factions.pepelsibirsk_relations[relation] = 100
+ else if (pepel_factions.pepelsibirsk_relations[relation] < 0)
+ pepel_factions.pepelsibirsk_relations[relation] = 0
+ relations_subsystem()
+ return
+
+/obj/map_metadata/pepelsibirsk/proc/check_relations_msg()
+ to_chat(world, "Diplomatic Relations:")
+ to_chat(world, "
People's Republic of China: [pepel_factions.pepelsibirsk_relations["china_relations"]]")
+ to_chat(world, "
Union of Soviet Socialist Republics: [pepel_factions.pepelsibirsk_relations["soviet_relations"]]")
+ to_chat(world, "
United States of the Pacific: [pepel_factions.pepelsibirsk_relations["pacific_relations"]]")
+ to_chat(world, "
Naroddnygorod: [pepel_factions.pepelsibirsk_relations["civ_relations"]]")
+ to_chat(world, "
Pepelsibirsk-1: [pepel_factions.pepelsibirsk_relations["mil_relations"]]")
+ spawn(5 MINUTES)
+ check_relations_msg()
+ return
+
+/obj/map_metadata/pepelsibirsk/proc/recover_relations()
+ if (pepel_factions.pepelsibirsk_relations["civ_relations"] <= 26)
+ pepel_factions.pepelsibirsk_relations["civ_relations"] += 0.02
+ if (pepel_factions.pepelsibirsk_relations["mil_relations"] <= 26)
+ pepel_factions.pepelsibirsk_relations["mil_relations"] += 0.02
+ spawn(20 MINUTES)
+ recover_relations()
+ return
+
+////// TIME CODE ////// (thanks malt)
+
+/obj/map_metadata/pepelsibirsk/proc/time_quarters()
+ quarter++
+ if(quarter >=5)
+ quarter = 1
+ year++
+ to_chat(world, "The year has advanced to [year].")
+ else
+ to_chat(world, "The quarter has advanced to Q[quarter].")
+ return
+
+/obj/map_metadata/pepelsibirsk/proc/time_update()
+ age = "[year] A.D. Q[quarter]"
+ world.log << "Time_update has been triggered, the date is now [year] A.D. Q[quarter]."
+ spawn (30 MINUTES)
+ time_quarters()
+ time_update()
+ return
+
+////// PEPELSIBIRSK TRAVELING MERCHANTS //////
+/obj/structure/vending/sales/pepelsibirsk
+ var/faction_relations
+
+/obj/structure/vending/sales/pepelsibirsk/proc/dropwares()
+ return
+
+/obj/structure/vending/sales/pepelsibirsk/ex_act(severity)
+ dropwares()
+ qdel(src)
+ return
+
+/obj/structure/vending/sales/pepelsibirsk/bullet_act()
+ dropwares()
+ qdel(src)
+ return
+
+/obj/structure/vending/sales/pepelsibirsk/pacific_trader
+ name = "U.S.P Trader"
+ desc = "The United States of the Pacific has come to trade."
+ icon = 'icons/mob/npcs.dmi'
+ icon_state = "afghcia"
+ faction_relations = "pacific_relations"
+ products = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/m16/commando = 2,
+ /obj/item/weapon/gun/projectile/submachinegun/m16/m16a2 = 5,
+ /obj/item/weapon/gun/launcher/grenade/standalone/m79 = 2,
+ /obj/item/weapon/gun/launcher/rocket/bazooka = 2,
+ /obj/item/weapon/gun/projectile/submachinegun/m14/sniper = 1,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/holographic = 2,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/acog = 2,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/reddot = 2,
+ /obj/item/weapon/attachment/scope/adjustable/sniper_scope = 2,
+ /obj/item/weapon/attachment/under/foregrip = 2,
+ /obj/item/weapon/attachment/silencer/pistol = 2,
+ /obj/item/weapon/attachment/silencer/rifle = 2,
+ /obj/item/weapon/attachment/silencer/shotgun = 2,
+ /obj/item/weapon/attachment/silencer/smg = 2,
+
+ //Ammunition
+ /obj/item/ammo_magazine/m16 = 8,
+ /obj/item/ammo_magazine/m14 = 3,
+ /obj/item/ammo_casing/rocket/bazooka = 2,
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 3,
+ /obj/item/weapon/plastique/c4 = 2,
+
+ //Clothing
+ /obj/item/clothing/under/us_uni/us_camo_woodland = 8,
+ /obj/item/clothing/accessory/storage/webbing/us_vest = 8,
+ /obj/item/clothing/suit/storage/coat/ww2/us_coat = 8,
+ /obj/item/clothing/shoes/jackboots/modern = 8,
+ /obj/item/clothing/accessory/armor/coldwar/pasgt = 2,
+ /obj/item/clothing/head/helmet/modern/pasgt = 2,
+
+ //Food and Drink
+ /obj/item/weapon/reagent_containers/food/snacks/burger = 4,
+ /obj/item/weapon/reagent_containers/food/snacks/cheeseburger = 4,
+ /obj/item/weapon/reagent_containers/food/snacks/hotdog = 4,
+ /obj/item/weapon/reagent_containers/food/snacks/MRE/generic/american = 3,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pumpkinpie = 1,
+ /obj/item/weapon/reagent_containers/food/snacks/applepie = 1,
+
+ //Miscellaneous
+ /obj/item/weapon/telephone/mobile = 2,
+ /obj/structure/anti_air_crate = 1,
+ )
+ prices = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/m16/commando = 200,
+ /obj/item/weapon/gun/projectile/submachinegun/m16/m16a2 = 160,
+ /obj/item/weapon/gun/launcher/grenade/standalone/m79 = 150,
+ /obj/item/weapon/gun/launcher/rocket/bazooka = 150,
+ /obj/item/weapon/gun/projectile/submachinegun/m14/sniper = 200,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/holographic = 100,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/acog = 100,
+ /obj/item/weapon/attachment/scope/adjustable/advanced/reddot = 100,
+ /obj/item/weapon/attachment/scope/adjustable/sniper_scope = 100,
+ /obj/item/weapon/attachment/under/foregrip = 100,
+ /obj/item/weapon/attachment/silencer/pistol = 100,
+ /obj/item/weapon/attachment/silencer/rifle = 100,
+ /obj/item/weapon/attachment/silencer/shotgun = 100,
+ /obj/item/weapon/attachment/silencer/smg = 100,
+
+ //Ammunition
+ /obj/item/ammo_magazine/m16 = 20,
+ /obj/item/ammo_magazine/m14 = 30,
+ /obj/item/ammo_casing/rocket/bazooka = 200,
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 80,
+ /obj/item/weapon/plastique/c4 = 100,
+
+ //Clothing
+ /obj/item/clothing/under/us_uni/us_camo_woodland = 20,
+ /obj/item/clothing/accessory/storage/webbing/us_vest = 20,
+ /obj/item/clothing/suit/storage/coat/ww2/us_coat = 30,
+ /obj/item/clothing/shoes/jackboots/modern = 20,
+ /obj/item/clothing/accessory/armor/coldwar/pasgt = 100,
+ /obj/item/clothing/head/helmet/modern/pasgt = 100,
+
+ //Food and Drink
+ /obj/item/weapon/reagent_containers/food/snacks/burger = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/cheeseburger = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/hotdog = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/MRE/generic/american = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pumpkinpie = 20,
+ /obj/item/weapon/reagent_containers/food/snacks/applepie = 20,
+
+ //Miscellaneous
+ /obj/item/weapon/telephone/mobile = 500,
+ /obj/structure/anti_air_crate = 1000,
+ )
+
+/obj/structure/vending/sales/pepelsibirsk/pacific_trader/dropwares()
+ for(var/product_key in products)
+ for(var/i in 1 to products[product_key])
+ new product_key(get_turf(src))
+ new /mob/living/human/corpse(get_turf(src))
+ pepel_factions.pepelsibirsk_relations["pacific_relations"] -= rand(10, 25)
+ to_chat(world, "A Pacifician trader has died. Relations with the United States of the Pacific have dropped to [pepel_factions.pepelsibirsk_relations["pacific_relations"]]!")
+
+/obj/structure/vending/sales/pepelsibirsk/chinese_trader
+ name = "PRC Trader"
+ desc = "现在我有冰淇淋我很喜欢冰淇淋."
+ icon = 'icons/mob/npcs.dmi'
+ icon_state = "chinese_trader"
+ faction_relations = "china_relations"
+ products = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/ak47/chinese = 3,
+ /obj/item/weapon/gun/projectile/semiautomatic/sks/chinese = 3,
+ /obj/item/weapon/gun/projectile/submachinegun/ppsh/chinese = 3,
+
+ //Clothing
+ /obj/item/clothing/suit/storage/coat/chinese/officer = 2,
+ /obj/item/clothing/suit/storage/coat/chinese = 8,
+ /obj/item/clothing/under/chinaguard = 8,
+ /obj/item/clothing/head/chinaguardcap = 8,
+ /obj/item/clothing/head/chinese_ushanka = 8,
+ /obj/item/clothing/head/helmet/modern/chi_korea_helmet/modernized = 8,
+ )
+ prices = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/ak47/chinese = 50,
+ /obj/item/weapon/gun/projectile/semiautomatic/sks/chinese = 30,
+ /obj/item/weapon/gun/projectile/submachinegun/ppsh/chinese = 30,
+
+ //Clothing
+ /obj/item/clothing/suit/storage/coat/chinese/officer = 30,
+ /obj/item/clothing/suit/storage/coat/chinese = 25,
+ /obj/item/clothing/under/chinaguard = 25,
+ /obj/item/clothing/head/chinaguardcap = 15,
+ /obj/item/clothing/head/chinese_ushanka = 15,
+ /obj/item/clothing/head/helmet/modern/chi_korea_helmet/modernized = 35,
+ )
+
+/obj/structure/vending/sales/pepelsibirsk/chinese_trader/dropwares()
+ for(var/product_key in products)
+ for(var/i in 1 to products[product_key])
+ new product_key(get_turf(src))
+ new /mob/living/human/corpse(get_turf(src))
+ pepel_factions.pepelsibirsk_relations["china_relations"] -= rand(10, 25)
+ to_chat(world, "A Chinese trader has died. Relations with the People's Republic of China have dropped to [pepel_factions.pepelsibirsk_relations["china_relations"]]!")
+
+/obj/structure/vending/sales/pepelsibirsk/soviet_trader
+ name = "Soviet Trader"
+ desc = "Вы неправильно используете это программное обеспечение для перевода. Пожалуйста, проконсультируйтесь с руководством по программному обеспечению."
+ icon = 'icons/mob/npcs.dmi'
+ icon_state = "soviet_trader"
+ faction_relations = "soviet_relations"
+ products = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/ak74/aks74/aks74u/aks74uso = 1,
+ /obj/item/weapon/gun/projectile/shotgun/pump/ks23 = 1,
+ /obj/item/weapon/gun/launcher/rocket/single_shot/rpg22 = 2,
+ /obj/item/weapon/gun/launcher/grenade/underslung/gp25 = 2,
+ /obj/item/weapon/gun/launcher/rocket/rpg7 = 1,
+
+ //Ammunition
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 3,
+ /obj/item/ammo_casing/rocket/pg7v = 2,
+ /obj/item/ammo_casing/rocket/og7v = 2,
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 3,
+ /obj/item/weapon/plastique/russian = 1,
+
+ //Food and Drink
+ /obj/item/weapon/reagent_containers/food/snacks/MRE/generic/russian = 5,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel = 5,
+ /obj/item/weapon/reagent_containers/food/drinks/bottle/vodka = 5,
+ /obj/item/weapon/reagent_containers/food/drinks/flask/barflask = 3,
+ /obj/item/weapon/reagent_containers/food/drinks/flask/officer = 3,
+ /obj/item/weapon/reagent_containers/food/drinks/teapot/filled = 3,
+ /obj/item/weapon/reagent_containers/food/drinks/golden_cup = 1,
+
+ //Medicines
+ /obj/item/weapon/storage/pill_bottle/tramadol = 4,
+ /obj/item/weapon/storage/pill_bottle/penicillin = 4,
+ /obj/item/weapon/storage/pill_bottle/paracetamol = 4,
+ /obj/item/weapon/storage/pill_bottle/citalopram = 4,
+ /obj/item/weapon/storage/pill_bottle/potassium_iodide = 4,
+ )
+ prices = list(
+ //Weapons
+ /obj/item/weapon/gun/projectile/submachinegun/ak74/aks74/aks74u/aks74uso = 200,
+ /obj/item/weapon/gun/projectile/shotgun/pump/ks23 = 150,
+ /obj/item/weapon/gun/launcher/rocket/single_shot/rpg22 = 250,
+ /obj/item/weapon/gun/launcher/grenade/underslung/gp25 = 100,
+ /obj/item/weapon/gun/launcher/rocket/rpg7 = 100,
+
+ //Ammunition
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 40,
+ /obj/item/ammo_casing/rocket/pg7v = 100,
+ /obj/item/ammo_casing/rocket/og7v = 100,
+ /obj/item/weapon/grenade/frag/ugl/shell40mm = 40,
+ /obj/item/weapon/plastique/russian = 30,
+
+ //Food and Drink
+ /obj/item/weapon/reagent_containers/food/snacks/MRE/generic/russian = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/bottle/vodka = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/flask/barflask = 25,
+ /obj/item/weapon/reagent_containers/food/drinks/flask/officer = 50,
+ /obj/item/weapon/reagent_containers/food/drinks/teapot/filled = 25,
+ /obj/item/weapon/reagent_containers/food/drinks/golden_cup = 500,
+
+ //Medicines
+ /obj/item/weapon/storage/pill_bottle/tramadol = 150,
+ /obj/item/weapon/storage/pill_bottle/penicillin = 150,
+ /obj/item/weapon/storage/pill_bottle/paracetamol = 150,
+ /obj/item/weapon/storage/pill_bottle/citalopram = 150,
+ /obj/item/weapon/storage/pill_bottle/potassium_iodide = 150,
+ )
+
+/obj/structure/vending/sales/pepelsibirsk/soviet_trader/dropwares()
+ for(var/product_key in products)
+ for(var/i in 1 to products[product_key])
+ new product_key(get_turf(src))
+ new /mob/living/human/corpse(get_turf(src))
+ pepel_factions.pepelsibirsk_relations["soviet_relations"] -= rand(10, 25)
+ to_chat(world, "A Soviet trader has died. Relations with the Union of Soviet Socialist Republics have dropped to [pepel_factions.pepelsibirsk_relations["soviet_relations"]]!")
+
+////// TRAVELING MERCHANTS MANAGEMENT //////
+/obj/map_metadata/pepelsibirsk/proc/send_traders() //Picks a turf from trader_spawnpoint and sends traders there if relations are high enough.
+ world.log << "send_traders has been triggered"
+ var/list/turfs = list()
+ var/spawnpoint
+ spawn(1)
+ turfs = latejoin_turfs[trader_spawnpoint]
+ if (pepel_factions.pepelsibirsk_relations["china_relations"] >= 26)
+ var/traderpath = /obj/structure/vending/sales/pepelsibirsk/chinese_trader
+ spawnpoint = pick(turfs)
+ var/trader = new traderpath(get_turf(spawnpoint))
+ world.log << "[trader] has been spawned at with get_turf, example: [get_turf(spawnpoint)]."
+ spawn(10 MINUTES)
+ world.log << "[trader] has been deleted."
+ qdel(trader)
+ if (pepel_factions.pepelsibirsk_relations["soviet_relations"] >= 26)
+ var/traderpath = /obj/structure/vending/sales/pepelsibirsk/soviet_trader
+ spawnpoint = pick(turfs)
+ var/trader = new traderpath(get_turf(spawnpoint))
+ world.log << "[trader] has been spawned with get_turf, example: [get_turf(spawnpoint)]."
+ spawn(10 MINUTES)
+ world.log << "[trader] has been deleted."
+ qdel(trader)
+ if (pepel_factions.pepelsibirsk_relations["pacific_relations"] >= 26)
+ var/traderpath = /obj/structure/vending/sales/pepelsibirsk/pacific_trader
+ spawnpoint = pick(turfs)
+ var/trader = new traderpath(get_turf(spawnpoint))
+ world.log << "[trader] has been spawned with get_turf, example: [get_turf(spawnpoint)]."
+ spawn(10 MINUTES)
+ world.log << "[trader] has been deleted."
+ qdel(trader)
+ return
+
+ var/traders = list()
+ if (pepel_factions.pepelsibirsk_relations["china_relations"] >= 26)
+ traders += "the Chinese"
+ if (pepel_factions.pepelsibirsk_relations["soviet_relations"] >= 26)
+ traders += "the Soviets"
+ if (pepel_factions.pepelsibirsk_relations["pacific_relations"] >= 26)
+ traders += "the Pacificans"
+
+ if (length(traders) > 1)
+ traders[length(traders)] = "and [traders[length(traders)]]"
+ to_chat(world, "[jointext(traders, ", ")] have arrived to trade.")
+ world.log << "[jointext(traders, ", ")] have arrived to trade."
+ else
+ to_chat(world, "Due to poor relations, no one has arrived to trade.")
+ world.log << "Due to poor relations, no one has arrived to trade."
+
+ spawn(30 MINUTES)
+ send_traders(trader_spawnpoint)
+ return
+
+////// PEPELSIBIRSK PERSONAL DOCUMENTS //////
+/obj/item/weapon/personal_documents
+ name = "Personal Documents"
+ desc = "The identification papers of a citizen."
+ icon = 'icons/obj/bureaucracy.dmi'
+ icon_state = "passport"
+ item_state = "paper"
+ throwforce = FALSE
+ w_class = ITEM_SIZE_TINY
+ slot_flags = SLOT_ID | SLOT_POCKET
+ throw_range = TRUE
+ throw_speed = TRUE
+ attack_verb = list("bapped")
+ flammable = TRUE
+ var/mob/living/human/owner = null
+ var/document_name = ""
+ var/list/document_details = list()
+ var/list/guardnotes = list()
+ secondary_action = TRUE
+ flags = FALSE
+ New()
+ ..()
+ spawn(20)
+ if (ishuman(loc))
+ var/mob/living/human/H = loc
+ document_name = H.real_name
+ owner = H
+ name = "[document_name]'s personal documents"
+ desc = "The identification papers of [document_name]."
+ var/job = "Working"
+ if (istype(H.original_job, /datum/job/civilian/civnomad))
+ switch(H.nationality)
+ if ("German")
+ job = "Citizen of the German Democratic Republic, expatriated and working [pick("in the Pepelsibirsk research facility","in the Pepelsibirsk hospital", "for the local KGB office", "in the Pepelsibirsk car factory")]."
+ if ("Ukrainian")
+ job = "Internal migrant from the Ukrainian SSR, working [pick("for the KGB", "for the city Soviet", "in the Pepelsibirsk mine", "in the Pepelsibirsk car factory", "at the collective farm in Pepelsibirsk", "in the Pepelsibirsk power plant", "at the collective farm in Pepelsibirsk", "in the Pepelsibirsk mine", "in the Pepelsibirsk research facility", "in the Pepelsibirsk hospital", "for the Soviet Armed Forces", "for the local Militsiya")]."
+ if ("Polish")
+ job = "Citizen of the Polish Socialist Republic, expatriated and working in [pick("the Pepelsibirsk mine","the Pepelsibirsk car factory", "the collective farm in Pepelsibirsk", "the Pepelsibirsk power plant")]."
+ if ("Russian")
+ job = "Pepelsibirsk local, working [pick("for the KGB", "for the city Soviet", "in the Pepelsibirsk mine", "in the Pepelsibirsk car factory", "at the collective farm in Pepelsibirsk", "in the Pepelsibirsk power plant", "at the collective farm in Pepelsibirsk", "in the Pepelsibirsk mine", "in the Pepelsibirsk research facility", "in the Pepelsibirsk hospital", "for the Soviet Armed Forces", "for the local Militsiya")]."
+ document_details = list(H.h_style, H.gender, H.age, job)
+
+/obj/item/weapon/personal_documents/examine(mob/user)
+ ..(user)
+ to_chat(user, "*---------*")
+ to_chat(user, "Hair: [document_details[1]]")
+ to_chat(user, "Gender: [document_details[2]]")
+ to_chat(user, "Age: [document_details[3]] years")
+ to_chat(user, "Employment and Citizenship Status: [document_details[4]]")
+ to_chat(user, "*---------*")
+ if (guardnotes.len)
+ for(var/i in guardnotes)
+ to_chat(user, "NOTE: [i]")
+ to_chat(user, "*---------*")
+
+/obj/item/weapon/personal_documents/attackby(var/obj/item/I, var/mob/living/human/H)
+ if (!ishuman(H))
+ return
+ if (istype(I, /obj/item/weapon/pen))
+ var/confirm = WWinput(H, "Do you want to add a note to these documents?", "Personal Documents", "No", list("No","Yes"))
+ if (confirm == "No")
+ return
+ else
+ var/texttoadd = input(H, "What do you want to write? Up to 150 characters", "Notes", "") as text
+ texttoadd = sanitize(texttoadd, 150, FALSE)
+ texttoadd = "[texttoadd] - [H.real_name]"
+ guardnotes += texttoadd
+ return
+
+/obj/item/weapon/personal_documents/secondary_attack_self(mob/living/human/user)
+ showoff(user)
+ return
+
+////// TRADING CODE ////// (it's my magnum opus -Terrariola)
+/obj/structure/pepelsibirsk_radio //does nothing too important, ignore
+ name = "If you see this, talk to an admin."
+ desc = "THIS SHOULD NOT EXIST. -Terrariola"
+ icon = 'icons/obj/structures.dmi'
+ icon_state = "supply_radio"
+
+/obj/structure/pepelsibirsk_radio/supply_radio
+ name = "long range supply radio"
+ desc = "Use this to request supplies to be delivered to the city."
+ icon = 'icons/obj/structures.dmi'
+ icon_state = "supply_radio"
+ var/money = 0
+ var/marketval = 0
+ density = TRUE
+ anchored = TRUE
+ var/factionarea = "SupplyRN"
+ var/import_tax_rate = 0
+ var/faction = "civilian"
+ var/faction_treasury = "TreasuryRN"
+ not_movable = TRUE
+ not_disassemblable = TRUE
+ var/list/civ_catalogue = list( //type name, path, price
+ list("wood crate", /obj/structure/closet/crate/wood,50),
+ list("iron crate", /obj/structure/closet/crate/iron,50),
+ list("glass crate", /obj/structure/closet/crate/glass,50),
+ list("stone crate", /obj/structure/closet/crate/stone,50),
+ list("vegetables crate", /obj/structure/closet/crate/rations/vegetables,30),
+ list("fruits crate", /obj/structure/closet/crate/rations/fruits,30),
+ list("biscuits crate", /obj/structure/closet/crate/rations/biscuits,30),
+ list("beer crate", /obj/structure/closet/crate/rations/beer,30),
+ list("ale crate", /obj/structure/closet/crate/rations/ale,30),
+ list("cow", /mob/living/simple_animal/cattle/cow,150),
+ list("bull", /mob/living/simple_animal/cattle/bull,150),
+ list("sheep ram", /mob/living/simple_animal/sheep,80),
+ list("sheep ewe", /mob/living/simple_animal/sheep/female,80),
+ list("pig boar", /mob/living/simple_animal/pig_boar,100),
+ list("pig gilt", /mob/living/simple_animal/pig_gilt,100),
+ list("hen", /mob/living/simple_animal/chicken,50),
+ list("rooster", /mob/living/simple_animal/rooster,50),
+ list("horse", /mob/living/simple_animal/horse,200),
+ list("brick crate", /obj/structure/closet/crate/brick,100),
+ list("medical supplies", /obj/item/weapon/storage/firstaid/adv,50),
+ )
+ var/list/mil_catalogue = list(
+ list("gunpowder barrel", /obj/item/weapon/reagent_containers/glass/barrel/gunpowder,25),
+ list("sks crate (5)", /obj/structure/closet/crate/pepelsibirsk/sks,500),
+ list("akm crate (5)", /obj/structure/closet/crate/pepelsibirsk/akm,1000),
+ list("ak-74 crate (5)", /obj/structure/closet/crate/pepelsibirsk/ak74,1200),
+ list("svd crate (2)", /obj/structure/closet/crate/pepelsibirsk/svd,1000),
+ list("mosin-nagant crate (10)", /obj/structure/closet/crate/pepelsibirsk/mosin,500),
+ list("PPSh-41 crate (2)", /obj/structure/closet/crate/pepelsibirsk/ppsh,400),
+ list("makarov crate (5)", /obj/structure/closet/crate/pepelsibirsk/makarov,150),
+ list("surplus red army uniform crate (5)", /obj/structure/closet/crate/pepelsibirsk/surplus_ww2,200),
+ list("afghanka uniform crate (5)", /obj/structure/closet/crate/pepelsibirsk/sov_uniforms,250),
+ list("frag grenade crate (12)", /obj/structure/closet/crate/pepelsibirsk/rgd5,800),
+ list("7.62x39mm ammunition crate (300)", /obj/structure/closet/crate/pepelsibirsk/seven62x39mm,100),
+ list("7.62x54mmR ammunition crate (200)", /obj/structure/closet/crate/pepelsibirsk/seven62x54mmr,100),
+ list("9x18mm ammunition crate (240)", /obj/structure/closet/crate/pepelsibirsk/ninex18mm,50),
+ list("6B1 vest crate (5)", /obj/structure/closet/crate/pepelsibirsk/sixb1,300),
+ list("6B2 vest crate (5)", /obj/structure/closet/crate/pepelsibirsk/sixb2,1000),
+ )
+
+/obj/structure/pepelsibirsk_radio/supply_radio/proc/update_cost(final_list, final_cost, choice, user, scam)
+ if (choice == "Pepelsibirsk 1 (MIL)" && scam == "No, we're honest.")
+ pepel_factions.pepelsibirsk_relations["mil_relations"] += final_cost*0.02
+ else if (choice == "Narodnyygorod (CIV)" && scam == "No, we're honest.")
+ pepel_factions.pepelsibirsk_relations["civ_relations"] += final_cost*0.02
+ else if (choice == "Narodnyygorod (CIV)" && scam == "Yes, scam them!")
+ pepel_factions.pepelsibirsk_relations["civ_relations"] -= final_cost*0.08
+ else if (choice == "Pepelsibirsk 1 (MIL)" && scam == "Yes, scam them!")
+ pepel_factions.pepelsibirsk_relations["mil_relations"] -= final_cost*0.08
+ if (scam == "No, we're honest.")
+ to_chat(user, "Your item will arrive in 60 seconds. Relations with [choice] have increased by [final_cost*0.02].")
+ else if (scam == "Yes, scam them!")
+ to_chat(user, "Your item will arrive in 60 seconds. Relations with [choice] have decreased by [final_cost*0.08].")
+ spawn(1 MINUTE)
+ var/list/turfs = list()
+ if (faction_treasury != "craftable")
+ turfs = latejoin_turfs[factionarea]
+ else
+ turfs = list(get_turf(locate(x,y+1,z)))
+ var/spawnpoint
+ spawnpoint = pick(turfs)
+ var/tpath = final_list[2]
+ new tpath(get_turf(spawnpoint))
+ to_chat(user, "Your [final_list[1]] has arrived.")
+ return
+
+/obj/structure/pepelsibirsk_radio/supply_radio/attack_hand(var/mob/living/human/user as mob)
+ var/final_cost
+ var/list/final_list = list()
+ var/list/display = list ()//The products to be displayed, includes name of crate and price
+ var/list/companies = list(
+ "Cancel Purchase",
+ "Pepelsibirsk 1 (MIL)",
+ "Narodnyygorod (CIV)",
+ )
+ var/list/scamornot = list (
+ "No, we're honest.",
+ "Yes, scam them!",
+ )
+ var/catalogue = list()
+ var/choice = WWinput(user, "Pick a supplier:", "Supplier", "Cancel Purchase", companies)
+ if (choice == "Cancel Purchase")
+ if((round(money) >= 1))
+ new/obj/item/stack/money/rubles(loc, round(money)) //Rubles
+ if (((money) - round(money)) > 0)
+ new/obj/item/stack/money/coppercoin(loc, round(((money) - round(money)), 0.01) * 100) //This should never happen, but just in case
+ money = 0
+ return
+ if (choice == "Narodnyygorod (CIV)")
+ catalogue = civ_catalogue
+ if (pepel_factions.pepelsibirsk_relations["civ_relations"] <= 25 )
+ to_chat(user, "Your relations with this faction are too low!")
+ return
+ else if (choice == "Pepelsibirsk 1 (MIL)")
+ catalogue = mil_catalogue
+ if (pepel_factions.pepelsibirsk_relations["mil_relations"] <= 25 )
+ to_chat(user, "Your relations with this faction are too low!")
+ return
+ for (var/list/i in catalogue)
+ display += "[i[1]], [i[3]] rubles"
+ display += "Cancel Purchase"
+ var/choice2 = WWinput(user, "Current Rubles: [money]", "Order a crate", "Cancel Purchase", display)
+ var/scam = WWinput(user, "Current Rubles: [money]", "Shall we scam them?", "No, we're honest.", scamornot)
+ if (choice2 != "Cancel Purchase")
+ var/list/choicename = splittext(choice2, ", ")
+ for(var/list/i2 in catalogue)
+ if (i2[1]== choicename[1])
+ final_list = i2
+ world.log << "A purchase has been made: [final_list[1]], [final_list[2]], [final_list[3]]"
+ final_cost = (final_list[3])
+ if (final_list[3] <= money || scam == "Yes, scam them!" ) // you can afford the item or you're scamming
+ if (scam == "No, we're honest.")
+ money -= final_cost
+ update_cost(final_list, final_cost, choice, user, scam)
+ if((round(money) >= 1))
+ new/obj/item/stack/money/rubles(loc, round(money))
+ if (((money) - round(money)) > 0)
+ new/obj/item/stack/money/coppercoin(loc, round(((money) - round(money)), 0.01) * 100) //This should never happen, but just in case
+ money = 0
+ else // you're broke
+ if((round(money) >= 1))
+ new/obj/item/stack/money/rubles(loc, round(money))
+ if (((money) - round(money)) > 0)
+ new/obj/item/stack/money/coppercoin(loc, round(((money) - round(money)), 0.01) * 100) //This should never happen, but just in case
+ money = 0
+ to_chat(user, "You don't have enough money for this item.")
+ break
+ else
+ if((round(money) >= 1)) //giving money back
+ new/obj/item/stack/money/rubles(loc, round(money))
+ if (((money) - round(money)) > 0)
+ new/obj/item/stack/money/coppercoin(loc, round(((money) - round(money)), 0.01) * 100) //This should never happen, but just in case
+ money = 0
+ return
+
+/obj/structure/pepelsibirsk_radio/supply_radio/attackby(var/obj/item/stack/W as obj, var/mob/living/human/user as mob)
+ if (W.amount && istype(W, /obj/item/stack/money/rubles))
+ money += W.value*W.amount
+ qdel(W)
+ return
+ else
+ to_chat(user, "You need to use rubles.")
+ return
+
+
+/obj/structure/pepelsibirsk_radio/export_radio
+ name = "long range export radio"
+ desc = "Use this to export resources."
+ icon = 'icons/obj/structures.dmi'
+ icon_state = "export_radio"
+ var/money = 0
+ var/marketval = 0
+ var/moneyin = 0
+ density = TRUE
+ anchored = TRUE
+ var/export_tax_rate = 0
+ var/faction = "civilian"
+ var/faction_treasury = "TreasuryRN"
+ not_movable = TRUE
+ not_disassemblable = TRUE
+
+/obj/structure/pepelsibirsk_radio/export_radio/attackby(var/obj/item/W as obj, var/mob/living/human/user as mob)
+ if (W.value == 0)
+ to_chat(user, "There is no demand for this item.")
+ return
+ else
+ if (pepel_factions.pepelsibirsk_relations["civ_relations"] >= 25)
+ if (istype(W))
+ marketval = W.value + rand(-round(W.value/10),round(W.value/10))
+ moneyin = marketval*W.amount-((marketval*W.amount)*(export_tax_rate/100))
+ var/exportChoice = WWinput(user, "Sell the whole stack for [moneyin] rubles?", "Exporting", "Yes", list("Yes", "No"))
+ if (exportChoice == "Yes")
+ if (W && marketval > 0)
+ new/obj/item/stack/money/rubles(loc, round(moneyin)) // Rubles
+ qdel(W)
+ marketval = 0
+ return
+ else
+ marketval = 0
+ return
+ else
+ to_chat(user, "Your relations with Narodnyygorod are too low!")
+ return
+
+
+////// ENEMY AIR BOMBING //////
+
+/obj/map_metadata/pepelsibirsk/proc/bombing(var/turf/T, direction, aircraft_name)
+ var/strikenum = rand(1, 10)
+ var/xoffset = 0
+ var/yoffset = 0
+ var/direction_xoffset = 0
+ var/direction_yoffset = 0
+
+ to_chat(world, SPAN_DANGER("And drops a barrage of bombs!"))
+
+ spawn(15)
+ for (var/i = 1, i <= strikenum, i++)
+ switch (direction)
+ if (1)
+ direction_yoffset += 3
+ xoffset = rand(-2,2)
+ yoffset = rand(0,1)
+ if (2)
+ direction_xoffset += 3
+ xoffset = rand(0,1)
+ yoffset = rand(-2,2)
+ if (3)
+ direction_yoffset -= 3
+ xoffset = rand(-2,2)
+ yoffset = rand(0,1)
+ if (4)
+ direction_xoffset -= 3
+ xoffset = rand(0,1)
+ yoffset = rand(-2,2)
+ spawn(i*8)
+ explosion(locate((T.x + xoffset + direction_xoffset),(T.y + yoffset + direction_yoffset),T.z),0,1,5,3,sound='sound/weapons/Explosives/FragGrenade.ogg')
+
+/obj/map_metadata/pepelsibirsk/proc/try_shoot_down_aircraft(var/turf/T, direction, aircraft_name)
+ spawn(8 SECONDS)
+ var/sound/sam_sound = sound('sound/effects/aircraft/sa6_sam_site.ogg', repeat = FALSE, wait = FALSE, channel = 777)
+ sam_sound.priority = 250
+ for (var/mob/M in player_list)
+ if (!new_player_mob_list.Find(M))
+ to_chat(M, SPAN_DANGER("A SAM site fires at the [aircraft_name]!"))
+ M.client << sam_sound
+ spawn(5 SECONDS)
+ if (prob(95)) // Shoot down the jet
+ var/sound/uploaded_sound = sound((pick('sound/effects/aircraft/effects/metal1.ogg','sound/effects/aircraft/effects/metal2.ogg')), repeat = FALSE, wait = FALSE, channel = 777)
+ uploaded_sound.priority = 250
+ for (var/mob/M in player_list)
+ if (!new_player_mob_list.Find(M))
+ to_chat(M, SPAN_DANGER("The SAM directly hits the [aircraft_name], shooting it down!"))
+ if (M.client)
+ M.client << uploaded_sound
+ log_game("Aircraft [aircraft_name] has been shot down.")
+ return
+ else // Evade the Anti-Air
+ var/sound/uploaded_sound = sound((pick('sound/effects/aircraft/effects/missile1.ogg','sound/effects/aircraft/effects/missile2.ogg')), repeat = FALSE, wait = FALSE, channel = 777)
+ uploaded_sound.priority = 250
+ for (var/mob/M in player_list)
+ if (!new_player_mob_list.Find(M))
+ to_chat(M, SPAN_NOTICE("The SAM misses the [aircraft_name]!"))
+ if (M.client)
+ M.client << uploaded_sound
+ bombing(T, direction, aircraft_name)
+
+/obj/map_metadata/pepelsibirsk/proc/try_bombing(var/turf/T, direction, faction)
+ var/aircraft_name
+ switch(faction)
+ if ("CHINA")
+ new /obj/effect/plane_flyby/f16_no_message(T)
+ aircraft_name = "Xi'an H-6"
+ if ("SOVIET")
+ new /obj/effect/plane_flyby/su25_no_message(T)
+ aircraft_name = "MiG-27"
+ to_chat(world, SPAN_DANGER("The clouds open up as a [aircraft_name] cuts through."))
+
+ var/anti_air_in_range = FALSE
+ for (var/obj/structure/milsim/anti_air/AA in range(60, T))
+ anti_air_in_range++
+ if (anti_air_in_range)
+ try_shoot_down_aircraft(T, direction, aircraft_name)
+ else
+ bombing(T, direction, aircraft_name)
+ return
+
+/obj/map_metadata/pepelsibirsk/proc/bombing_location(faction)
+ var/direction = rand(1, 4)
+ var/turf/T = locate(rand(1, 255),rand(1, 255),2)
+ try_bombing(T, direction, faction)
+
+/obj/map_metadata/pepelsibirsk/proc/enemy_attacks()
+ var/faction
+ var/next_bombing_1 = rand(30 SECONDS, 30 MINUTES)
+ var/next_bombing_2 = rand(30 SECONDS, 5 MINUTES)
+ message_admins("The initial stage of the enemy_attacks() proc will be triggered in [next_bombing_1] deciseconds. The second stage will be triggered [next_bombing_2] deciseconds after that.")
+ world.log << "The initial stage of the enemy_attacks() proc will be triggered in [next_bombing_1] deciseconds. The second stage will be triggered [next_bombing_2] deciseconds after that."
+ spawn(next_bombing_1)
+ if (pepel_factions.pepelsibirsk_relations["china_relations"] <= 25)
+ faction = "CHINA"
+ bombing_location(faction)
+ pepel_factions.pepelsibirsk_relations["china_relations"] += 0.5
+ spawn(next_bombing_2)
+ if (pepel_factions.pepelsibirsk_relations["soviet_relations"] <= 25)
+ faction = "SOVIET"
+ bombing_location(faction)
+ pepel_factions.pepelsibirsk_relations["soviet_relations"] += 0.5
+ enemy_attacks()
+
+/obj/structure/anti_air_crate
+ name = "anti-air crate"
+ desc = "A supply crate used to make SAM sites."
+ icon = 'icons/obj/junk.dmi'
+ icon_state = "supply_crate"
+ anchored = FALSE
+ flammable = FALSE
+ w_class = ITEM_SIZE_LARGE
+ opacity = FALSE
+ density = TRUE
+ var/health = 250
+
+/obj/structure/anti_air_crate/New()
+ ..()
+ overlays += image(icon = 'icons/obj/junk.dmi', icon_state = "o-ru")
+
+/obj/structure/anti_air_crate/proc/try_destroy()
+ if (health <= 0)
+ visible_message(SPAN_DANGER("\The [src] took too much damage and explodes!"))
+ explosion(get_turf(src),0,1,1,1)
+ qdel(src)
+ return
+
+/obj/structure/anti_air_crate/ex_act(severity)
+ switch(severity)
+ if (1.0)
+ health -= 600
+ if (2.0)
+ health -= 200
+ if (3.0)
+ health -= 100
+ try_destroy()
+
+/obj/structure/anti_air_crate/bullet_act(var/obj/item/projectile/proj)
+ health -= proj.damage/3
+ visible_message(SPAN_NOTICE("\The [src] is hit by the [proj.name]!"))
+ try_destroy()
+
+/obj/structure/anti_air_crate/attack_hand(mob/living/human/H as mob)
+ var/AA_in_range = 0
+ for (var/obj/structure/milsim/anti_air/AA in range(10, src)) // Check if there are friendly Anti-Air within 10 tiles, if so block the build
+ AA_in_range++
+ if (AA_in_range)
+ to_chat(H, SPAN_WARNING("You cannot build Anti-Air so close to another, consider moving away."))
+ return
+ else
+ to_chat(H, SPAN_NOTICE("You starting building an Anti-Air with \the [src]."))
+ if (do_after(H, 30 SECONDS, src))
+ to_chat(H, SPAN("good", "You build an Anti-Air with \the [src]."))
+ var/obj/structure/milsim/anti_air/AA = new/obj/structure/milsim/anti_air(get_turf(src))
+ AA.attack_hand(H)
+ qdel(src)
+ return
+ return
diff --git a/code/game/objects/structures/vending/vending_sales.dm b/code/game/objects/structures/vending/vending_sales.dm
index 4fe7430475..1f7b5beaa9 100644
--- a/code/game/objects/structures/vending/vending_sales.dm
+++ b/code/game/objects/structures/vending/vending_sales.dm
@@ -24,8 +24,15 @@
/obj/structure/vending/sales/attackby(obj/item/W as obj, mob/user as mob)
if (istype(W, /obj/item/stack/money))
var/obj/item/stack/money/M = W
- moneyin += M.amount*M.value
- if (map.ID == MAP_KANDAHAR)
+ if (istype(src, /obj/structure/vending/sales/pepelsibirsk))
+ if (istype(W, /obj/item/stack/money/rubles))
+ moneyin += M.amount*M.value
+ else
+ to_chat(user, "Foreign traders only accept the Soviet ruble.")
+ return
+ else
+ moneyin += M.amount*M.value
+ if (map.ID == MAP_KANDAHAR || istype(src, /obj/structure/vending/sales/pepelsibirsk))
user << "You give \the [W] to the [src]."
else
user << "You put \the [W] in the [src]."
@@ -212,7 +219,7 @@
if (!ui)
if (map.ID == MAP_THE_ART_OF_THE_DEAL)
ui = new(user, src, ui_key, "vending_machine_taotd.tmpl", name, 440, 600)
- else if (map.ID == MAP_GULAG13)
+ else if (map.ID == MAP_GULAG13 || istype(src, /obj/structure/vending/sales/pepelsibirsk))
ui = new(user, src, ui_key, "vending_machine_gulag.tmpl", name, 440, 600)
else if (map.ID == MAP_KANDAHAR)
ui = new(user, src, ui_key, "vending_machine_taotd.tmpl", name, 440, 600)
@@ -264,6 +271,11 @@
status_message = "Please insert money to pay for the item."
status_error = FALSE
else
+ if (istype(src, /obj/structure/vending/sales/pepelsibirsk))
+ var/obj/structure/vending/sales/pepelsibirsk/faction_trader = src
+ if (istype(faction_trader))
+ pepel_factions.pepelsibirsk_relations[faction_trader.faction_relations] += price_with_tax*inp*0.02
+ to_chat(usr, "Relations have increased by [price_with_tax*inp*0.02].")
moneyin -= price_with_tax*inp
if (owner != "Global")
map.custom_company_value[owner] += price_with_tax*inp
@@ -279,6 +291,11 @@
D.amount = moneyin/D.value
if (D.amount == 0)
qdel(D)
+ else if (map.ID == MAP_PEPELSIBIRSK)
+ var/obj/item/stack/money/rubles/D = new/obj/item/stack/money/rubles(loc)
+ D.amount = moneyin/D.value
+ if (D.amount == 0)
+ qdel(D)
else if (map.ID == MAP_KANDAHAR)
var/obj/item/stack/money/dollar/D = new/obj/item/stack/money/dollar(loc)
D.amount = moneyin/D.value
@@ -313,7 +330,7 @@
D.amount = moneyin/D.value
if (D.amount == 0)
qdel(D)
- else if (map.ID == MAP_GULAG13)
+ else if (map.ID == MAP_GULAG13 || MAP_PEPELSIBIRSK)
var/obj/item/stack/money/rubles/D = new/obj/item/stack/money/rubles(loc)
D.amount = moneyin/D.value
if (D.amount == 0)
@@ -644,4 +661,4 @@
if (!active)
return
- return
\ No newline at end of file
+ return
diff --git a/code/modules/1713/crates.dm b/code/modules/1713/crates.dm
index 60282cbab4..3116aae80b 100644
--- a/code/modules/1713/crates.dm
+++ b/code/modules/1713/crates.dm
@@ -1054,4 +1054,124 @@ obj/structure/closet/crate/airdrops/weapons
icon_opened = "wood_crate_opened"
icon_closed = "wood_crate"
paths = list(/obj/item/ammo_casing/bolt/iron = 20)
+
+/obj/structure/closet/crate/pepelsibirsk/surplus_ww2
+ name = "red army surplus uniforms crate"
+ icon_state = "wood_crate"
+ icon_opened = "wood_crate_opened"
+ icon_closed = "wood_crate"
+ paths = list(/obj/item/clothing/under/ww2/soviet = 5,
+ /obj/item/clothing/shoes/heavyboots/wrappedboots = 5,
+ /obj/item/clothing/suit/storage/coat/ww2/sovcoat = 5,
+ /obj/item/clothing/head/helmet/ww2/soviet = 5)
+
+/obj/structure/closet/crate/pepelsibirsk/sov_uniforms
+ name = "afghanka uniforms crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/clothing/under/afghanka = 5,
+ /obj/item/clothing/shoes/jackboots/soviet = 5,
+ /obj/item/clothing/suit/storage/jacket/afghanka = 5,
+ /obj/item/clothing/head/helmet/modern/ssh_68 = 5)
+
+/obj/structure/closet/crate/pepelsibirsk/sks
+ name = "sks crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/gun/projectile/semiautomatic/sks = 5,
+ /obj/item/ammo_magazine/sks = 20)
+
+/obj/structure/closet/crate/pepelsibirsk/akm
+ name = "akm crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/gun/projectile/submachinegun/ak47 = 5,
+ /obj/item/ammo_magazine/ak47 = 10)
+
+/obj/structure/closet/crate/pepelsibirsk/ak74
+ name = "ak-74 crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/gun/projectile/submachinegun/ak74 = 5,
+ /obj/item/ammo_magazine/ak74 = 10)
+
+/obj/structure/closet/crate/pepelsibirsk/svd
+ name = "svd crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/gun/projectile/semiautomatic/svd = 2,
+ /obj/item/ammo_magazine/svd = 8)
+
+/obj/structure/closet/crate/pepelsibirsk/mosin
+ name = "mosin-nagant crate"
+ icon_state = "wood_crate"
+ icon_opened = "wood_crate_opened"
+ icon_closed = "wood_crate"
+ paths = list(/obj/item/weapon/gun/projectile/boltaction/mosin/m30 = 10,
+ /obj/item/ammo_magazine/mosin = 40,
+ /obj/item/ammo_magazine/mosinbox = 10)
+
+/obj/structure/closet/crate/pepelsibirsk/ppsh
+ name = "ak-74 crate"
+ icon_state = "wood_crate"
+ icon_opened = "wood_crate_opened"
+ icon_closed = "wood_crate"
+ paths = list(/obj/item/weapon/gun/projectile/submachinegun/ppsh = 2,
+ /obj/item/ammo_magazine/c762x25_ppsh = 8)
+
+/obj/structure/closet/crate/pepelsibirsk/makarov
+ name = "makarov crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/gun/projectile/pistol/makarov = 5,
+ /obj/item/ammo_magazine/makarov = 15)
+
+/obj/structure/closet/crate/pepelsibirsk/ninex18mm
+ name = "9x18mm crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/ammo_magazine/makarov/box = 4)
+
+/obj/structure/closet/crate/pepelsibirsk/seven62x39mm
+ name = "7.62x39mm crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/ammo_magazine/ak47 = 10)
+
+/obj/structure/closet/crate/pepelsibirsk/seven62x54mmr
+ name = "7.62x54mmR crate"
+ icon_state = "wood_crate"
+ icon_opened = "wood_crate_opened"
+ icon_closed = "wood_crate"
+ paths = list(/obj/item/ammo_magazine/mosinbox = 4)
+
+/obj/structure/closet/crate/pepelsibirsk/rgd5
+ name = "frag grenade crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/weapon/grenade/coldwar/rgd5 = 12)
+
+/obj/structure/closet/crate/pepelsibirsk/sixb1
+ name = "6B1 vest crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/clothing/accessory/armor/coldwar/flakjacket/b1 = 5)
+
+/obj/structure/closet/crate/pepelsibirsk/sixb2
+ name = "6B2 vest crate"
+ icon_state = "mil_crate_closed"
+ icon_opened = "mil_crate_opened"
+ icon_closed = "mil_crate_closed"
+ paths = list(/obj/item/clothing/accessory/armor/coldwar/plates/b2 = 5)
+
#undef DYNAMIC_AMT
diff --git a/code/modules/1713/jobs/nomads.dm b/code/modules/1713/jobs/nomads.dm
index 243a8767e7..507d9b4e0f 100644
--- a/code/modules/1713/jobs/nomads.dm
+++ b/code/modules/1713/jobs/nomads.dm
@@ -7,6 +7,7 @@
add_note("Chad Mode", "Starting epoch is the Stone Age, research is done by sacrificing players Sacrificing someone from your own faction will reduce the research level!. Reduced starting items and more hostile conditions.")
equip_to_slot_or_del(new /obj/item/clothing/under/leaves_skirt(src), slot_w_uniform)
return
+
if (map.ID == MAP_NOMADS_MOUNTAIN)
if (map.ordinal_age == 0)
equip_to_slot_or_del(new /obj/item/weapon/material/kitchen/utensil/knife/bone(src), slot_l_store)
@@ -324,7 +325,6 @@
equip_to_slot_or_del(new /obj/item/clothing/under/civf1(src), slot_w_uniform)
equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(src), slot_shoes)
equip_to_slot_or_del(new /obj/item/stack/money/coppercoin/twohundred(src), slot_r_store)
-
if (8)
if (map.ID == MAP_NOMADS_PERSISTENCE_BETA)
equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(src), slot_shoes)
@@ -343,8 +343,8 @@
equip_to_slot_or_del(new /obj/item/clothing/under/civf1(src), slot_w_uniform)
equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(src), slot_shoes)
equip_to_slot_or_del(new /obj/item/stack/money/coppercoin/twohundred(src), slot_r_store)
-
-
+ if (map.ID == MAP_PEPELSIBIRSK)
+ equip_to_slot_or_del(new /obj/item/weapon/personal_documents(src), slot_wear_id)
//coats/////////////////////////////////////////////////
spawn(5)
var/area/mob_area = get_area(src)
@@ -931,6 +931,43 @@
real_name = name
add_note("Known Languages", "Mongolian")
return
+//////////////////////////////////////////////////////
+////////////////////////Pepelsibirsk//////////////////
+//////////////////////////////////////////////////////
+ else if (map.ID == MAP_PEPELSIBIRSK)
+ spawn(5)
+ switch(nationality)
+ if ("Polish")
+ add_language("Polish",TRUE)
+ add_language("Russian",TRUE)
+ remove_language("English")
+ name = species.get_random_polish_name(gender)
+ real_name = name
+ add_note("Known Languages", "Polish", "Russian")
+ return
+ if ("Russian")
+ add_language("Russian",TRUE)
+ remove_language("English")
+ name = species.get_random_russian_name(gender)
+ real_name = name
+ add_note("Known Languages", "Polish")
+ return
+ if ("German")
+ add_language("German",TRUE)
+ add_language("Russian",TRUE)
+ remove_language("English")
+ name = species.get_random_german_name(gender)
+ real_name = name
+ add_note("Known Languages", "German", "Russian")
+ return
+ if ("Ukrainian")
+ add_language("Ukrainian",TRUE)
+ add_language("Russian",TRUE)
+ remove_language("English")
+ name = species.get_random_ukrainian_name(gender)
+ real_name = name
+ add_note("Known Languages", "Ukrainian", "Russian")
+ return
/////////////////////////CIVS////////////////////////
/datum/job/civilian/civa
diff --git a/icons/mob/npcs.dmi b/icons/mob/npcs.dmi
index 9ce0455f56..ccbc26a557 100644
Binary files a/icons/mob/npcs.dmi and b/icons/mob/npcs.dmi differ
diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi
index c8f8eea88e..1be630af36 100644
Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ
diff --git a/maps/1969/pepelsibirsk.dmm b/maps/1969/pepelsibirsk.dmm
new file mode 100644
index 0000000000..ed787b8142
--- /dev/null
+++ b/maps/1969/pepelsibirsk.dmm
@@ -0,0 +1,141208 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ name = "sink";
+ pixel_x = 10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"ab" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/piping/pipe{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ac" = (
+/obj/structure/shower{
+ icon_state = "shower";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ad" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ae" = (
+/obj/covers/wood,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"af" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/storage/bible/orthodox,
+/obj/covers/carpet/purplecarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ag" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 5
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ah" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"ai" = (
+/obj/structure/curtain/medical,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"aj" = (
+/obj/item/stack/ore/iron,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"ak" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central2,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"al" = (
+/obj/structure/printingpress,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"am" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"an" = (
+/obj/structure/table/modern,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ao" = (
+/obj/roof/clay,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"ap" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"aq" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"ar" = (
+/obj/structure/printingpress,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"as" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel/twentyfive,
+/obj/item/stack/material/steel/twentyfive,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"at" = (
+/obj/structure/roof_support,
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"av" = (
+/obj/structure/multiz/ladder/ww2/up/manhole/chech,
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"aw" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ax" = (
+/obj/covers/brick_wall,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ay" = (
+/obj/structure/closet/crate/rations/seeds/trees,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"az" = (
+/obj/structure/closet/crate,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"aA" = (
+/obj/structure/barricade/steel,
+/obj/structure/sign/securearea{
+ desc = "No crossing of the stripped line without authorization.";
+ layer = 6.2;
+ name = "Restricted Area - Do not cross"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"aB" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"aC" = (
+/obj/structure/table/wood,
+/obj/structure/closet/crate/cash_register,
+/obj/covers/carpet/redcarpet,
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/item/stack/money/rubles{
+ amount = 40
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"aD" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/covers/cobblestone,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aE" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"aG" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/pencil,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aH" = (
+/obj/covers/jail/steeljail,
+/obj/structure/railing/steel,
+/obj/structure/window/classic/metal,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"aI" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 10
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"aJ" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"aK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/curtain/open/shower,
+/obj/structure/shower,
+/obj/roof,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"aL" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"aO" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"aP" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"aQ" = (
+/obj/structure/table/modern/retable,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"aR" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 8;
+ icon_state = "chainlinkfence"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"aS" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aT" = (
+/obj/structure/optable{
+ color = "#a7d1cc";
+ density = 0
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"aU" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/medical,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"aV" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aW" = (
+/obj/covers/wood,
+/obj/structure/sign/portrait/lenin{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aX" = (
+/obj/covers/wood/alt,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"aY" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail/police,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"aZ" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ name = "financial services telephone"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ba" = (
+/obj/structure/simple_door/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bb" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/religious/woodcross2,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"bc" = (
+/obj/structure/table/modern/table,
+/obj/structure/closet/crate/cash_register/germ{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bd" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"be" = (
+/obj/covers/steelplating,
+/obj/structure/multiz/ladder/ww2,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bf" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"bh" = (
+/obj/structure/rails/turn/right{
+ dir = 8;
+ icon_state = "rails_turn_right"
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"bi" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"bj" = (
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"bk" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bm" = (
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/structure/bed/wood,
+/obj/structure/radio/receiver,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bn" = (
+/obj/structure/simple_door/key_door/anyone/singledoor/housedoor,
+/obj/structure/barricade,
+/obj/covers/brick_wall/incomplete,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bo" = (
+/obj/roof,
+/obj/structure/voyage/quartermaster_book{
+ pixel_y = 8;
+ name = "warehouse inventory"
+ },
+/obj/structure/table/wood,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"bp" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"bq" = (
+/obj/covers/stonebrickfloor,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"br" = (
+/obj/structure/bed/chair/office/light,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bs" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bt" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/mine_support,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"bu" = (
+/obj/structure/torch_stand{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bv" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"bw" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/obj/item/weapon/telephone/wireless{
+ name = "fire department telephone";
+ phonenumber = 2225
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bx" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/covers/carpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"by" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"bz" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"bA" = (
+/obj/structure/rails,
+/obj/roof/concrete,
+/turf/floor/plating/tiled,
+/area/caribbean/nomads/taiga)
+"bB" = (
+/obj/structure/sign/restroom{
+ pixel_y = -32
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bC" = (
+/obj/roof/concrete,
+/obj/effect/decal/cleanable/cobweb,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bD" = (
+/obj/structure/closet/crate,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"bE" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"bF" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover.";
+ dir = 8
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bG" = (
+/obj/structure/sign/portrait/lenin{
+ pixel_y = 32
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bH" = (
+/obj/structure/sign/traffic/parking,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"bI" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/victorian_prim,
+/obj/item/clothing/under/victorian_prim,
+/obj/item/clothing/under/victorian_prim,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bJ" = (
+/obj/structure/closet/crate/footlocker,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"bK" = (
+/obj/structure/grille/chainlinkfence/corner{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"bL" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"bM" = (
+/obj/structure/simple_door/wood2,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"bN" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/covers/carpet,
+/obj/structure/bed/chair/office/dark,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bO" = (
+/obj/structure/rails/turn,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"bP" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet,
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"bQ" = (
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"bR" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"bS" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"bT" = (
+/obj/structure/table/wood,
+/obj/structure/closet/crate/cash_register,
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"bU" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1;
+ pixel_y = 10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"bV" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/structure/radio/transmitter_receiver,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"bW" = (
+/obj/structure/props/junk,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bX" = (
+/obj/structure/table/rack/shelf,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"bY" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "clay_dm";
+ name = "clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"bZ" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"cb" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"cc" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cf" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 8;
+ pixel_x = 10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"cg" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"ch" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"ci" = (
+/obj/structure/railing,
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cj" = (
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/filingcabinet,
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"ck" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"cl" = (
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cm" = (
+/obj/covers/wood,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cn" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"co" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cp" = (
+/obj/covers/wood/alt,
+/obj/structure/table/wood,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cq" = (
+/obj/covers/catwalk,
+/obj/structure/multiz/ladder/ww2,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cr" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/bookcase,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cs" = (
+/obj/structure/engine/external/steam,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ct" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/office/dark,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cu" = (
+/obj/structure/closet/crate/bin,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"cv" = (
+/obj/covers/cement_wall,
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cw" = (
+/obj/structure/vehicleparts/movement/reversed{
+ dir = 1;
+ icon_state = "wheel_t_dark"
+ },
+/obj/structure/engine/internal/gasoline/premade/falcon,
+/obj/structure/vehicleparts/license_plate/us/centered/front,
+/obj/structure/vehicleparts/frame/car/shinobu/lf{
+ doorcode = 13443
+ },
+/obj/structure/vehicleparts/axis/car/shinobu/police,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"cy" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel,
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"cz" = (
+/obj/structure/bed/chair/steel/alt{
+ dir = 1
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cA" = (
+/obj/item/weapon/telephone/public,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"cB" = (
+/obj/covers/carpet/blackcarpet,
+/obj/structure/table/modern,
+/obj/item/weapon/reagent_containers/food/drinks/teapot/filled,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cC" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cD" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"cE" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"cF" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"cG" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/carpet/greencarpet,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"cH" = (
+/obj/structure/window/classic/metal,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"cI" = (
+/obj/structure/heatsource,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cJ" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"cK" = (
+/obj/structure/medical_divider/full{
+ opacity = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"cL" = (
+/obj/covers/wood,
+/obj/structure/torch_stand,
+/obj/item/flashlight/lantern,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cM" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"cN" = (
+/obj/structure/printingpress,
+/obj/structure/lamp/lamp_small,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"cO" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"cP" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"cQ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"cR" = (
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"cS" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"cT" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/leather{
+ amount = 50
+ },
+/obj/item/stack/material/leather{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"cU" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"cV" = (
+/obj/structure/table/wood,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 10
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"cW" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"cX" = (
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"cZ" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"da" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"db" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"dc" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"dd" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"de" = (
+/obj/structure/engine/internal/diesel{
+ anchored = 1
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"df" = (
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dg" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dh" = (
+/obj/structure/pot,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"di" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dj" = (
+/obj/structure/heatsource,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dk" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ name = "car factory manager's telephone";
+ phonenumber = 3331
+ },
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"dl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"dm" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dn" = (
+/obj/structure/window/classic,
+/obj/structure/curtain/leather,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"do" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dp" = (
+/obj/structure/engine/internal/diesel/premade/omw22_2{
+ name = "V12 diesel engine"
+ },
+/obj/structure/vehicleparts/movement/tracks/left/reversed,
+/obj/structure/vehicleparts/frame/t72/rb,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"dq" = (
+/obj/structure/window/classic,
+/obj/structure/barricade,
+/obj/covers/wood_ship,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dr" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/diesel,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"ds" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dt" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/mobile/police{
+ pixel_y = 6
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"du" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover.";
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dv" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/sofa/left,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dw" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof/wood,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"dx" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dy" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/piping/pipe{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dz" = (
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"dA" = (
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"dB" = (
+/obj/structure/centrifuge,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dC" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dD" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"dE" = (
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dF" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/modern1,
+/obj/item/clothing/under/modern1,
+/obj/item/clothing/under/modern1,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dG" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"dH" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"dI" = (
+/obj/structure/table/modern,
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dK" = (
+/obj/structure/bed/chair/sofa/left,
+/obj/structure/sign/restroom{
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"dL" = (
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/religious/remains,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"dM" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/engineprops/steam,
+/obj/effect/floor_decal/spline/plain,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dN" = (
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"dO" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dP" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dQ" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"dR" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dS" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/structure/roof_support,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"dT" = (
+/obj/covers/wood,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dU" = (
+/obj/covers/wood,
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dV" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"dW" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"dX" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail/guard,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"dY" = (
+/obj/structure/bed/chair/office/light,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"dZ" = (
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"ea" = (
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eb" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/civ/police,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"ec" = (
+/obj/covers/wood,
+/obj/structure/multiz/ladder/ww2,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ee" = (
+/obj/structure/props/junk{
+ icon_state = "Junk_10"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"eg" = (
+/obj/structure/pot,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"eh" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ei" = (
+/obj/covers/wood,
+/obj/structure/potted_plant{
+ dir = 9;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ej" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 8;
+ pixel_x = 10
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ek" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"el" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"em" = (
+/obj/structure/bed/chair/carseat/left/dark,
+/obj/structure/vehicleparts/frame/car/shinobu/lbc{
+ color = "#d3d3d3";
+ doorcode = 13443;
+ override_color = "#FFFFFF"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"en" = (
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"eq" = (
+/obj/item/stack/ore/silver,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"er" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central2,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"es" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eu" = (
+/obj/item/weapon/key/civ/mechanic{
+ name = "Car Factory key"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ev" = (
+/obj/structure/wild/smallbush/winter,
+/turf/floor/winter/grass,
+/area/caribbean)
+"ew" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ex" = (
+/obj/structure/closet/crate/cart/steel,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"ey" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ez" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"eA" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"eB" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"eC" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/comfy/red,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"eD" = (
+/obj/structure/simple_door/key_door/civ/paramedics{
+ name = "Morgue";
+ unique_door_name = "Morgue"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"eE" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eF" = (
+/obj/structure/potted_plant{
+ dir = 9;
+ icon_state = "potted_plant"
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eG" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover.";
+ dir = 8
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"eH" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"eI" = (
+/obj/structure/table/modern,
+/obj/structure/cutting_board,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"eJ" = (
+/obj/structure/roof_support,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eK" = (
+/obj/covers/cement_wall,
+/turf/floor/dirt/underground,
+/area/caribbean/void/caves)
+"eL" = (
+/obj/structure/props/computerprops/modern/a9,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"eM" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eN" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/civfg,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/under/civf2,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"eO" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"eP" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"eQ" = (
+/obj/structure/oven/stove/old,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"eR" = (
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"eS" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"eU" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4;
+ pixel_x = -10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"eV" = (
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"eW" = (
+/obj/structure/table/wood,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"eX" = (
+/obj/structure/shopping_cart,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"eY" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"eZ" = (
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ pixel_x = -12
+ },
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fa" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fb" = (
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"fc" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4;
+ pixel_x = -10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"fd" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"fe" = (
+/obj/item/stack/material/bone,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ff" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/telephone/mobile/police,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fg" = (
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/spline/plain,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"fh" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"fi" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/clay/clayvase,
+/obj/item/weapon/reagent_containers/food/drinks/clay/clayvase,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fj" = (
+/obj/structure/table/modern,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"fk" = (
+/obj/structure/table/fancy,
+/obj/item/weapon/storage/bible/orthodox,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"fl" = (
+/obj/structure/barricade/steel,
+/obj/structure/window_frame/metal,
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"fm" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"fn" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fo" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fq" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"fr" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"fs" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fu" = (
+/obj/effect/decal/cleanable/graffiti{
+ color = "#000000";
+ icon_state = "graffiti2";
+ layer = 7;
+ pixel_x = -32
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"fv" = (
+/obj/structure/table/wood,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/closet/crate/cash_register/germ,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"fw" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fx" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"fA" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/ww2/civ1,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"fB" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"fC" = (
+/obj/structure/lamp/lamp_small,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"fE" = (
+/obj/item/stack/ore/lead,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"fF" = (
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/structure/table/modern/table,
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ name = "police telephone";
+ phonenumber = 2224
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fG" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"fH" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "cement_dm";
+ name = "concrete roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fI" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fJ" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"fL" = (
+/obj/covers/wood,
+/obj/structure/sign/portrait/lenin{
+ pixel_y = 28
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fM" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"fQ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"fR" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"fS" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/structure/closet/fridge,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"fT" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"fU" = (
+/obj/structure/grille/ironfence{
+ icon_state = "iron_fence";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"fV" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"fW" = (
+/obj/covers/wood_ship,
+/obj/structure/window/classic/brick,
+/obj/structure/barricade,
+/obj/structure/curtain/open/bed,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"fX" = (
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"fZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ga" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1;
+ icon_state = "officechair_white"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gb" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/ethanol,
+/obj/roof/concrete,
+/obj/structure/roof_support/admin,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"gc" = (
+/obj/structure/rails,
+/obj/structure/trains/storage/miningcart,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gd" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ge" = (
+/obj/covers/cobblestone,
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/covers/jail,
+/obj/structure/barbwire,
+/obj/structure/barbwire,
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire,
+/obj/structure/barbwire,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gf" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"gh" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gi" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/cola,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gj" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/head/flatcap1,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gk" = (
+/obj/covers/wood,
+/obj/structure/oven/stove/old,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gl" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gm" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gn" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"go" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"gp" = (
+/obj/covers/wood,
+/obj/structure/bookcase,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gq" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 8
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gr" = (
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"gs" = (
+/obj/structure/props/computerprops/modern/smes2,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gt" = (
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"gu" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gv" = (
+/obj/structure/simple_door/key_door/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"gw" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gx" = (
+/obj/structure/vehicleparts/movement/tracks/left,
+/obj/structure/vehicleparts/frame/t72/lf,
+/obj/structure/bed/chair/drivers/tank{
+ anchored = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"gy" = (
+/obj/structure/simple_door/key_door/civ/police,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"gz" = (
+/obj/structure/vehicleparts/movement/tracks/right/reversed,
+/obj/item/weapon/reagent_containers/glass/barrel/fueltank/tank/highcap/fueleddiesel,
+/obj/structure/vehicleparts/frame/t72/lb,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"gB" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 1
+ },
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gC" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/clothing/head/ww2/sov_ushanka/down,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gD" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/ww2/civ1,
+/obj/item/clothing/suit/storage/coat/russian_rcw,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"gE" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"gF" = (
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"gG" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"gH" = (
+/obj/structure/railing{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gI" = (
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gJ" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/sign/custom/metallic{
+ name = "People's Court";
+ desc = "The court of the People.";
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"gK" = (
+/obj/structure/rails,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gN" = (
+/obj/covers/wood,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gO" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"gP" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"gR" = (
+/obj/structure/grille/ironfence,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"gS" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/ww2/civ1,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"gT" = (
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gU" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"gV" = (
+/obj/structure/machinery/construction_crane/excavator{
+ dir = 1
+ },
+/obj/structure/wild/rock,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"gW" = (
+/obj/structure/table/modern,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/cutting_board,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"gX" = (
+/obj/structure/railing,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"gY" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/item/weapon/reagent_containers/glass/beaker/vial,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"gZ" = (
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover.";
+ dir = 8
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ha" = (
+/obj/structure/lamp/lamp_big,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hb" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/crayon,
+/obj/item/weapon/pen/pencil,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"hc" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 8
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hd" = (
+/obj/structure/closet/cabinet/first_aid{
+ layer = 5;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/wood,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"he" = (
+/obj/structure/table/modern/table,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hg" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hh" = (
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"hi" = (
+/obj/structure/table/modern,
+/obj/structure/closet/crate/cash_register{
+ dir = 4;
+ icon_state = "cash_register"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hj" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/structure/mine_support,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"hk" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hl" = (
+/obj/covers/wood,
+/obj/roof/clay,
+/obj/structure/roof_support,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hm" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/wood2,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ho" = (
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ pixel_x = -12
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hp" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/grille/ironfence{
+ icon_state = "iron_fence";
+ dir = 8
+ },
+/obj/structure/window_frame/stone,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hq" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"hr" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hs" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 14
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"ht" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"hu" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"hv" = (
+/obj/covers/steelplating,
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 1;
+ icon_state = "sink"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hw" = (
+/obj/item/mirror{
+ pixel_x = -26
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = -14
+ },
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"hx" = (
+/obj/structure/railing/steel,
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"hy" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"hz" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"hA" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/cement_wall{
+ color = "#5472C7"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"hB" = (
+/obj/structure/sign/securearea,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"hC" = (
+/obj/structure/bookcase,
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hD" = (
+/obj/structure/bookcase{
+ icon_state = "book-1"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hE" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"hF" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"hG" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"hH" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hI" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hJ" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/steelplating/white,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hK" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hL" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/closet/crate/cash_register,
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hM" = (
+/obj/covers/wood,
+/obj/structure/sign/flag/sov{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hN" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"hO" = (
+/obj/structure/closet/crate/rations/biscuits,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"hP" = (
+/obj/structure/table/modern,
+/obj/item/stack/medical/bruise_pack/gauze,
+/obj/item/stack/medical/bruise_pack/gauze,
+/obj/item/stack/medical/bruise_pack/gauze,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"hQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hR" = (
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"hS" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/sign/flag/sov{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"hT" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"hU" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/cod,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/cod,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/cod,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/cod,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/cod,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hV" = (
+/obj/structure/props/random/container/five,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"hW" = (
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hX" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"hY" = (
+/obj/structure/bed/chair/steel/alt{
+ dir = 1
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"hZ" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ia" = (
+/obj/structure/oven/stove/old,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ic" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"id" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"if" = (
+/obj/structure/props/car_wreck{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ig" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ih" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ii" = (
+/obj/structure/rails,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ij" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ik" = (
+/turf/floor/plating/road,
+/area/caribbean)
+"il" = (
+/obj/covers/wood,
+/obj/structure/piano,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"im" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/structure/railing/steel,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"in" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"io" = (
+/obj/structure/bed/chair/sofa/left,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"ip" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/item/weapon/reagent_containers/food/snacks/mince,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iq" = (
+/obj/structure/filingcabinet,
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ir" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"is" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/industrial5,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"it" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"iu" = (
+/obj/covers/roads/dirt,
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"iv" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iw" = (
+/obj/structure/table/modern,
+/obj/structure/potted_plant{
+ dir = 9;
+ icon = 'icons/obj/flora/plants.dmi';
+ icon_state = "plant-36";
+ layer = 4;
+ pixel_y = 16
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"ix" = (
+/obj/structure/props/random/container/four,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"iy" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iz" = (
+/obj/structure/sign/traffic/zebracrossing,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"iA" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"iB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iC" = (
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"iD" = (
+/obj/covers/stonebrickfloor,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"iE" = (
+/obj/structure/closet/crate/empty/large,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"iF" = (
+/obj/covers/wood,
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"iG" = (
+/obj/structure/closet/crate/rations/vegetables,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iH" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/greencarpet,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iI" = (
+/obj/item/weapon/material/shovel/steel,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"iJ" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iK" = (
+/obj/structure/closet/crate,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iL" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"iM" = (
+/obj/structure/potted_plant,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"iN" = (
+/obj/structure/table/modern/table,
+/obj/structure/roof_support,
+/obj/structure/railing,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iO" = (
+/obj/structure/window/barrier/snowwall{
+ dir = 8;
+ pixel_x = -8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"iP" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"iQ" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"iR" = (
+/obj/structure/simple_door/key_door/civ/paramedics{
+ name = "Operating Room";
+ unique_door_name = "Operating Room"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"iS" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iT" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/wood/twentyfive,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"iU" = (
+/obj/structure/machinery/water_pump,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iV" = (
+/obj/structure/wild/tree/live_tree/snow,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"iW" = (
+/turf/floor/dirt/dust,
+/area/caribbean)
+"iX" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel,
+/obj/structure/table/modern/retable,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"iY" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/under/ww2/soviet_officer,
+/obj/item/clothing/accessory/medal/soviet/ww2/For_the_defence_of_Stalingrad,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"iZ" = (
+/obj/structure/props/junk{
+ icon_state = "Junk_7"
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ja" = (
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/iv_drip,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"jb" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/shoes/blackboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jc" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"jd" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"je" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"jf" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/window/clean/reinforced/metal,
+/obj/covers/jail/steeljail,
+/obj/structure/barricade/steel,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jg" = (
+/obj/structure/table/modern,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ pixel_x = -12
+ },
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"jh" = (
+/obj/structure/bed/chair/comfy/red,
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"ji" = (
+/obj/structure/wild/tree/dead_tree,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"jj" = (
+/obj/covers/wood,
+/obj/structure/potted_plant,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jl" = (
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"jm" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jo" = (
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"jp" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/wild/smallbush/winter,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"jq" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/covers/carpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jr" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/clay/black,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"js" = (
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/beach/water/ice,
+/area/caribbean/nomads/taiga)
+"ju" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"jv" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jw" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"jx" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jy" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jz" = (
+/obj/structure/window/classic/metal,
+/obj/structure/curtain/open/bed,
+/obj/covers/concretefloor,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jA" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/structure/vehicleparts/frame/t72/left,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"jB" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"jC" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"jD" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"jE" = (
+/obj/structure/simple_door/key_door/anyone,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"jF" = (
+/obj/structure/animalspawner/wolfcave/full,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"jG" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"jH" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jI" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"jJ" = (
+/obj/structure/rails/turn{
+ dir = 8;
+ icon_state = "rails_turn_left"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"jK" = (
+/obj/structure/table/modern/table,
+/obj/structure/meat_grinder,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"jM" = (
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"jN" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/cocktail,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/cocktail,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/cocktail,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jO" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"jP" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"jQ" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jR" = (
+/obj/structure/bookcase{
+ icon_state = "book-4"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"jS" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jT" = (
+/obj/structure/wild/smallbush/winter,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"jU" = (
+/obj/effect/decal/cleanable/generic,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"jV" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"jW" = (
+/obj/covers/steelplating,
+/obj/structure/barricade/steel,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"jX" = (
+/obj/structure/rails/turn/right{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"jY" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"jZ" = (
+/obj/structure/bed/chair/wood/alt{
+ dir = 4
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ka" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kb" = (
+/obj/structure/iv_drip,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"kc" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"kd" = (
+/obj/structure/lamp/lamp_small,
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ke" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kf" = (
+/obj/structure/cremator,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"kg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich,
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"kh" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ki" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/steel/alt{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kj" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kk" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/item/clothing/head/ww2/sov_pilotka,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kl" = (
+/obj/structure/barricade/steel,
+/obj/structure/window_frame/metal,
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"km" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/glasses/pilot,
+/obj/item/clothing/glasses/pilot,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kn" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/christian_priest,
+/obj/item/clothing/suit/storage/coat/priest,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/matchbox,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"ko" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kp" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kq" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"kr" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"kt" = (
+/obj/effect/floor_decal/industrial/danger,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ku" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 6
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kv" = (
+/obj/structure/closet/anchored{
+ name = "locker"
+ },
+/obj/structure/railing/steel{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kw" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kx" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/structure/table/rack/coatrack,
+/obj/covers/carpet/redcarpet,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ky" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kz" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/farmer_outfit,
+/obj/item/clothing/under/farmer_outfit,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/mask/shemagh/redkerchief,
+/obj/item/clothing/mask/shemagh/redkerchief,
+/obj/item/weapon/plough/iron,
+/obj/item/weapon/plough/iron,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/storage/backpack/satchel,
+/obj/item/weapon/storage/backpack/satchel,
+/obj/item/weapon/storage/belt/leather,
+/obj/item/weapon/storage/belt/leather,
+/obj/item/clothing/head/ww2/sov_ushanka/down,
+/obj/item/clothing/head/ww2/sov_ushanka/down,
+/obj/item/weapon/material/pitchfork,
+/obj/item/weapon/material/pitchfork,
+/obj/item/weapon/storage/seed_collector,
+/obj/item/weapon/storage/seed_collector,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kA" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kB" = (
+/obj/effect/decal/cleanable/urine,
+/obj/effect/decal/cleanable/vomit/bloody,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/poo/drip,
+/obj/item/remains/human,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kC" = (
+/obj/structure/simple_door/key_door/civ/mechanic{
+ name = "Car Factory door";
+ unique_door_name = "Car Factory Door"
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"kE" = (
+/obj/covers/wood/stairs{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"kF" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/green,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kG" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kH" = (
+/obj/structure/wild/rock,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"kI" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kK" = (
+/obj/structure/filingcabinet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kL" = (
+/obj/structure/printingpress,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"kM" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"kO" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kP" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/table/modern/retable,
+/obj/covers/jail/steeljail{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank"
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kQ" = (
+/obj/structure/gate/barrier{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"kR" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kS" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"kU" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"kV" = (
+/obj/covers/wood,
+/obj/structure/bed/hammock,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"kW" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/structure/medicalbed,
+/obj/structure/curtain/medical,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"kX" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"kZ" = (
+/obj/structure/grille/chainlinkfence/door,
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"la" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar/prybar,
+/obj/item/weapon/crowbar/prybar,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"lb" = (
+/obj/covers/carpet/purplecarpet,
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ld" = (
+/obj/structure/table/modern/retable,
+/obj/structure/props/computerprops/terminal,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"le" = (
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"lf" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lg" = (
+/obj/structure/bed/chair/office/light,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lh" = (
+/obj/structure/table/modern,
+/obj/structure/curtain/open/privacy,
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ name = "hospital telephone";
+ phonenumber = 2223
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"li" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"lj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central2{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"lk" = (
+/obj/covers/stone_wall/brick/archway,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"ll" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/weapon/storage/bible/orthodox,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"lm" = (
+/obj/structure/lamp/lamp_small/tank/blue/police{
+ brightness_color = "#da0205";
+ dir = 4;
+ name = "ambulance lights"
+ },
+/obj/structure/bed/chair/drivers/car{
+ dir = 1;
+ icon_state = "carseat_driver_left"
+ },
+/obj/structure/vehicleparts/frame/car/van/lfc{
+ doorcode = 12443;
+ override_color = "#7F0000"
+ },
+/obj/structure/emergency_lights/ambulance{
+ dir = 1;
+ icon_state = "modern_intercom"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ln" = (
+/obj/structure/mine_support/stone,
+/obj/covers/stone_wall/brick,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"lo" = (
+/obj/structure/religious/woodcross2,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/decorative_tile,
+/area/caribbean/nomads/taiga)
+"lp" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"lq" = (
+/obj/structure/grille/metalsheetfence,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"lr" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/newspaper,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ls" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"lu" = (
+/obj/structure/table/wood,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"lv" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/head/ww2/sov_pilotka,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/accessory/medal/soviet/ww2/For_the_defence_of_Stalingrad,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"lw" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/civ1,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lx" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ly" = (
+/obj/structure/safe,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"lz" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"lA" = (
+/obj/structure/simple_door/wood2,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"lB" = (
+/obj/structure/sign/flag/sov{
+ pixel_x = -32
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lC" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"lD" = (
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lE" = (
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"lF" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/structure/rails/turn/right{
+ dir = 8;
+ icon_state = "rails_turn_right"
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"lG" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/comfy/fancy_sofa/r{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"lH" = (
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"lI" = (
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"lJ" = (
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"lK" = (
+/obj/structure/largecrate,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"lL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"lM" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lN" = (
+/obj/structure/heatsource,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"lO" = (
+/obj/structure/bed/chair/wood/alt{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"lP" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lQ" = (
+/obj/structure/closet/crate/rations/biscuits,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"lT" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lU" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"lV" = (
+/obj/structure/iv_drip,
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"lW" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"lX" = (
+/obj/structure/vending/sales/drinks/cola{
+ icon_state = "sovietsoda"
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"lY" = (
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"lZ" = (
+/obj/item/weapon/paper_bin,
+/obj/structure/table/modern/table,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ma" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"mb" = (
+/obj/covers/brick_wall,
+/obj/roof/clay,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"mc" = (
+/obj/structure/table/modern,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"md" = (
+/obj/covers/cement_wall{
+ color = "#DC4D4D"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"me" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/table/rack/coatrack,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"mg" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"mi" = (
+/obj/structure/table/modern,
+/obj/item/weapon/newspaper,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mj" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mk" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ml" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/ethanol,
+/obj/roof/concrete,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"mm" = (
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/item/weapon/reagent_containers/food/condiment/saltpile,
+/obj/structure/closet/crate,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"mn" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"mo" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/closet/crate/rations/seeds/cashcrops,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"mp" = (
+/obj/covers/cement_wall,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mq" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ms" = (
+/obj/structure/vehicleparts/movement/tracks/right,
+/obj/structure/vehicleparts/frame/t72/rf,
+/obj/item/weapon/gun/projectile/automatic/stationary/pkm{
+ anchored = 1;
+ pixel_y = 8
+ },
+/obj/item/ammo_magazine/pkm,
+/obj/item/ammo_magazine/pkm,
+/obj/item/ammo_magazine/pkm,
+/obj/structure/bed/chair/gunner{
+ anchored = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"mt" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mu" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"mv" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"mw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"mx" = (
+/obj/structure/table/wood,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"my" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/sign/securearea{
+ desc = "No crossing of the stripped line without authorization.";
+ layer = 6.2;
+ name = "Restricted Area - Do not cross"
+ },
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"mz" = (
+/obj/structure/table/modern,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"mA" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mB" = (
+/obj/structure/bed/chair/wood,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"mC" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mD" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"mE" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"mF" = (
+/obj/structure/table/modern/table,
+/obj/item/clothing/accessory/medal/soviet/ww2/For_the_defence_of_Stalingrad,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mG" = (
+/obj/roof,
+/obj/structure/simple_door/key_door/anyone/doubledoor/wood,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"mH" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"mI" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/sov_ushanka_new/down,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mJ" = (
+/obj/structure/railing/steel,
+/obj/structure/window/classic/brickfull,
+/obj/roof/clay/black,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"mK" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mL" = (
+/obj/structure/table/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/closet/crate/cash_register,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"mM" = (
+/obj/structure/table/modern,
+/obj/item/weapon/key/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"mN" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/wood/alt,
+/obj/structure/closet/cabinet,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mO" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"mP" = (
+/obj/roof/concrete,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mQ" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"mR" = (
+/obj/roof/clay/black,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"mS" = (
+/obj/structure/mirror{
+ pixel_y = 32;
+ layer = 3.4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mT" = (
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"mU" = (
+/obj/structure/window/barrier/railing/brick,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mV" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"mW" = (
+/obj/covers/steelplating,
+/obj/covers/steelplating,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mX" = (
+/obj/structure/closet/fridge,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"mY" = (
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"mZ" = (
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"na" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/radio/transmitter_receiver,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nb" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nc" = (
+/obj/structure/closet/crate/cart/steel,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"nd" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ne" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ng" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/concrete,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"nh" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ni" = (
+/obj/structure/lamp/lamp_small,
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"nj" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"nk" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"nl" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"nm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"nn" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/green,
+/obj/structure/sign/portrait/stalin{
+ pixel_y = 32
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"no" = (
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"np" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"nq" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/item/weapon/lipstick/random,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"nr" = (
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"ns" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"nt" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/siegeladder/metal,
+/obj/item/weapon/siegeladder/metal,
+/obj/item/weapon/siegeladder/metal,
+/obj/item/weapon/siegeladder/metal,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nu" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"nv" = (
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"nw" = (
+/obj/structure/window/classic/brickfull,
+/obj/covers/jail/steeljail,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"nx" = (
+/obj/structure/props/machineprops/refinery,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ny" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nz" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1116;
+ name = "city soviet telephone"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nA" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nC" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"nD" = (
+/obj/structure/simple_door/key_door/civ/hall{
+ name = "City Soviet"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nE" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"nF" = (
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"nG" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nH" = (
+/obj/structure/reagent_dispensers/fountain,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nI" = (
+/obj/structure/printingpress,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nJ" = (
+/obj/structure/railing/steel,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"nK" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nL" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/sterilizine,
+/obj/roof/concrete,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"nM" = (
+/obj/structure/roof_support,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nN" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"nO" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"nP" = (
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"nR" = (
+/obj/structure/window/barrier/concrete,
+/obj/structure/mine_support/stone/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"nS" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"nT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/flour,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nV" = (
+/obj/structure/table/modern/retable,
+/obj/structure/grille/ironfence{
+ desc = "Iron bars.";
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank";
+ name = "iron bars"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"nW" = (
+/obj/structure/bed/chair/sofa/left,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"nX" = (
+/obj/structure/bed/chair/office/light,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"nY" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/pill_pack/tramadol,
+/obj/item/weapon/pill_pack/tramadol,
+/obj/item/weapon/pill_pack/tramadol,
+/obj/item/weapon/handcuffs/strips,
+/obj/item/weapon/handcuffs/strips,
+/obj/item/weapon/handcuffs/strips,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"nZ" = (
+/obj/structure/bed/chair/loader{
+ anchored = 1
+ },
+/obj/structure/bed/chair/gunner{
+ anchored = 1;
+ icon_state = "officechair_white"
+ },
+/obj/structure/vehicleparts/frame/t72,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"oa" = (
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oc" = (
+/obj/structure/potted_plant{
+ dir = 9;
+ icon_state = "potted_plant"
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"od" = (
+/obj/structure/closet/crate/bin,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oe" = (
+/obj/structure/grille/chainlinkfence/corner{
+ dir = 4
+ },
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"of" = (
+/obj/structure/simple_door/wood,
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"og" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small,
+/obj/item/weapon/telephone,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oh" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"oi" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"oj" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ok" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ol" = (
+/obj/covers/cement_wall/vertical,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"on" = (
+/obj/structure/filingcabinet,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"oo" = (
+/obj/covers/cement_wall,
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"op" = (
+/obj/structure/bed/roller,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"oq" = (
+/obj/covers/steelplating,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"or" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/window/clean/reinforced/metal,
+/obj/covers/jail/steeljail,
+/obj/structure/barricade/steel,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"os" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ name = "sink";
+ pixel_x = -10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"ot" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ou" = (
+/obj/structure/table/rack/shelf,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ov" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ow" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ox" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oy" = (
+/obj/structure/simple_door/key_door/civ/inn,
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"oz" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"oA" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"oB" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1111;
+ name = "local leadership telephone"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oC" = (
+/obj/covers/steelplating,
+/obj/structure/table/modern,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oD" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"oE" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"oF" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/cement_wall{
+ color = "#DC4D4D"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"oG" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/iron/twentyfive,
+/obj/item/stack/material/iron/twentyfive,
+/obj/item/stack/material/iron/twentyfive,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"oH" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oI" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oJ" = (
+/obj/structure/barricade/steel,
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/window_frame/metal,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"oK" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/newspaper,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oL" = (
+/obj/structure/bookcase,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"oM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"oN" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oO" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/beach/water/ice,
+/area/caribbean/nomads/taiga)
+"oP" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"oV" = (
+/obj/covers/carpet/redcarpet,
+/obj/covers/wood/stairs{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"oW" = (
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/ww2/gulag_prisoner,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/religious/remains,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"oX" = (
+/obj/structure/grille/chainlinkfence/door,
+/obj/covers/roads/dirt,
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"oY" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"oZ" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/sign/greencross{
+ pixel_y = -32;
+ desc = "The Pepelsibirsk City Hospital";
+ name = "Pepelsibirsk City Hospital"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"pa" = (
+/obj/structure/props/server,
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"pb" = (
+/obj/covers/wood/stairs{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"pc" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/flour,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pe" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"pf" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 8;
+ icon_state = "wheelchair"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"pg" = (
+/obj/structure/sign/custom/metallic{
+ pixel_x = 32;
+ name = "Pepelsibirsk Prison";
+ desc = "The prison and police station of the city of Pepelsibirsk."
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ph" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/modern3,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pi" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pj" = (
+/obj/roof/clay/black,
+/turf/floor/plating/marble/decorative_tile,
+/area/caribbean/nomads/taiga)
+"pk" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"pl" = (
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"pm" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pn" = (
+/obj/structure/gate/blast/garage,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"po" = (
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble/decorative_tile,
+/area/caribbean/nomads/taiga)
+"pp" = (
+/obj/structure/sink/puddle,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"pq" = (
+/obj/structure/table/wood,
+/obj/item/stack/material/woolcloth{
+ amount = 25
+ },
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"pr" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/item/weapon/storage/box/wineglasses,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"ps" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/closet/crate/rations/seeds/medicinal,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"pt" = (
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"pu" = (
+/obj/structure/mine_support/stone,
+/obj/covers/stone_wall/brick,
+/obj/roof/clay/black,
+/turf/wall/stone/stonebrick,
+/area/caribbean/nomads/taiga)
+"pv" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"pw" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"px" = (
+/obj/covers/wood,
+/obj/structure/closet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/civf3,
+/obj/item/clothing/head/flatcap1,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pz" = (
+/obj/covers/wood/stairs,
+/obj/structure/railing{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"pA" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/obj/structure/barbwire,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"pB" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/structure/gate/blast/garage,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"pD" = (
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"pF" = (
+/obj/structure/engine/internal/diesel/premade,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"pG" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/jacket/black_suit,
+/obj/item/clothing/suit/storage/jacket/black_suit,
+/obj/item/clothing/suit/storage/jacket/black_suit,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pH" = (
+/obj/covers/carpet/purplecarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pI" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"pJ" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"pK" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"pL" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pM" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"pN" = (
+/obj/covers/wood,
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pO" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"pP" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"pQ" = (
+/obj/covers/wood,
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"pS" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pT" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/red,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"pV" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/civ/room1,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pW" = (
+/obj/structure/sign/flag/russia/rsfsr{
+ pixel_y = 32
+ },
+/obj/structure/table/modern/table,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/evidence,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"pX" = (
+/obj/structure/wild/burnedbush,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"pY" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/grille/chainlinkfence/corner{
+ dir = 4
+ },
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"pZ" = (
+/obj/structure/fitness/weightlifter,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"qa" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/farmer_outfit,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qb" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/wood/alt,
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/obj/item/weapon/matchbox,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qc" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"qd" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/structure/gate/blast/garage/open,
+/obj/structure/sign/traffic/central{
+ dir = 4;
+ pixel_x = -16
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qe" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/closet/cabinet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"qf" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"qg" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"qh" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"qi" = (
+/obj/structure/shower,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"qj" = (
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"qk" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ql" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qm" = (
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qn" = (
+/obj/structure/closet/crate/footlocker,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"qo" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"qp" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/storage/box/fingerprints,
+/obj/item/weapon/storage/box/fingerprints,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"qq" = (
+/obj/structure/props/piping/small/pipe,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"qr" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/bed/hammock,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"qs" = (
+/obj/structure/props/car_wreck/van{
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qt" = (
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qu" = (
+/obj/structure/railing/steel,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"qv" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"qw" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"qx" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qy" = (
+/obj/structure/table/wood,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"qz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"qA" = (
+/obj/effect/spawner/mobspawner/cattle/bull,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"qB" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qC" = (
+/obj/effect/decal/cleanable/graffiti{
+ layer = 7;
+ pixel_x = -32
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"qD" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"qE" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qF" = (
+/obj/structure/table/wood,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"qG" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/gulag_prisoner,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/head/ww2/sov_ushanka/nomads,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"qH" = (
+/obj/structure/bed/chair/office/light,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"qI" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"qJ" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/right,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qK" = (
+/obj/structure/table/modern,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"qL" = (
+/obj/covers/wood_ship,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qM" = (
+/obj/structure/machinery/construction_crane/excavator{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"qN" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qP" = (
+/obj/structure/closet/crate/sandbags,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"qQ" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"qR" = (
+/obj/structure/bed/chair/wood,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"qT" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/barbwire,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"qU" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"qV" = (
+/obj/covers/brick_wall,
+/obj/roof/clay/black,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"qW" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/storage/box/bloodpacks,
+/obj/item/weapon/storage/box/bloodpacks,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/item/weapon/storage/pill_bottle/citalopram,
+/obj/item/weapon/storage/pill_bottle/penicillin,
+/obj/item/weapon/storage/pill_bottle/tramadol,
+/obj/item/weapon/storage/pill_bottle/antitox,
+/obj/item/weapon/storage/pill_bottle/antitox,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/cane,
+/obj/item/weapon/cane,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"qX" = (
+/obj/effect/decal/cleanable/graffiti{
+ color = "#000000";
+ layer = 6;
+ pixel_x = 32
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"qZ" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"ra" = (
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/engineprops/turbine,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rb" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"rc" = (
+/obj/covers/carpet,
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"re" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/clay/largeclaypitcher,
+/obj/item/weapon/reagent_containers/food/drinks/clay/largeclaypitcher,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rf" = (
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rg" = (
+/obj/covers/steelplating,
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"rh" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/obj/structure/window/barrier/railing/brick,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ri" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rj" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"rk" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"rl" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/closet/fridge,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"rm" = (
+/obj/structure/lamp/lamp_small,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"rn" = (
+/obj/structure/closet/anchored,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ro" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rp" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/effect/floor_decal/grass_edge/dead,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"rq" = (
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"rr" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rs" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rt" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel/twentyfive,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"ru" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/snacks/driedmeat,
+/obj/item/weapon/reagent_containers/food/snacks/driedmeat,
+/obj/item/weapon/reagent_containers/food/snacks/driedmeat,
+/obj/item/weapon/reagent_containers/food/snacks/driedmeat,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rv" = (
+/obj/structure/roof_support,
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/wall/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"rw" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/railing/steel,
+/obj/structure/table/modern/retable,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rx" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood/red{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"ry" = (
+/obj/structure/rails/turn/right{
+ dir = 8;
+ icon_state = "rails_turn_right"
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rz" = (
+/obj/covers/jail/steeljail{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank"
+ },
+/obj/structure/table/modern/retable,
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"rA" = (
+/obj/covers/brick_wall,
+/obj/roof/concrete,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"rB" = (
+/obj/structure/potted_plant,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rC" = (
+/obj/structure/table/wood,
+/obj/structure/closet/crate/cash_register,
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/item/stack/money/rubles{
+ amount = 100
+ },
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"rD" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"rE" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"rF" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/item/weapon/storage/firstaid/combat/modern{
+ name = "medicine kit"
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"rG" = (
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"rH" = (
+/obj/structure/gatecontrol/blastcontrol/garage{
+ pixel_y = -24
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"rI" = (
+/obj/covers/cement_wall/vertical,
+/obj/roof/concrete,
+/turf/wall/concrete_blocks/vertical,
+/area/caribbean/nomads/taiga)
+"rJ" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rK" = (
+/obj/item/weapon/material/shovel/steel,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"rL" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/structure/printingpress,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rM" = (
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"rN" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rO" = (
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/structure/closet/cabinet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rQ" = (
+/obj/structure/lamp/lamp_small,
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"rR" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"rS" = (
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"rT" = (
+/obj/structure/table/wood/flipped{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"rU" = (
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"rV" = (
+/obj/structure/closet/crate/footlocker,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"rW" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/obj/covers/carpet/redcarpet,
+/obj/structure/sign/flag/german/east{
+ pixel_x = -33
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"rX" = (
+/obj/item/clothing/under/medieval/beggar_clothing,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/religious/remains,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"rY" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/oil,
+/obj/roof/concrete,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"rZ" = (
+/obj/structure/table/modern,
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"sa" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/window/barrier/concrete,
+/obj/structure/barbwire,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"sb" = (
+/obj/structure/window/classic/brickfull,
+/obj/covers/cobblestone,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"sc" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"sd" = (
+/obj/structure/shopping_cart,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"sf" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/structure/closet/cabinet/ceiling,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sg" = (
+/obj/covers/jail/steeljail,
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/obj/structure/window/classic/portholefull,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"sh" = (
+/obj/structure/props/random/container,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"si" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"sj" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/covers/carpet,
+/obj/structure/bed/chair/office/light{
+ dir = 1;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"sk" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"sl" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/closet/fridge/icebox,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"sm" = (
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"so" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sp" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"sq" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"sr" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"ss" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"st" = (
+/obj/structure/pot,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"su" = (
+/obj/structure/simple_door/key_door/civ/paramedics,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"sv" = (
+/obj/covers/wood,
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"sw" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"sx" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/stack/material/wood/twentyfive,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"sy" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"sz" = (
+/obj/item/stack/ore/gold,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"sA" = (
+/obj/effect/landmark{
+ icon_state = "x3";
+ name = "JoinLateCiv"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"sB" = (
+/obj/structure/shower{
+ icon_state = "shower"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"sC" = (
+/obj/structure/bed/chair/office/light,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"sD" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/cozyoldy,
+/obj/item/clothing/under/cozyoldy,
+/obj/item/clothing/under/cozyoldy,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sE" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"sF" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1115;
+ name = "misc ministry telephone"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sG" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 4;
+ pixel_x = 10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"sH" = (
+/obj/structure/gatecontrol/blastcontrol,
+/obj/structure/table/modern/retable,
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/item/weapon/key/civ/businessblue{
+ name = "R&D Key"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"sI" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/cotton{
+ amount = 50
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"sJ" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"sK" = (
+/obj/structure/wild/burnedbush,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"sL" = (
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"sM" = (
+/obj/structure/bed/chair/sofa/right,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"sO" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"sP" = (
+/obj/covers/wood,
+/obj/item/violin,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"sR" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"sS" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"sT" = (
+/obj/covers/cement_wall,
+/turf/floor/dirt/underground,
+/area/caribbean/roofed)
+"sU" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"sV" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sW" = (
+/obj/structure/table/modern,
+/obj/structure/railing/steel,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sX" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/civ/mckellen{
+ name = "Kitchen key"
+ },
+/obj/item/weapon/key/civ/mckellen{
+ name = "Kitchen key"
+ },
+/obj/item/weapon/key/civ/mckellen{
+ name = "Kitchen key"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sY" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"sZ" = (
+/obj/structure/curtain/open/bed,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/window/classic/brickfull,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ta" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"tb" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/comfy/red{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tc" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"td" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"te" = (
+/obj/structure/filingcabinet,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tf" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/modern2,
+/obj/item/clothing/under/modern2,
+/obj/item/clothing/under/modern2,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tg" = (
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean)
+"th" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/suit/storage/jacket/coveralls,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/item/clothing/gloves/thick/leather,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tj" = (
+/obj/structure/table/wood,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"tk" = (
+/obj/covers/wood,
+/obj/structure/railing,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tl" = (
+/obj/structure/table/rack/shelf,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tm" = (
+/obj/structure/lamp/lamp_big,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tn" = (
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"to" = (
+/obj/covers/wood/stairs,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"tp" = (
+/obj/structure/multiz/ladder/ww2/manhole/chech,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"tq" = (
+/obj/structure/torch_stand{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tr" = (
+/obj/structure/table/modern/table,
+/obj/covers/jail/steeljail{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank"
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ts" = (
+/obj/structure/oven/stove/old,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"tt" = (
+/obj/structure/table/fancy,
+/obj/item/flashlight/lamp/littlelamp,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"tu" = (
+/obj/covers/wood/alt,
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tv" = (
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tw" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ty" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tz" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/effect/decal/cleanable/cobweb2{
+ dir = 8;
+ icon_state = "cobweb2"
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"tA" = (
+/obj/structure/props/junk{
+ icon_state = "Junk_10"
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tB" = (
+/obj/structure/bed/chair/steel/alt,
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tC" = (
+/obj/structure/sign/traffic/side{
+ pixel_y = 16
+ },
+/obj/effect/landmark{
+ name = "trader_spawnpoint"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"tD" = (
+/obj/structure/props/barrel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tE" = (
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"tF" = (
+/obj/item/weapon/reagent_containers/glass/barrel/vodka,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"tG" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tI" = (
+/obj/covers/wood,
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tJ" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/steelplating,
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/obj/item/weapon/key/soviet,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tK" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/cloth{
+ amount = 50
+ },
+/obj/item/stack/material/cloth{
+ amount = 50
+ },
+/obj/item/stack/material/cloth{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"tL" = (
+/obj/structure/grille/chainlinkfence/door,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"tM" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tN" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tO" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet,
+/obj/covers/carpet,
+/obj/structure/bed/chair/office/light{
+ dir = 1;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tP" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tQ" = (
+/obj/structure/railing,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tR" = (
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"tS" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/diesel,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"tT" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"tU" = (
+/obj/structure/simple_door/key_door/anyone/doubledoor/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tV" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/plastic/water,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/plastic/water,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/plastic/water,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/plastic/water,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"tW" = (
+/obj/item/weapon/reagent_containers/glass/barrel/vodka,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"tX" = (
+/obj/structure/railing,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"tY" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ua" = (
+/obj/structure/lamp/lamp_big,
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ub" = (
+/obj/structure/closet/crate/cart/steel,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"uc" = (
+/obj/covers/wood_wall/adjustable,
+/obj/roof/clay,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"ud" = (
+/obj/item/stack/ore/tin,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"ue" = (
+/obj/covers/wood_ship,
+/obj/structure/barricade,
+/obj/structure/curtain/open/bed,
+/obj/structure/window/classic/brickfull,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uf" = (
+/obj/structure/gatecontrol/blastcontrol/garage{
+ pixel_y = -24;
+ distance = 6
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ug" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"uh" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"ui" = (
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover";
+ dir = 1
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/obj/structure/window/barrier/railing/brick{
+ dir = 4
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uj" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/oldmansuit,
+/obj/item/clothing/under/oldmansuit,
+/obj/item/clothing/under/oldmansuit,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uk" = (
+/obj/structure/table/wood,
+/obj/structure/lamp/lamp_small,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ul" = (
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/weldingtool,
+/obj/item/clothing/glasses/pilot,
+/obj/item/clothing/glasses/pilot,
+/obj/structure/table/rack/shelf,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"um" = (
+/obj/structure/closet/crate/footlocker,
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"un" = (
+/obj/structure/table/rack/shelf/wooden,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/clothing/accessory/armor/coldwar/plates/b3,
+/obj/item/clothing/accessory/armor/coldwar/plates/b3,
+/obj/item/clothing/accessory/armor/coldwar/plates/b3,
+/obj/item/clothing/head/helmet/modern/ssh_68,
+/obj/item/clothing/head/helmet/modern/ssh_68,
+/obj/item/clothing/head/helmet/modern/ssh_68,
+/obj/item/clothing/mask/gas/soviet/gp5,
+/obj/item/clothing/mask/gas/soviet/gp5,
+/obj/item/clothing/mask/gas/soviet/gp5,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uo" = (
+/obj/structure/table/wood,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"up" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ur" = (
+/obj/structure/printingpress,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"us" = (
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"ut" = (
+/obj/structure/wild/rock{
+ icon_state = "rock4"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"uv" = (
+/obj/structure/closet/crate/rations/seeds/cashcrops,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"ux" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uy" = (
+/obj/covers/wood,
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uz" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/window/barrier/sandbag,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uA" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"uB" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/carpet/greencarpet,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uC" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uD" = (
+/obj/structure/wild/rock{
+ icon_state = "rock1"
+ },
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"uE" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"uF" = (
+/obj/structure/roof_support,
+/obj/structure/noticeboard,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uG" = (
+/obj/structure/table/modern,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"uH" = (
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uI" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central2,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"uJ" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"uK" = (
+/obj/structure/roof_support,
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uL" = (
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"uM" = (
+/obj/structure/railing,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uN" = (
+/obj/structure/machinery/construction_crane/excavator,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"uO" = (
+/obj/covers/wood,
+/obj/structure/table/nightstand,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uP" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"uR" = (
+/obj/covers/steelplating,
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"uS" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"uT" = (
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"uU" = (
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"uV" = (
+/obj/covers/wood,
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"uW" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uX" = (
+/obj/structure/grille,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"uY" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"uZ" = (
+/obj/structure/rails/turn/right{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"va" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"vb" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vc" = (
+/obj/structure/roof_support,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"vd" = (
+/obj/structure/vehicleparts/movement,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/structure/table/carboot,
+/obj/structure/vehicleparts/frame/car/shinobu/rb{
+ doorcode = 13443
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"ve" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/beach/water/ice,
+/area/caribbean/nomads/taiga)
+"vf" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vg" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"vh" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vi" = (
+/obj/roof/clay/black,
+/obj/covers/brick_wall,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"vj" = (
+/obj/structure/props/random/container/three,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"vk" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vl" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/clay,
+/obj/structure/mine_support/stone/ionic/rock,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"vm" = (
+/obj/structure/grille/metalsheetfence,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"vn" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/teapot/filled,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"vo" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/bronze{
+ amount = 25
+ },
+/obj/item/stack/material/bronze{
+ amount = 25
+ },
+/obj/item/stack/material/bronze{
+ amount = 25
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"vp" = (
+/obj/covers/wood,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vq" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel,
+/obj/structure/mine_support/stone/concrete,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"vr" = (
+/obj/covers/wood,
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vs" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"vt" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vu" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay/black,
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vv" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid/full,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vx" = (
+/obj/effect/spawner/mobspawner/cattle/cow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"vy" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"vz" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/table/modern,
+/obj/structure/train_lever{
+ pixel_y = 13
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vA" = (
+/obj/structure/simple_door/key_door/civ/paramedics{
+ name = "Medical Storage";
+ unique_door_name = "Medical Storage"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"vB" = (
+/obj/structure/lamp/lamp_big/alwayson,
+/obj/structure/bed/roller,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"vC" = (
+/obj/structure/closet/anchored{
+ name = "locker"
+ },
+/obj/item/clothing/under/oldfirefighter,
+/obj/item/clothing/suit/storage/coat/firefighter,
+/obj/item/clothing/gloves/thick/firefighter,
+/obj/item/clothing/head/helmet/modern/hardhat/orange,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/fire_extinguisher/ww2,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/material/twohanded/fireaxe,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vD" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vE" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vF" = (
+/obj/structure/table/fancy,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"vG" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"vH" = (
+/obj/structure/railing,
+/obj/structure/bed/chair/wood/red,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"vI" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/roof_support,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vJ" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vK" = (
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/structure/window/barrier/railing/brick,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"vL" = (
+/obj/structure/window/classic/stonefull,
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"vM" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"vO" = (
+/obj/structure/props/engineprops/steam,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vP" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/item/stack/material/sandstone{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"vR" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vS" = (
+/obj/machinery/washing_machine,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vT" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"vU" = (
+/obj/structure/grille,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"vV" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vW" = (
+/obj/structure/closet/crate/cart/steel,
+/obj/effect/floor_decal/industrial/danger,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"vX" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/civ/mechanic{
+ name = "Car Factory door";
+ unique_door_name = "Car Factory Door"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"vY" = (
+/obj/roof/wood,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"vZ" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"wa" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"wb" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/clothing/under/oldmansuit,
+/obj/item/clothing/suit/storage/jacket/black_suit,
+/obj/roof/clay,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"wc" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wd" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/printingpress,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wf" = (
+/obj/structure/table/modern/retable,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wg" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"wh" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"wi" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wj" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"wl" = (
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/iv_drip,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"wm" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/bartender,
+/obj/item/clothing/shoes/laceup,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wn" = (
+/obj/structure/closet/fridge,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wo" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/teapot/filled,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"wp" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"wq" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/storage/coat/ww2/soviet_officer,
+/obj/item/clothing/head/ww2/sov_officercap,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wr" = (
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ws" = (
+/obj/structure/window/classic/metal,
+/obj/covers/jail/steeljail,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wt" = (
+/obj/covers/wood,
+/obj/structure/multiz/ladder/ww2/stairsdown,
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wu" = (
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/engineprops/steam,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wv" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ww" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"wx" = (
+/obj/covers/wood,
+/obj/item/remains/mouse,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wy" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/cloth{
+ amount = 50
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"wA" = (
+/obj/structure/flag/soviet,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"wB" = (
+/obj/structure/lamp/lamp_big/alwayson,
+/obj/structure/sign/anatomy{
+ pixel_y = -32
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wC" = (
+/obj/structure/religious/monument/karl_marx,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"wD" = (
+/obj/item/weapon/storage/bag/trash,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"wE" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 5
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wF" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"wG" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wH" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wI" = (
+/obj/covers/carpet/purplecarpet,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wJ" = (
+/obj/structure/bed/chair/wood/red,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wK" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"wL" = (
+/obj/covers/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bookcase,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wN" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wO" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wP" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/cement_wall,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"wQ" = (
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"wS" = (
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wT" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/stamp/denied,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wU" = (
+/obj/structure/window/classic/metal,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"wW" = (
+/obj/structure/wild/rock,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"wX" = (
+/obj/structure/table/wood,
+/obj/structure/sink/kitchen{
+ pixel_y = 16;
+ layer = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"wY" = (
+/obj/structure/closet/crate/footlocker,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"wZ" = (
+/obj/structure/closet/crate/empty,
+/obj/item/ammo_magazine/mosinbox,
+/obj/item/ammo_magazine/mosin,
+/obj/item/ammo_magazine/mosin,
+/obj/item/weapon/gun/projectile/boltaction/mosin/m30,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xa" = (
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"xb" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"xc" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"xd" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"xe" = (
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/railing,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xf" = (
+/obj/structure/window/barrier/concrete,
+/obj/structure/mine_support/stone/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"xg" = (
+/obj/covers/wood,
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xh" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"xi" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = 14
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"xj" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xk" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/item/weapon/key/civ/room2,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xl" = (
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"xn" = (
+/obj/structure/table/wood,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xo" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/structure/gate/blast/garage/open,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"xp" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"xq" = (
+/obj/structure/vehicleparts/frame/t72/front,
+/obj/structure/vehicleparts/axis/heavy/t72{
+ color = "#494C45"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"xr" = (
+/obj/structure/cross,
+/obj/covers/carpet/purplecarpet,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xs" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"xt" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xu" = (
+/obj/structure/printingpress,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"xv" = (
+/obj/structure/sink{
+ pixel_x = 0;
+ pixel_y = 12
+ },
+/obj/structure/mirror{
+ pixel_y = 32;
+ layer = 3.4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"xw" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"xx" = (
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover.";
+ dir = 8;
+ pixel_x = -10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"xy" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/sign/portrait/stalin{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xz" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xA" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"xB" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"xC" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"xD" = (
+/obj/structure/props/car_wreck/van/alt{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"xE" = (
+/turf/wall/indestructable/black{
+ layer = 6
+ },
+/area/caribbean/admin)
+"xF" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 9
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xG" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/item/weapon/reagent_containers/food/drinks/can/ice_tea,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xH" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/closet/crate/rations/seeds/trees,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"xJ" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xK" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/soviet/guard/max,
+/obj/item/weapon/key/soviet/guard/max,
+/obj/item/weapon/key/soviet/guard/max,
+/obj/item/weapon/key/soviet/guard/max,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"xM" = (
+/obj/structure/table/modern,
+/obj/structure/meat_grinder,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"xN" = (
+/obj/covers/steelplating,
+/obj/structure/closet/crate/lead,
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xO" = (
+/obj/structure/window/classic/metal,
+/obj/structure/curtain/open/bed,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"xP" = (
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"xQ" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"xR" = (
+/obj/structure/closet/crate/cart/steel,
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/obj/item/stack/ore/iron{
+ amount = 50
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"xS" = (
+/obj/covers/wood,
+/obj/structure/TV/television{
+ pixel_y = 4
+ },
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xT" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xU" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/obj/structure/railing/steel,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"xV" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xW" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"xX" = (
+/obj/structure/bed/chair/wood,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"xY" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"xZ" = (
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"ya" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/material/hatchet/steel,
+/obj/item/weapon/material/hatchet/steel,
+/obj/item/weapon/material/hatchet/steel,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"yb" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"yd" = (
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ye" = (
+/obj/structure/table/wood,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/bowls,
+/obj/item/weapon/storage/box/bowls,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"yf" = (
+/obj/structure/closet/crate/footlocker,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"yg" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"yh" = (
+/obj/structure/props/car_wreck/truck{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yi" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yj" = (
+/obj/structure/bed/chair/office/light,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"yk" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"yl" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/orange,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ym" = (
+/obj/structure/closet/crate,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"yn" = (
+/obj/roof/clay/black,
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"yo" = (
+/obj/structure/closet/chemical,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/mask/sterile,
+/obj/item/clothing/mask/sterile,
+/obj/item/clothing/mask/sterile,
+/obj/item/clothing/mask/gas/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"yp" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/sign/portrait/lenin{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yq" = (
+/obj/structure/vehicleparts/movement,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/trafficcone,
+/obj/item/weapon/trafficcone,
+/obj/item/weapon/trafficcone,
+/obj/structure/table/carboot,
+/obj/structure/vehicleparts/license_plate/us/centered,
+/obj/structure/vehicleparts/frame/car/shinobu/lb{
+ doorcode = 13443
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yr" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ys" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yt" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"yu" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yw" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/covers/steelplating/white,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yy" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"yz" = (
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"yA" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yB" = (
+/obj/structure/props/barrel,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"yC" = (
+/obj/structure/closet/fridge,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"yD" = (
+/obj/structure/table/wood,
+/obj/structure/radio/transmitter_receiver,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"yE" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/structure/radio/transmitter_receiver,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"yF" = (
+/turf/wall/rockwall,
+/area/caribbean/void/caves)
+"yG" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"yH" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"yJ" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"yK" = (
+/obj/effect/autoassembler,
+/obj/structure/vehicleparts/frame/t72/right/door{
+ doorcode = 4975
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yL" = (
+/obj/covers/wood/alt,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central2{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"yN" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"yP" = (
+/obj/covers/catwalk/dark,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"yQ" = (
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"yR" = (
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"yS" = (
+/obj/structure/sign/map{
+ pixel_y = 32
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"yT" = (
+/obj/structure/vehicleparts/frame/car/right/metal{
+ override_color = "#7f0000"
+ },
+/obj/structure/iv_drip{
+ anchored = 1
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yU" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"yV" = (
+/obj/structure/vehicleparts/movement{
+ anchored = 1
+ },
+/obj/item/weapon/reagent_containers/glass/barrel/fueltank/tank/fueledgasoline{
+ anchored = 1
+ },
+/obj/structure/vehicleparts/frame/car/shinobu/rf{
+ doorcode = 13443
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"yW" = (
+/obj/structure/wild/rock,
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"yX" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/item/clothing/under/scrubs/lightgreen,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"yY" = (
+/obj/structure/simple_door/wood,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"yZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/globe,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"za" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zb" = (
+/obj/structure/filingcabinet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"zc" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zd" = (
+/obj/structure/window/classic/stone,
+/obj/structure/railing/steel,
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ze" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/railing/steel,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"zf" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zg" = (
+/obj/structure/lamp/lamp_small/tank/red/police{
+ dir = 8;
+ icon_state = "bulb"
+ },
+/obj/structure/bed/chair/drivers/car/dark,
+/obj/structure/emergency_lights,
+/obj/structure/vehicleparts/frame/car/shinobu/lcf{
+ color = "#d3d3d3";
+ doorcode = 13443;
+ override_color = "#FFFFFF"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"zh" = (
+/obj/structure/roof_support,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"zi" = (
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/weapon/wrench,
+/obj/item/weapon/wirecutters,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zj" = (
+/obj/structure/wild/burnedbush,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"zk" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zl" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"zm" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"zn" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zo" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/reagent_containers/glass/extraction_kit,
+/obj/item/weapon/reagent_containers/glass/extraction_kit,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zp" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood/red{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"zq" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"zr" = (
+/obj/covers/cobblestone/stairs,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"zs" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/flame/candle,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"zt" = (
+/obj/effect/decal/cleanable/generic,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"zu" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"zv" = (
+/obj/structure/bed/chair/wood/alt{
+ dir = 8
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"zw" = (
+/obj/structure/filingcabinet,
+/obj/structure/lamp/lamp_small,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"zx" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zy" = (
+/obj/structure/wild/tallgrass2,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"zz" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/court,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"zA" = (
+/obj/structure/medical_divider/full,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zB" = (
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"zC" = (
+/obj/structure/wild/rock,
+/obj/structure/machinery/construction_crane/excavator{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"zD" = (
+/obj/structure/pot,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zE" = (
+/obj/structure/bookcase{
+ icon_state = "book-3"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"zF" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zG" = (
+/obj/structure/vehicleparts/frame/car/van/lb{
+ doorcode = 12443
+ },
+/obj/structure/vehicleparts/movement/reversed{
+ dir = 1;
+ icon_state = "wheel_t_dark"
+ },
+/obj/structure/vehicleparts/license_plate/us/centered{
+ dir = 1;
+ icon_state = "license_plate_us"
+ },
+/turf/floor/plating/road/whiteline,
+/area/caribbean/nomads/taiga)
+"zH" = (
+/obj/structure/filingcabinet,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"zI" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/grille/chainlinkfence/corner{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"zJ" = (
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/obj/structure/gatecontrol/blastcontrol/garage,
+/obj/structure/table/modern,
+/obj/item/weapon/key/soviet,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"zK" = (
+/obj/structure/simple_door/key_door/soviet/guard,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"zL" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"zM" = (
+/obj/roof/concrete,
+/obj/structure/multiz/ladder/ww2/up,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"zN" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zO" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zP" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"zQ" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"zR" = (
+/obj/structure/table/wood,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"zS" = (
+/obj/structure/sign/custom{
+ pixel_x = 32;
+ desc = "By order of the local Soviet, this housing unit is closed indefinitely.";
+ name = "NO TRESPASSING: HOUSING UNIT CLOSED INDEFINITELY"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"zT" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"zU" = (
+/obj/structure/lamp/lamp_small,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"zV" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"zW" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"zX" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"zY" = (
+/obj/structure/props/computerprops/research{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"zZ" = (
+/turf/floor/dirt/underground/icy/rock,
+/area/caribbean/nomads/taiga)
+"Ab" = (
+/obj/covers/carpet/blackcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ac" = (
+/obj/structure/barricade/tires{
+ pixel_x = -2;
+ pixel_y = 12
+ },
+/obj/structure/barricade/tires{
+ pixel_x = 16;
+ pixel_y = 8
+ },
+/obj/structure/barricade/tires,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ad" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ae" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour/barleyflour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Af" = (
+/obj/covers/cobblestone,
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/covers/jail,
+/obj/structure/barbwire,
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire{
+ dir = 1
+ },
+/obj/structure/barbwire,
+/obj/structure/barbwire,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ag" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ah" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/table/modern/table,
+/obj/item/weapon/broken_bottle,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ai" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/table/modern,
+/obj/structure/train_lever{
+ pixel_y = 13
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Aj" = (
+/obj/structure/gate/barrier/vertical,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ak" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Al" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Am" = (
+/obj/covers/wood_wall/log{
+ icon_state = "log_wall";
+ dir = 8
+ },
+/obj/roof/wood,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"An" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"Ao" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/under/ww2/civ2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ap" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/lead{
+ amount = 50
+ },
+/obj/item/stack/material/lead{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Aq" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/suit/storage/jacket/coveralls,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/item/clothing/gloves/thick/leather,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ar" = (
+/obj/structure/props/server/comm,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"As" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"At" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Au" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Av" = (
+/obj/structure/window/classic/metal,
+/obj/structure/curtain/open/blue,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Aw" = (
+/obj/item/weapon/telephone/mobile/police,
+/obj/structure/table/modern,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ax" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ay" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"Az" = (
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"AA" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/under/modern1,
+/obj/item/clothing/under/modern1,
+/obj/item/clothing/under/modern1,
+/obj/item/clothing/under/modern2,
+/obj/item/clothing/under/modern2,
+/obj/item/clothing/under/modern2,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"AB" = (
+/obj/structure/simple_door/key_door/civ/mechanic{
+ name = "Car Factory door";
+ unique_door_name = "Car Factory Door"
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"AC" = (
+/obj/structure/table/wood,
+/obj/structure/cutting_board,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"AD" = (
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"AE" = (
+/obj/structure/table/wood,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ pixel_x = -10
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"AF" = (
+/obj/covers/steelplating,
+/obj/structure/simple_door/key_door/anyone,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"AG" = (
+/obj/structure/filingcabinet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"AH" = (
+/obj/structure/closet/crate/rations/seeds/medicinal,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"AI" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"AJ" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/diesel,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"AK" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/modern2,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"AL" = (
+/obj/structure/simple_door/wood2,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"AM" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/item/weapon/storage/box/canned,
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"AN" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/stone{
+ amount = 50
+ },
+/obj/item/stack/material/stone{
+ amount = 50
+ },
+/obj/item/stack/material/stone{
+ amount = 50
+ },
+/obj/item/stack/material/stone{
+ amount = 50
+ },
+/obj/item/stack/material/stone{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"AO" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"AP" = (
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"AQ" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/civ/bank{
+ name = "heavy-duty door";
+ desc = "This door looks tough!";
+ health = 40000;
+ initial_health = 40000;
+ unique_door_name = "heavy-duty door"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"AR" = (
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"AS" = (
+/obj/structure/vehicleparts/frame/t72/back,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"AT" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"AU" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/woolcloth{
+ amount = 25
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"AV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"AW" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"AX" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"AY" = (
+/obj/structure/props/car_wreck{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"AZ" = (
+/obj/covers/steelplating,
+/obj/structure/table/rack/shelf,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ba" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/closet/crate/rations/seeds/cereals,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Bb" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Bc" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/shoes/blackboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Bd" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Be" = (
+/obj/map_metadata/pepelsibirsk,
+/turf/wall/indestructable/black{
+ layer = 6
+ },
+/area/caribbean/admin)
+"Bf" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Bg" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/handcuffs,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Bh" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_small,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_small,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_small,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Bi" = (
+/obj/structure/lamp/lamp_big,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Bj" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Bk" = (
+/obj/item/remains/mouse,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Bl" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Bm" = (
+/obj/covers/brick_wall,
+/obj/structure/window/classic/brick,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Bn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/transformer,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Bo" = (
+/obj/covers/stone_wall/brick,
+/obj/roof/clay/black,
+/turf/wall/stone/stonebrick,
+/area/caribbean/nomads/taiga)
+"Bp" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/stack/material/bone,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Bq" = (
+/obj/covers/wood,
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Br" = (
+/obj/structure/table/wood,
+/obj/item/stack/material/cloth{
+ amount = 50
+ },
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Bs" = (
+/obj/structure/window/barrier/sandbag,
+/obj/structure/gatecontrol/blastcontrol/garage,
+/obj/structure/table/modern,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Bt" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/wild/smallbush/winter,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Bu" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Bv" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Bw" = (
+/obj/structure/props/computerprops/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Bx" = (
+/obj/structure/window/classic/brick,
+/obj/covers/brick_wall,
+/obj/roof/clay,
+/turf/floor/wood/ship,
+/area/caribbean/nomads/taiga)
+"By" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof/wood,
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"Bz" = (
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"BA" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/suit/storage/jacket/surgeon,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/item/clothing/head/surgical_cap/lightgreen,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"BB" = (
+/obj/structure/vehicleparts/frame/car/van/lf,
+/obj/structure/vehicleparts/axis/car/volle/ambulance{
+ color = "#FFFFFF";
+ dir = 1
+ },
+/obj/structure/vehicleparts/movement/reversed{
+ dir = 1;
+ icon_state = "wheel_t_dark"
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/structure/vehicleparts/license_plate/us/centered/front{
+ dir = 1;
+ icon_state = "license_plate_us"
+ },
+/obj/structure/engine/internal/gasoline{
+ dir = 1;
+ enginesize = 7000
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"BC" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled,
+/area/caribbean/nomads/taiga)
+"BD" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"BE" = (
+/obj/structure/toilet{
+ dir = 8;
+ icon_state = "toilet00"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"BG" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"BH" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"BI" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"BJ" = (
+/obj/covers/steelplating,
+/obj/structure/closet/crate/lead,
+/obj/item/clothing/gloves/watch/goldwatch,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"BK" = (
+/obj/structure/sign/traffic/central{
+ dir = 4;
+ pixel_x = -16
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"BL" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/salmon,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/salmon,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/salmon,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/salmon,
+/obj/item/weapon/reagent_containers/food/snacks/rawfish/salmon,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"BM" = (
+/obj/structure/salting_container,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"BN" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/ww2/gulag_prisoner,
+/obj/item/clothing/under/ww2/gulag_prisoner,
+/obj/item/clothing/under/ww2/gulag_prisoner,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"BO" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/item/weapon/material/kitchen/utensil/knife/razorblade,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"BP" = (
+/obj/structure/sign/traffic/zebracrossing{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"BQ" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"BS" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"BT" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"BU" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"BV" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"BW" = (
+/obj/covers/wood,
+/obj/item/weapon/newspaper,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"BY" = (
+/obj/covers/roads/dirt,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"BZ" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Ca" = (
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Cb" = (
+/obj/structure/table/modern,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Cc" = (
+/obj/covers/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Cd" = (
+/obj/roof/clay,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ce" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 6
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Cf" = (
+/obj/covers/carpet/redcarpet,
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Cg" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Cj" = (
+/obj/structure/roof_support,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ck" = (
+/obj/structure/sign/traffic/central{
+ pixel_y = 15
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Cl" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Cm" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/clothing/under/tradwife,
+/obj/roof/clay,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Cn" = (
+/obj/structure/window/classic/metal,
+/obj/structure/barricade/steel,
+/obj/structure/curtain/closed,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Co" = (
+/obj/structure/simple_door/key_door/anyone/singledoor/housedoor,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Cp" = (
+/obj/structure/closet/crate,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Cq" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Cr" = (
+/obj/structure/table/modern,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Cs" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 10
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Ct" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone";
+ pixel_x = -5
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Cu" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/obj/item/weapon/telephone/wireless{
+ name = "court telephone";
+ phonenumber = 2226
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Cv" = (
+/obj/structure/table/wood,
+/obj/structure/closet/cabinet/ceiling{
+ pixel_y = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Cw" = (
+/obj/structure/simple_door/key_door/civ/mechanic{
+ name = "Car Factory door";
+ unique_door_name = "Car Factory Door"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Cx" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Cy" = (
+/obj/covers/steelplating,
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 1;
+ icon_state = "sink"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Cz" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ pixel_x = -8
+ },
+/obj/structure/sink{
+ dir = 1;
+ icon_state = "sink"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"CA" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"CB" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CC" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/storage/firstaid/combat/modern,
+/obj/item/weapon/storage/firstaid/combat/modern,
+/obj/item/weapon/storage/firstaid/combat/modern,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"CD" = (
+/obj/structure/table/wood,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CE" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CF" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"CG" = (
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/weapon/wrench,
+/obj/item/weapon/wirecutters,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"CH" = (
+/obj/covers/cement_wall/horizontal,
+/turf/wall/concrete_blocks,
+/area/caribbean/nomads/taiga)
+"CI" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/blue,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CJ" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"CK" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"CL" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"CN" = (
+/obj/item/weapon/reagent_containers/glass/barrel/vodka,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"CO" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"CP" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel,
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"CQ" = (
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CR" = (
+/obj/structure/drying_rack,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"CS" = (
+/obj/effect/spawner/mobspawner/deer/female,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"CT" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/gun/projectile/submachinegun/ak47,
+/obj/item/ammo_magazine/ak47,
+/obj/item/ammo_magazine/ak47,
+/obj/item/ammo_magazine/ak47,
+/obj/item/ammo_magazine/ak47,
+/obj/item/ammo_magazine/ak47,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"CU" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/structure/closet/anchored,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/weapon/gun/projectile/semiautomatic/svd,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"CV" = (
+/obj/structure/railing/steel,
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"CW" = (
+/obj/structure/sign/traffic/side{
+ pixel_y = 16
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"CX" = (
+/obj/structure/closet/crate/footlocker,
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"CY" = (
+/obj/structure/simple_door/key_door/soviet/guard,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"CZ" = (
+/obj/structure/sign/traffic/side{
+ pixel_y = 16
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Da" = (
+/obj/structure/engine/external/steam,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Db" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Dc" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Dd" = (
+/obj/covers/stonebrickfloor,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"De" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Df" = (
+/turf/floor/dirt/underground,
+/area/caribbean/void/caves)
+"Dg" = (
+/obj/covers/steelplating,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Dh" = (
+/obj/covers/wood,
+/obj/structure/filingcabinet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Di" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/concrete,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"Dj" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/shoes/laceup,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Dk" = (
+/obj/structure/simple_door/key_door/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Dl" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/stockmarket,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Dm" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/clothing/under/cozyoldy,
+/obj/roof/clay,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Dn" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Do" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Dp" = (
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Dq" = (
+/obj/structure/filingcabinet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Dr" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ds" = (
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Dt" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug_fancy,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug_fancy,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/beermug_fancy,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Du" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Dv" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Dw" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4;
+ icon_state = "wooden_chair_red"
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Dx" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Dy" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Dz" = (
+/obj/structure/table/rack/coatrack,
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"DA" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/golden_cup,
+/obj/covers/carpet/purplecarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"DB" = (
+/obj/structure/table/wood,
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"DC" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/grille/ironfence,
+/obj/structure/window_frame/stone,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DD" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 8;
+ pixel_x = 10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"DE" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1113;
+ name = "KGB telephone"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DF" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"DG" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"DH" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"DI" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"DJ" = (
+/obj/structure/table/modern/table,
+/obj/structure/roof_support,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"DK" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/reagent_containers/pill/opium,
+/obj/item/weapon/reagent_containers/pill/opium,
+/obj/item/weapon/reagent_containers/pill/opium,
+/obj/item/weapon/reagent_containers/pill/opium,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"DL" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"DM" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DN" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"DO" = (
+/obj/structure/grille/metalsheetfence/corner{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"DP" = (
+/obj/structure/roof_support,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"DQ" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/structure/sign/portrait/stalin{
+ pixel_y = 28
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DR" = (
+/obj/structure/roof_support,
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"DT" = (
+/obj/structure/table/wood,
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"DU" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/obj/item/weapon/matchbox,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"DW" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"DX" = (
+/obj/structure/sink,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"DY" = (
+/obj/structure/table/modern,
+/obj/item/weapon/clay/mold/clayjug/fired,
+/obj/item/weapon/clay/mold/fired,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"DZ" = (
+/obj/structure/closet/cabinet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ea" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Eb" = (
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 8;
+ icon_state = "tube"
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/closet/crate/bin{
+ pixel_x = -6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Ec" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ed" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ee" = (
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"Eg" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Eh" = (
+/obj/item/weapon/reagent_containers/glass/barrel/vodka,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ei" = (
+/obj/structure/wild/smallbush/winter,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Ej" = (
+/obj/covers/steelplating,
+/obj/structure/closet/crate/lead,
+/obj/item/stack/money/rubles{
+ amount = 40
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ek" = (
+/obj/structure/sign/portrait/lenin{
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Em" = (
+/obj/effect/landmark{
+ name = "trader_spawnpoint"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"En" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Eo" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"Ep" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Eq" = (
+/obj/structure/wild/rock{
+ icon_state = "basalt1"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Er" = (
+/obj/structure/table/wood,
+/obj/structure/radio/receiver,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Es" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Et" = (
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Eu" = (
+/obj/roof/clay,
+/obj/structure/roof_support/admin,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ev" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ew" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/table/wood,
+/obj/structure/radio/transmitter_receiver,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Ex" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1113;
+ name = "KGB telephone"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Ey" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ez" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"EC" = (
+/obj/covers/wood,
+/obj/structure/torch_stand,
+/obj/item/flashlight/lantern,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ED" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"EG" = (
+/obj/covers/brick_wall,
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/clay/black,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"EH" = (
+/obj/covers/wood,
+/obj/item/weapon/key/civ/bank{
+ name = "bank key"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EI" = (
+/obj/structure/morgue,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"EJ" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bookcase,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"EK" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/barbwire,
+/obj/structure/barricade/antitank,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"EL" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EM" = (
+/obj/structure/closet/cabinet,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EN" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EO" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EP" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"EQ" = (
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ER" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/stamp/denied,
+/obj/structure/lamp/lamp_small,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ES" = (
+/obj/structure/simple_door/key_door/civ/paramedics{
+ name = "Pharmacy";
+ unique_door_name = "Pharmacy"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"ET" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"EU" = (
+/obj/covers/wood,
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"EV" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"EW" = (
+/turf/floor/dirt,
+/area/caribbean/void/caves)
+"EX" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"EY" = (
+/turf/floor/dirt/underground/icy/rock,
+/area/caribbean/void/caves)
+"EZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Fa" = (
+/obj/structure/grille/metalsheetfence,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Fd" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/structure/closet/crate/empty,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Fe" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ff" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/civf2,
+/obj/item/clothing/shoes/laceup,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fg" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/structure/filingcabinet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fh" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/suit/storage/coat/russian_rcw,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Fi" = (
+/turf/floor/plating/road/whiteline,
+/area/caribbean/nomads/taiga)
+"Fj" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fk" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Fl" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Fm" = (
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Fn" = (
+/obj/structure/window/barrier/jersey,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Fo" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Fp" = (
+/obj/structure/table/modern/retable,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Fq" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/flour,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fr" = (
+/obj/covers/carpet,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fs" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ft" = (
+/obj/structure/bookcase{
+ icon_state = "book-5"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Fu" = (
+/obj/structure/table/modern/retable,
+/obj/effect/floor_decal/spline/plain,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Fv" = (
+/obj/effect/landmark{
+ name = "SupplyRN"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Fw" = (
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Fx" = (
+/obj/covers/brick_wall,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Fy" = (
+/obj/structure/table/wood,
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/roof,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 3333;
+ name = "collective farm telephone"
+ },
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Fz" = (
+/obj/structure/table/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"FA" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"FB" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"FC" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"FD" = (
+/obj/structure/closet/crate/rations/biscuits,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"FE" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = 14
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"FF" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"FG" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FI" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/stack/money/rubles{
+ amount = 40
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"FJ" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/material/pickaxe/steel,
+/obj/item/weapon/material/shovel/steel,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"FK" = (
+/obj/structure/props/car_wreck/truck,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"FL" = (
+/obj/structure/lamp/lamp_big,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FM" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"FN" = (
+/obj/structure/window/classic,
+/obj/structure/barricade,
+/obj/roof,
+/turf/floor/wood/ship,
+/area/caribbean/nomads/taiga)
+"FO" = (
+/obj/structure/table/modern,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"FP" = (
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"FQ" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FR" = (
+/obj/covers/wood,
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"FS" = (
+/obj/structure/table/rack/coatrack,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FT" = (
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"FU" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FW" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"FX" = (
+/obj/structure/table/modern/table,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"FY" = (
+/obj/structure/table/modern,
+/obj/item/weapon/book{
+ pixel_y = 8
+ },
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"FZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/hammer,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Ga" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"Gb" = (
+/obj/structure/table/wood,
+/obj/item/weapon/newspaper,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Gc" = (
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Gd" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/soviet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Gf" = (
+/obj/structure/roof_support,
+/obj/covers/wood_wall/adjustable,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/clay,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"Gg" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Gi" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/roofed)
+"Gk" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/roofed)
+"Gl" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Gm" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Gn" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Go" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Gp" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Gq" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Gr" = (
+/obj/covers/steelplating,
+/obj/structure/table/rack/shelf,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Gs" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/bigclaypot,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Gt" = (
+/obj/structure/window/classic/brick,
+/obj/structure/barricade,
+/obj/roof/clay,
+/turf/floor/wood/ship,
+/area/caribbean/nomads/taiga)
+"Gu" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/gasoline,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Gv" = (
+/obj/roof/concrete,
+/obj/structure/mine_support/stone/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Gw" = (
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Gy" = (
+/obj/structure/toilet{
+ dir = 8;
+ icon_state = "toilet00"
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Gz" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"GA" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"GB" = (
+/obj/structure/lamp/lamp_small,
+/obj/structure/medicalbed,
+/obj/structure/curtain/medical,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"GC" = (
+/obj/structure/table/modern,
+/obj/item/weapon/wrench,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"GD" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"GE" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"GF" = (
+/obj/structure/window/barrier/sandbag,
+/obj/structure/gatecontrol/blastcontrol/garage,
+/obj/structure/table/modern,
+/obj/item/weapon/key/soviet,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"GG" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"GH" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"GI" = (
+/obj/structure/gatecontrol/blastcontrol{
+ pixel_x = -26
+ },
+/obj/structure/closet/crate/footlocker,
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"GJ" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/pen/fancy,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"GL" = (
+/obj/structure/curtain/leather,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"GM" = (
+/obj/structure/pot,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"GN" = (
+/obj/structure/wild/smallbush/winter,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"GO" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"GP" = (
+/obj/item/weapon/reagent_containers/glass/barrel/tea,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"GQ" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"GR" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"GS" = (
+/obj/structure/bed/chair/carseat/right/dark,
+/obj/structure/vehicleparts/frame/car/shinobu/rbc{
+ color = "#d3d3d3";
+ doorcode = 13443;
+ override_color = "#FFFFFF"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"GT" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"GU" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/material/scythe/old,
+/obj/item/weapon/crowbar/prybar,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"GV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"GW" = (
+/obj/structure/table/modern,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"GX" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"GY" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"GZ" = (
+/obj/structure/bed/chair/wood{
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Ha" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/flame/lighter{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/obj/item/weapon/flame/lighter{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/obj/item/weapon/flame/lighter{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/obj/item/weapon/flame/lighter{
+ pixel_y = 6
+ },
+/obj/item/weapon/flame/lighter{
+ pixel_y = 6
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Hb" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Hc" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/trench,
+/area/caribbean/nomads/taiga)
+"Hd" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/barricade/steel,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/roofed)
+"He" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Hg" = (
+/obj/structure/props/server/controller,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Hh" = (
+/obj/structure/simple_door/key_door/anyone/doubledoor/steel/store_door{
+ name = "Hospital";
+ unique_door_name = "Hospital"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"Hi" = (
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Hj" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Hk" = (
+/obj/structure/table/modern,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Hl" = (
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/structure/computer/nopower/police/inside{
+ icon_state = "ibm_on";
+ dir = 8;
+ pixel_x = 2
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Hm" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Hn" = (
+/obj/covers/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Hp" = (
+/obj/structure/table/modern/retable,
+/obj/structure/props/computerprops/modern/a10,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Hq" = (
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Hr" = (
+/obj/structure/railing,
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Hs" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ht" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/structure/sign/portrait/lenin{
+ pixel_y = 28
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Hu" = (
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Hv" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Hw" = (
+/obj/structure/autopsy_table,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Hx" = (
+/obj/structure/table/wood,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/item/weapon/matchbox,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Hy" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Hz" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HA" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"HB" = (
+/obj/structure/pot,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"HC" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail/guard,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"HD" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"HE" = (
+/obj/covers/wood,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HF" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/stack/material/wood/twentyfive,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"HG" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/toilet{
+ dir = 8;
+ icon_state = "toilet00"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"HI" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"HJ" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"HK" = (
+/obj/structure/multiz/ladder/ww2/up,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"HL" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/newspaper,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HM" = (
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/covers/jail/steeljail{
+ name = "steel bars"
+ },
+/obj/effect/decal/warning_stripes,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"HN" = (
+/obj/structure/table/rack,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/item/weapon/key/soviet/guard,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HO" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"HP" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"HQ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"HR" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"HS" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HT" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/piping/pipe{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"HU" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/steel/alt{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"HX" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/transformer,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"HZ" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/covers/roads/dirt,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ia" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/bell_stand,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ib" = (
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 3334;
+ name = "steel mill telephone"
+ },
+/obj/structure/table/modern,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ic" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/green,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Id" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ie" = (
+/obj/structure/wild/tree/live_tree/pine/snow,
+/turf/floor/winter,
+/area/caribbean)
+"Ig" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/item/weapon/key/civ/room1,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ih" = (
+/obj/structure/grille/chainlinkfence/door{
+ dir = 4
+ },
+/obj/structure/grille/chainlinkfence/door{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ii" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ij" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ik" = (
+/obj/structure/pot,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"Il" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Im" = (
+/obj/structure/closet/crate/cart/steel,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"In" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/structure/railing/steel,
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Ip" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 8;
+ pixel_x = 10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Iq" = (
+/obj/structure/simple_door/key_door/anyone,
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"Ir" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Is" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/piping/pipe{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"It" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Iu" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1113;
+ name = "KGB telephone"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Iv" = (
+/obj/structure/table/modern/table,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"Ix" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/clay,
+/turf/wall/brick,
+/area/caribbean/nomads/taiga)
+"Iy" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_big,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IA" = (
+/obj/covers/wood,
+/obj/structure/closet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/civf3,
+/obj/item/clothing/head/flatcap1,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"IB" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/civfg,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/under/civf3,
+/obj/item/clothing/under/civf1,
+/obj/item/clothing/under/civfg,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IC" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ID" = (
+/obj/structure/roof_support,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"IE" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"IF" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/storage/coat/ww2/soviet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IG" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"IH" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/table/modern,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"II" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IJ" = (
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"IK" = (
+/obj/covers/wood_wall/adjustable,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/roof/clay,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"IL" = (
+/obj/structure/closet/crate/rations/seeds/cereals,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"IM" = (
+/obj/structure/closet/cabinet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IN" = (
+/obj/structure/bed/chair/carseat/right/dark,
+/obj/structure/lamp/lamp_small/tank/blue/police{
+ dir = 4;
+ icon_state = "bulb"
+ },
+/obj/structure/vehicleparts/frame/car/shinobu/rcf{
+ color = "#d3d3d3";
+ doorcode = 13443;
+ override_color = "#FFFFFF"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"IO" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IP" = (
+/obj/structure/lamp/lamp_big,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"IQ" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IR" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"IS" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/civ2,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"IT" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"IU" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"IV" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 4
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"IW" = (
+/obj/covers/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"IX" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/item/weapon/reagent_containers/glass/barrel/jerrycan/gasoline,
+/obj/structure/closet/crate/empty/large,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"IY" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"IZ" = (
+/obj/structure/largecrate,
+/obj/structure/lamp/lamp_small,
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ja" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Jb" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"Jd" = (
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Je" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Jf" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/civ2,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Jh" = (
+/obj/structure/printingpress,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ji" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Jj" = (
+/obj/covers/wood,
+/obj/structure/torch_stand,
+/obj/item/flashlight/lantern,
+/obj/structure/table/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Jk" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Jl" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Jm" = (
+/obj/structure/simple_door/key_door/soviet/guard,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Jn" = (
+/obj/structure/props/computerprops/modern/a10,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Jo" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/cement_wall{
+ color = "#f3dd78"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"Jp" = (
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "trader_spawnpoint"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Jq" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/item/weapon/haircomb,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Jr" = (
+/obj/structure/gate/blast/open,
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"Js" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Jt" = (
+/obj/structure/simple_door/key_door/civ/paramedics,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ju" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Jv" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Jw" = (
+/obj/structure/bookcase{
+ icon_state = "book-2"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Jx" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/wrench,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/soap/deluxe,
+/obj/item/weapon/soap/deluxe,
+/obj/item/weapon/soap/deluxe,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Jy" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/gasoline,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Jz" = (
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/structure/props/engineprops/turbine,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"JA" = (
+/obj/structure/potted_plant,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JB" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/book/language_book{
+ lang1 = "Russian";
+ lang2 = "German";
+ pixel_y = 7;
+ pixel_x = -2
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JC" = (
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JD" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"JE" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"JF" = (
+/obj/structure/table/modern/retable,
+/obj/structure/props/computerprops/machine,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"JG" = (
+/obj/covers/steelplating,
+/obj/structure/simple_door/key_door/civ/bank{
+ name = "heavy-duty door";
+ desc = "This door looks tough!";
+ health = 40000;
+ initial_health = 40000;
+ unique_door_name = "heavy-duty door"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JH" = (
+/obj/structure/table/modern,
+/obj/structure/curtain/open/privacy,
+/obj/item/weapon/key/civ/paramedics,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"JI" = (
+/obj/structure/bed/chair/wood/alt{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"JJ" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/item/weapon/chicken_carcass,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"JK" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/covers/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"JL" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,
+/obj/covers/carpet/purplecarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JM" = (
+/obj/structure/bed/chair/wood/alt,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"JN" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/comfy/red{
+ dir = 4;
+ icon_state = "chair_padding"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JO" = (
+/obj/structure/curtain/closed/red,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JP" = (
+/obj/covers/wood,
+/obj/structure/radio/receiver,
+/obj/structure/table/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JQ" = (
+/obj/structure/vehicleparts/frame/t72/left,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"JR" = (
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JS" = (
+/obj/structure/bed/chair/office/dark{
+ icon_state = "officechair_dark";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"JT" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"JU" = (
+/obj/structure/table/wood,
+/obj/structure/grille/ironfence{
+ desc = "Iron bars.";
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank";
+ name = "iron bars"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JV" = (
+/obj/covers/wood_ship,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"JW" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"JX" = (
+/obj/structure/window/classic/metal,
+/obj/structure/barricade/steel,
+/obj/structure/curtain/medical,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"JY" = (
+/obj/structure/lamp/lamp_small,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"JZ" = (
+/obj/structure/torch_stand{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"Ka" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"Kb" = (
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Kc" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = -6
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Kd" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ke" = (
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Kf" = (
+/obj/structure/closet/anchored,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/weapon/gun/projectile/semiautomatic/svd,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Kg" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Kh" = (
+/obj/structure/closet/crate/dumpster,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ki" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"Kk" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/civ1,
+/obj/item/clothing/shoes/laceup/brown,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Kl" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/obj/structure/wild/burnedbush,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"Km" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Kn" = (
+/obj/effect/autoassembler,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ko" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Kp" = (
+/obj/covers/brick_wall,
+/turf/floor/dirt/underground,
+/area/caribbean/roofed)
+"Kq" = (
+/obj/structure/furnace/kiln/stone,
+/obj/effect/decal/warning_stripes,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Kr" = (
+/obj/structure/railing/steel,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ks" = (
+/obj/structure/closet/anchored{
+ name = "locker"
+ },
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/clothing/under/traffic_police,
+/obj/item/clothing/shoes/blackboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/gloves/thick,
+/obj/item/weapon/storage/belt/police/modern,
+/obj/item/weapon/key/civ/police,
+/obj/item/weapon/storage/backpack/satchel/police,
+/obj/item/clothing/mask/gas/soviet/gp5,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Kt" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4;
+ pixel_x = -10
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ku" = (
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/structure/vehicleparts/frame/car/van/rb{
+ doorcode = 12443
+ },
+/obj/structure/vehicleparts/movement/reversed{
+ dir = 1;
+ icon_state = "wheel_t_dark"
+ },
+/turf/floor/plating/road/whiteline,
+/area/caribbean/nomads/taiga)
+"Kv" = (
+/obj/roof/concrete,
+/obj/structure/simple_door/key_door/civ/police,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Kw" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Kx" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 8;
+ icon_state = "wheelchair"
+ },
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Kz" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"KA" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"KB" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/turf/floor/dirt/winter,
+/area/caribbean)
+"KC" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/wood/alt,
+/obj/structure/table/wood,
+/obj/item/kitchen/wood_bowl,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KD" = (
+/obj/covers/wood,
+/obj/structure/table/nightstand{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KE" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/structure/table/wood,
+/obj/item/weapon/key/civ/inn{
+ name = "Collective Farm Key"
+ },
+/obj/item/clothing/head/ww2/soviet_fieldcap,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"KF" = (
+/obj/structure/shower,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"KG" = (
+/obj/covers/brick_wall,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KH" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"KI" = (
+/obj/item/weapon/stool/wood,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"KJ" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small,
+/obj/item/weapon/reagent_containers/food/drinks/clay/claypot,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KK" = (
+/obj/structure/table/modern,
+/obj/structure/button/cremator,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"KL" = (
+/obj/structure/closet/crate,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"KM" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"KN" = (
+/obj/structure/rails,
+/obj/structure/rails{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"KO" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/civ/police,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"KP" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"KQ" = (
+/obj/covers/wood,
+/obj/structure/bookcase,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KR" = (
+/obj/structure/barricade/steel,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/structure/window_frame/metal,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"KS" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"KT" = (
+/obj/structure/simple_door/key_door/civ/police,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"KU" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"KV" = (
+/obj/structure/curtain/medical,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"KW" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"KX" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"KY" = (
+/obj/structure/grille/metalsheetfence,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"KZ" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/obj/structure/sign/custom/metallic{
+ name = "Pepelsibirsk City Soviet";
+ desc = "The Soviet of city of Pepelsibirsk.";
+ pixel_y = 32
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"La" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Lb" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/comfy/fancy_sofa/l{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Lc" = (
+/obj/structure/window/classic/metal,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Ld" = (
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Le" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/storage/bible/orthodox,
+/obj/item/clothing/shoes/blackboots,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Lf" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/structure/radio/receiver,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Lg" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Li" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/turf/floor/beach/water/ice,
+/area/caribbean/nomads/taiga)
+"Lj" = (
+/obj/structure/lamp/lamp_big/alwayson,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Lk" = (
+/obj/covers/jail/steeljail,
+/obj/structure/window/classic/brick,
+/obj/structure/curtain/leather,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Ll" = (
+/obj/structure/window/classic,
+/obj/structure/barricade,
+/obj/roof,
+/turf/floor/wood/ship,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Lm" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/civ/gov,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ln" = (
+/obj/structure/printingpress,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Lo" = (
+/obj/structure/closet/anchored,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Lp" = (
+/obj/structure/filingcabinet,
+/obj/structure/lamp/lamp_small,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Lq" = (
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Lr" = (
+/obj/covers/roads/dirt,
+/obj/structure/grille/chainlinkfence/door{
+ dir = 4
+ },
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"Ls" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Lt" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Lu" = (
+/obj/structure/table/wood,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Lv" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central4,
+/obj/effect/floor_decal/industrial/warning,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Lw" = (
+/obj/structure/potted_plant{
+ dir = 9;
+ icon = 'icons/obj/flora/plants.dmi';
+ icon_state = "plant-37";
+ layer = 4
+ },
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Lx" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Ly" = (
+/obj/structure/props/computerprops/machine,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/table/modern/retable,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Lz" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LA" = (
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LB" = (
+/obj/structure/railing,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"LE" = (
+/obj/structure/anvil/steel,
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"LF" = (
+/obj/structure/railing,
+/obj/covers/wood,
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LG" = (
+/obj/structure/table/wood,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"LH" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/ornate,
+/area/caribbean/nomads/taiga)
+"LJ" = (
+/obj/covers/stonebrickfloor,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LK" = (
+/obj/covers/carpet/redcarpet,
+/obj/covers/wood/stairs{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"LL" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/item/weapon/reagent_containers/food/condiment/tealeaves,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"LM" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LN" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LO" = (
+/obj/structure/simple_door/key_door/soviet,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"LQ" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"LR" = (
+/turf/floor/dirt/winter,
+/area/caribbean)
+"LS" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/steel/alt,
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LT" = (
+/obj/structure/props/engineprops/steam,
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"LU" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/clothing/head/ww2/sov_ushanka,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"LW" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"LX" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"LY" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail/guard/max,
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"LZ" = (
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ma" = (
+/obj/structure/window/classic,
+/obj/roof,
+/obj/structure/curtain/leather,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Mb" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Md" = (
+/obj/structure/roof_support,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Me" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/marble{
+ amount = 50
+ },
+/obj/item/stack/material/marble{
+ amount = 50
+ },
+/obj/item/stack/material/marble{
+ amount = 50
+ },
+/obj/item/stack/material/marble{
+ amount = 50
+ },
+/obj/item/stack/material/marble{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Mg" = (
+/obj/structure/barricade/steel,
+/obj/structure/window_frame/metal,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Mh" = (
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"Mj" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Mk" = (
+/obj/structure/closet/crate/empty,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ml" = (
+/obj/structure/sink/kitchen{
+ layer = 5;
+ pixel_y = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Mm" = (
+/obj/structure/table/modern/table,
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1113;
+ name = "KGB telephone"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Mn" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Mo" = (
+/obj/structure/closet/anchored{
+ name = "locker"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Mp" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Mq" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/sov_ushanka_new,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Mr" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/sign/portrait/lenin{
+ pixel_x = 26
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ms" = (
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"Mt" = (
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Mu" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Mw" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/material/shovel/spade/small,
+/obj/item/weapon/material/pickaxe/steel,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Mx" = (
+/obj/structure/engine/external/steam,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"My" = (
+/obj/structure/barricade/steel,
+/obj/structure/sign/securearea{
+ desc = "No crossing of the stripped line without authorization.";
+ layer = 6.2;
+ name = "Restricted Area - Do not cross"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Mz" = (
+/obj/structure/filingcabinet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"MA" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"MB" = (
+/obj/structure/bed/chair/wood/bleacher{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"MC" = (
+/obj/structure/oven,
+/obj/effect/decal/cleanable/cobweb,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"MD" = (
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_y = -32;
+ layer = 3.4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ME" = (
+/obj/structure/closet/anchored,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"MF" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"MG" = (
+/obj/structure/closet/anchored,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"MH" = (
+/obj/covers/cement_wall{
+ color = "#5472C7"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"MI" = (
+/obj/structure/table/modern/table,
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"MJ" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"MK" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"ML" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"MM" = (
+/obj/covers/wood_wall/adjustable,
+/obj/roof,
+/turf/wall/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"MN" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"MO" = (
+/obj/structure/rails,
+/obj/structure/simple_door/key_door/custom/jail/steeljail,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"MP" = (
+/obj/structure/grille/ironfence,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"MQ" = (
+/obj/structure/vehicleparts/frame/car/van/rf,
+/obj/structure/vehicleparts/movement/reversed{
+ dir = 1;
+ icon_state = "wheel_t_dark"
+ },
+/obj/item/weapon/reagent_containers/glass/barrel/fueltank/tank/fueledgasoline,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"MR" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"MS" = (
+/obj/structure/closet/crate/rations/seeds/vegetables,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"MT" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"MU" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"MV" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"MW" = (
+/obj/structure/closet/crate/empty,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"MX" = (
+/obj/roof/concrete,
+/obj/structure/multiz/ladder/ww2/up,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"MZ" = (
+/obj/structure/window/barrier/railing/brick{
+ desc = "A bunch of bricks, can be used as a cover";
+ dir = 1
+ },
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Na" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/item/weapon/reagent_containers/food/snacks/hardtack,
+/obj/covers/carpet/purplecarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Nb" = (
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/structure/closet/fridge,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Nc" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/carpet/greencarpet,
+/area/caribbean/nomads/taiga)
+"Nd" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ne" = (
+/obj/structure/table/modern/table,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Nf" = (
+/obj/structure/bed/chair/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ng" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern/retable,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 3336;
+ name = "research and development telephone"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Nh" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Nj" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/item/weapon/reagent_containers/food/snacks/meatball,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Nk" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Nl" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Nm" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_large,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_large,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_large,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Nn" = (
+/obj/structure/table/modern,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/combat/modern,
+/obj/item/weapon/storage/firstaid/combat/modern,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Np" = (
+/obj/structure/anvil/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Nq" = (
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Nr" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ns" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Nt" = (
+/obj/structure/shopping_cart,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Nu" = (
+/obj/structure/table/modern,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Nv" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/structure/railing,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Nw" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Nx" = (
+/obj/structure/vending/sovafghan/soviet/ammo,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Ny" = (
+/obj/structure/window/classic/stone,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Nz" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/item/weapon/reagent_containers/food/drinks/can/milk,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"NA" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/covers/carpet,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"NB" = (
+/obj/covers/wood,
+/obj/structure/table/wood/flipped{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"NC" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/multiz/ladder/ww2/stairsup,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"NF" = (
+/obj/covers/wood,
+/obj/structure/table/modern/retable,
+/obj/item/weapon/key/civ/bank{
+ name = "bank key"
+ },
+/obj/item/weapon/key/civ/bank{
+ name = "bank key"
+ },
+/obj/item/weapon/key/civ/bank{
+ name = "bank key"
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"NG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central4{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"NH" = (
+/obj/structure/simple_door/key_door/anyone,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"NI" = (
+/obj/structure/multiz/ladder/ww2/up,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"NK" = (
+/obj/structure/rails/end{
+ icon_state = "rails_end";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"NL" = (
+/obj/structure/simple_door/key_door/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"NM" = (
+/obj/structure/vending/sovafghan/soviet/weapons,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"NN" = (
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"NO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/religious/woodcross2,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"NP" = (
+/obj/structure/closet/crate/rations/vegetables,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"NQ" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/full,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"NR" = (
+/obj/structure/grille/chainlinkfence/corner,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"NS" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"NT" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/gun/projectile/submachinegun/ak74,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/clothing/mask/gas/soviet/gp5,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/melee/classic_baton/guard,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"NU" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"NV" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"NW" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"NX" = (
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"NY" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Oa" = (
+/obj/roof/concrete,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 3335;
+ name = "mine telephone"
+ },
+/obj/structure/table/modern/retable,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ob" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/oil,
+/obj/roof/concrete,
+/obj/structure/roof_support/admin,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"Oc" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/left,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Od" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Oe" = (
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Of" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/bed/chair/office/light,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Og" = (
+/obj/item/weapon/reagent_containers/glass/barrel/vodka,
+/obj/structure/lamp/lamp_small,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Oh" = (
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Oi" = (
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Oj" = (
+/obj/structure/props/junk{
+ icon_state = "Junk_7"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ok" = (
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ol" = (
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 1;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Om" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"On" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/head/flatcap1,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Oo" = (
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Op" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher{
+ name = "wood bench";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Oq" = (
+/obj/structure/altar/stone,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Or" = (
+/obj/structure/bed/chair/office/light,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Os" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 8
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Ot" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ou" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Ov" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ow" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/structure/gate/blast/garage,
+/obj/structure/sign/traffic/central{
+ pixel_y = 15
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ox" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Oy" = (
+/obj/structure/religious/grave,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Oz" = (
+/obj/covers/wood,
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"OA" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/bartender,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"OB" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"OC" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/lamp/lamp_small{
+ dir = 8
+ },
+/obj/covers/steelplating/white,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"OD" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"OE" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"OF" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/effect/floor_decal/grass_edge/dead,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"OG" = (
+/obj/structure/simple_door/key_door/civ/mckellen{
+ unique_door_name = "Restauraunt"
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"OH" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"OI" = (
+/obj/structure/iv_drip,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"OJ" = (
+/obj/covers/steelplating,
+/obj/structure/shower,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"OK" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"OL" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"OM" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/sign/flag/sov{
+ pixel_x = 32
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ON" = (
+/obj/structure/optable,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"OO" = (
+/obj/structure/simple_door/key_door/anyone/wood{
+ name = "stall"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"OP" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay/black,
+/turf/floor/dirt,
+/area/caribbean/nomads/taiga)
+"OQ" = (
+/obj/structure/bed/chair/steel/alt{
+ dir = 4
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"OR" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/weapon/gun/projectile/pistol/makarov,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"OS" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/industrial4,
+/obj/item/clothing/suit/storage/coat/ww2/german/civ,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"OT" = (
+/obj/structure/lamp/lamp_small,
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"OU" = (
+/obj/structure/props/junk,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"OV" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/globe,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"OX" = (
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"OY" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"OZ" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Pa" = (
+/obj/structure/gate/barrier/vertical{
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Pb" = (
+/obj/structure/oven/stove/old,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Pd" = (
+/obj/structure/bed/chair/sofa/right,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Pe" = (
+/obj/structure/simple_door/key_door/custom/jail/steeljail/police,
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"Pf" = (
+/obj/structure/filingcabinet,
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Pg" = (
+/obj/structure/shower/bathtub/stone{
+ name = "Baptismal Font";
+ desc = "A baptismal font, for performing baptisms, though it looks suspiciously like an ancient bathtub..."
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ph" = (
+/obj/covers/wood,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Pi" = (
+/obj/structure/wild/tallgrass,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Pj" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/office/dark{
+ icon_state = "officechair_dark";
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Pk" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/red,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Pl" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Pm" = (
+/obj/structure/closet/fridge/icecreamcooler{
+ powerneeded = 5;
+ name = "refrigeration unit"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Pn" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/leatherboots,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Po" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Pp" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Pq" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/barbwire,
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Pr" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ps" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Pt" = (
+/obj/structure/bed/chair/wood,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Pu" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/wrench,
+/obj/item/weapon/wrench,
+/obj/item/weapon/wrench,
+/obj/item/weapon/hammer,
+/obj/item/weapon/hammer,
+/obj/item/weapon/hammer,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Pv" = (
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Px" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Py" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Pz" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"PA" = (
+/obj/covers/wood,
+/obj/structure/railing{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"PB" = (
+/obj/structure/bed/chair/commander/nvg{
+ anchored = 1
+ },
+/obj/structure/vehicleparts/frame/t72/right,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"PC" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"PD" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/stack/money/rubles{
+ amount = 40
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"PF" = (
+/obj/machinery/washing_machine,
+/obj/structure/lamp/lamp_small,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"PG" = (
+/obj/structure/closet/crate/cash_register,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"PH" = (
+/obj/structure/window/barrier/sandbag{
+ dir = 1;
+ icon_state = "sandbag"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"PI" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/structure/sign/portrait/stalin{
+ pixel_x = 26
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"PJ" = (
+/obj/effect/decal/cleanable/blood,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"PK" = (
+/obj/structure/sign/clock{
+ pixel_y = 32
+ },
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"PL" = (
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"PM" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/stamp/denied,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"PO" = (
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"PP" = (
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"PQ" = (
+/obj/item/stack/ore/coal,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"PR" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/electronics{
+ amount = 20
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"PS" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/rope{
+ amount = 30
+ },
+/obj/item/stack/material/rope{
+ amount = 30
+ },
+/obj/item/stack/material/rope{
+ amount = 30
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"PT" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/plastic{
+ amount = 15
+ },
+/obj/item/stack/material/plastic{
+ amount = 15
+ },
+/obj/item/stack/material/plastic{
+ amount = 15
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"PU" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"PV" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"PW" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/wool{
+ amount = 50
+ },
+/obj/item/stack/material/wool{
+ amount = 50
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"PY" = (
+/obj/structure/simple_door/wood2,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"PZ" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/structure/radio/receiver,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Qa" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/comfy/red,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Qb" = (
+/obj/structure/vehicleparts/frame/car/left/metal{
+ override_color = "#7f0000"
+ },
+/obj/structure/bed/roller,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Qc" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/under/tradwife,
+/obj/item/clothing/under/tradwife/red,
+/obj/item/clothing/under/tradwife/yellow,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Qd" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Qe" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/advsmall,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"Qf" = (
+/obj/structure/closet/fridge,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Qg" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Qh" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Qi" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/effect/floor_decal/grass_edge/dead{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Qj" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Qk" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/clothing/under/mechanic_outfit,
+/obj/roof/clay,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Ql" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/wild/smallbush/winter,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Qm" = (
+/obj/structure/lamp/lamp_big/alwayson,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Qn" = (
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Qo" = (
+/obj/structure/table/modern/table,
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"Qp" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/wrench,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Qq" = (
+/obj/covers/steelplating,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Qr" = (
+/obj/structure/simple_door/key_door/civ/paramedics,
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Qs" = (
+/obj/structure/bed/chair/wood/red,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Qt" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Qu" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Qv" = (
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/lemon,
+/obj/structure/closet/crate/empty,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Qw" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Qx" = (
+/obj/structure/closet/crate/empty,
+/obj/item/stack/material/wood/twentyfive,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/snacks/sausage/salted,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/item/weapon/reagent_containers/food/condiment/bsugar,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Qy" = (
+/obj/covers/cobblestone/stairs,
+/obj/item/weapon/key/civ/hall{
+ name = "City Soviet Key"
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Qz" = (
+/obj/structure/loom,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"QA" = (
+/obj/structure/filingcabinet,
+/obj/structure/sign/flag/sov{
+ pixel_x = 32
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"QB" = (
+/obj/structure/oven,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QC" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QE" = (
+/obj/structure/optable{
+ color = "#a7d1cc";
+ density = 0
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"QF" = (
+/obj/structure/simple_door/key_door/civ/businessblue{
+ unique_door_name = "Research and Development";
+ name = "Research and Development"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"QG" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/mug{
+ pixel_y = 6
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/mug{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/mug{
+ pixel_x = 3
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"QH" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/table/modern,
+/obj/structure/train_lever{
+ pixel_y = 13
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"QI" = (
+/obj/covers/wood,
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"QK" = (
+/obj/structure/wild/rock{
+ icon_state = "basalt1"
+ },
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"QL" = (
+/obj/structure/table/modern/table,
+/obj/roof,
+/obj/item/weapon/key/soviet,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"QM" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/clothing/shoes/color/brown,
+/obj/item/clothing/shoes/color/brown,
+/obj/item/clothing/shoes/black,
+/obj/item/clothing/shoes/black,
+/obj/item/clothing/shoes/color/white,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QN" = (
+/obj/structure/filingcabinet,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"QO" = (
+/turf/floor/beach/water/ice,
+/area/caribbean/nomads/taiga)
+"QQ" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QR" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"QS" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/barbwire,
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"QT" = (
+/obj/structure/grille/chainlinkfence,
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"QU" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"QV" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/multiz/ladder/ww2/stairsup,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/closet/crate/empty,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QW" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/covers/repairedfloor/ship{
+ icon = 'icons/turf/roofs.dmi';
+ icon_state = "blackclay_dm";
+ name = "black clay roof"
+ },
+/obj/structure/window/barrier/railing/brick{
+ dir = 4
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"QX" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/obj/structure/pepelsibirsk_radio/export_radio,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"QY" = (
+/obj/item/weapon/material/pickaxe/steel,
+/obj/structure/machinery/construction_crane/excavator{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"QZ" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Ra" = (
+/obj/covers/wood_wall/log/corner,
+/obj/roof/wood,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"Rb" = (
+/obj/structure/simple_door/key_door/soviet/guard,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Rc" = (
+/obj/structure/lamp/lamp_small,
+/obj/structure/table/modern/table,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Rd" = (
+/obj/structure/window/classic/metal,
+/obj/structure/curtain/closed/blue,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Re" = (
+/obj/structure/table/rack/shelf/wooden,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/item/weapon/grenade/flashbang,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Rf" = (
+/obj/structure/props/computerprops/terminal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/table/modern/retable,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Rg" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/obsidian{
+ amount = 50
+ },
+/obj/item/stack/material/obsidian{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Rh" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Rj" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1112;
+ name = "military command telephone"
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Rk" = (
+/obj/structure/wild/rock{
+ deadicon_state = "rock3";
+ icon_state = "rock3"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Rl" = (
+/obj/structure/wild/rock{
+ icon_state = "rock1"
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Rm" = (
+/obj/covers/wood,
+/obj/structure/table/wood/flipped{
+ dir = 1
+ },
+/obj/item/weapon/newspaper,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Rn" = (
+/obj/structure/rails,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ro" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Rp" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/office/dark{
+ icon_state = "officechair_dark";
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Rq" = (
+/obj/structure/bed/chair/steel/alt{
+ dir = 8
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Rt" = (
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ru" = (
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Rv" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/bread,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/fish,
+/obj/item/weapon/material/kitchen/utensil/knife/hook,
+/obj/item/weapon/material/kitchen/utensil/knife/hook,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Rw" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/turf/floor/dirt/ploughed,
+/area/caribbean/nomads/taiga)
+"Rx" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ry" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/tobacco{
+ amount = 50
+ },
+/obj/item/stack/material/tobacco{
+ amount = 50
+ },
+/obj/item/stack/material/tobacco{
+ amount = 50
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Rz" = (
+/obj/structure/table/rack/shelf/wooden,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"RA" = (
+/obj/structure/closet/crate/empty,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"RB" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RD" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/lamp/lamp_big,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/roofed)
+"RE" = (
+/obj/structure/railing,
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RF" = (
+/obj/structure/table/modern/table,
+/obj/structure/voting,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RG" = (
+/obj/structure/closet/crate/cart/steel,
+/obj/item/stack/ore/lead{
+ amount = 50
+ },
+/obj/item/stack/ore/lead{
+ amount = 50
+ },
+/obj/item/stack/ore/lead{
+ amount = 50
+ },
+/obj/item/stack/ore/lead{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"RH" = (
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/structure/props/piping/small/pipe,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"RI" = (
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/item/clothing/suit/storage/coat/japcoat2/brown,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/caribbean/nomads/taiga)
+"RK" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay/black,
+/obj/structure/pepelsibirsk_radio/supply_radio,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RL" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/key/civ/police,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RM" = (
+/obj/covers/wood,
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/red,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"RN" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9;
+ icon_state = "danger"
+ },
+/obj/structure/railing/steel{
+ dir = 8
+ },
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"RO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"RP" = (
+/obj/structure/mine_support,
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"RQ" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 4
+ },
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RR" = (
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/fancy,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RS" = (
+/obj/covers/wood,
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"RT" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ pixel_x = -12
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"RU" = (
+/obj/structure/grille/chainlinkfence/corner{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"RV" = (
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"RW" = (
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/obj/structure/window/barrier/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"RX" = (
+/obj/structure/filingcabinet,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"RY" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"RZ" = (
+/obj/structure/simple_door/key_door/civ/police,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Sa" = (
+/obj/structure/oven/fireplace,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Sb" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Sc" = (
+/obj/item/weapon/stool/wood,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Se" = (
+/obj/structure/multiz/ladder/ww2/stairsup{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/roofed)
+"Sf" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Sg" = (
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Sh" = (
+/obj/structure/table/rack/coatrack,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/item/clothing/under/victorian_prim,
+/obj/roof/clay,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Si" = (
+/obj/structure/bed/chair/wood/bleacher/r{
+ name = "wood bench";
+ icon_state = "bleacher_r";
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Sj" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Sk" = (
+/obj/structure/rails/end,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Sl" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/mine_support/stone/concrete,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Sm" = (
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Sn" = (
+/obj/structure/window/barrier/sandbag{
+ dir = 4;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/obj/structure/window/barrier/sandbag,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"So" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/potted_plant{
+ dir = 9;
+ icon = 'icons/obj/flora/plants.dmi';
+ icon_state = "plant-37";
+ layer = 4
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Sp" = (
+/obj/roof,
+/obj/structure/table/wood,
+/obj/item/weapon/telephone/wireless{
+ name = "warehouse telephone";
+ phonenumber = 2222
+ },
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Sq" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Sr" = (
+/obj/structure/bed/chair/wood/alt{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ss" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/material/kitchen/utensil/knife/butcher,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/structure/mill,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/structure/railing/steel,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"St" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4;
+ icon_state = "wooden_chair_red"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Su" = (
+/obj/structure/rails/turn/right{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Sv" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/prosthesis/pegleg,
+/obj/item/weapon/prosthesis/pegleg,
+/obj/item/weapon/prosthesis/pegleg,
+/obj/item/weapon/prosthesis/pegleg,
+/obj/item/weapon/prosthesis/woodfoot,
+/obj/item/weapon/prosthesis/woodfoot,
+/obj/item/weapon/prosthesis/woodfoot,
+/obj/item/weapon/prosthesis/woodfoot,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Sw" = (
+/obj/structure/engine/external/steam,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Sx" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ icon_state = "officechair_white"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Sy" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/potted_plant{
+ dir = 9;
+ icon = 'icons/obj/flora/plants.dmi';
+ icon_state = "plant-37";
+ layer = 4
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Sz" = (
+/obj/structure/table/modern/table,
+/obj/structure/cutting_board,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"SB" = (
+/obj/structure/closet/anchored,
+/obj/item/weapon/storage/belt/gulagguard/filled,
+/obj/item/weapon/gun/projectile/submachinegun/ak74,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"SC" = (
+/obj/structure/simple_door/key_door/anyone,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"SD" = (
+/obj/structure/table/modern/retable,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/weapon/melee/nightbaton,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"SE" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"SF" = (
+/obj/covers/cobblestone,
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/covers/jail,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"SG" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"SH" = (
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"SI" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/civ/hall,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"SJ" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = 14
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"SK" = (
+/obj/structure/sign/traffic/zebracrossing{
+ dir = 8;
+ icon_state = "zebra"
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"SL" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/blue,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"SM" = (
+/obj/structure/lamp/lamp_big/alwayson{
+ dir = 4;
+ icon_state = "tube"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"SN" = (
+/obj/item/weapon/legcuffs,
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/projectile/pistol/makarov/silenced,
+/obj/item/ammo_magazine/makarov,
+/obj/item/ammo_magazine/makarov,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"SO" = (
+/obj/structure/cremator,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"SP" = (
+/obj/structure/closet/crate/rations/biscuits,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"SQ" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/newspaper,
+/obj/item/weapon/newspaper,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"SR" = (
+/obj/structure/table/modern/table,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ST" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/closet/anchored,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/weapon/gun/projectile/semiautomatic/svd,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"SU" = (
+/obj/covers/cement_wall{
+ color = "#f3dd78"
+ },
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"SV" = (
+/obj/structure/window/classic/metal,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"SW" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"SY" = (
+/obj/structure/closet/crate/cart/steel,
+/obj/item/stack/ore/silver{
+ amount = 50
+ },
+/obj/item/stack/ore/silver{
+ amount = 50
+ },
+/obj/item/stack/ore/silver{
+ amount = 50
+ },
+/obj/item/stack/ore/silver{
+ amount = 50
+ },
+/obj/item/stack/ore/tin{
+ amount = 50
+ },
+/obj/item/stack/ore/tin{
+ amount = 50
+ },
+/obj/item/stack/ore/tin{
+ amount = 50
+ },
+/obj/item/stack/ore/tin{
+ amount = 50
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"SZ" = (
+/obj/structure/props/random/container,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Ta" = (
+/obj/structure/oven/stove,
+/obj/item/stack/ore/coal{
+ amount = 50
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Tb" = (
+/turf/wall/rockwall,
+/area/caribbean/nomads/taiga)
+"Td" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"Te" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Tf" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/greencarpet,
+/obj/item/weapon/key/civ/gov,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Tg" = (
+/obj/covers/steelplating,
+/obj/structure/multiz/ladder/ww2,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Th" = (
+/obj/structure/sign/traffic/central{
+ dir = 4;
+ pixel_x = -16
+ },
+/turf/floor/plating/road,
+/area/caribbean)
+"Ti" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Tk" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/item/weapon/reagent_containers/food/drinks/tea,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Tl" = (
+/obj/structure/chem_master,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Tm" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/mine_support/stone/ionic,
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"Tn" = (
+/obj/structure/closet/crate/empty,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Tp" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Tq" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 4;
+ layer = 4.1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Tr" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/water,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ts" = (
+/obj/structure/props/random/container/five,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Tt" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel,
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Tu" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/yellow,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Tv" = (
+/obj/structure/fitness/punchingbag,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Tw" = (
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Tx" = (
+/obj/structure/props/engineprops/turbine,
+/obj/covers/concretefloor,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ty" = (
+/obj/structure/closet/anchored,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Tz" = (
+/obj/machinery/washing_machine,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"TA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/transformer,
+/obj/structure/props/piping/pipe/under{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TB" = (
+/obj/covers/wood,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TC" = (
+/obj/structure/table/modern/table,
+/obj/structure/radio/transmitter_receiver,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"TD" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 4
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TE" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"TF" = (
+/obj/structure/railing/steel,
+/obj/structure/table/modern/retable,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TG" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TH" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"TI" = (
+/obj/covers/carpet/blackcarpet,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TJ" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 8
+ },
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TK" = (
+/obj/structure/largecrate,
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"TL" = (
+/obj/covers/cobblestone/stairs,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"TN" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pen,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/turf/floor/wood,
+/area/caribbean/roofed)
+"TO" = (
+/obj/structure/heatsource,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TP" = (
+/obj/covers/wood,
+/obj/structure/table/wood/flipped,
+/obj/item/weapon/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TQ" = (
+/obj/structure/bed/chair,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"TR" = (
+/obj/structure/table/wood,
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"TS" = (
+/obj/covers/steelplating,
+/obj/structure/shower,
+/obj/structure/curtain/open/shower,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TT" = (
+/obj/covers/cement_wall,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"TU" = (
+/obj/covers/wood_wall/log,
+/obj/roof/wood,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"TV" = (
+/obj/covers/wood,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/covers/carpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"TW" = (
+/obj/structure/gatecontrol/blastcontrol/garage{
+ pixel_y = 24;
+ distance = 6
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"TX" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/table/modern,
+/obj/structure/train_lever{
+ pixel_y = 13
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"TY" = (
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet,
+/turf/floor/plating/concrete,
+/area/caribbean/roofed)
+"TZ" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood/red{
+ dir = 1
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Ua" = (
+/obj/roof/concrete,
+/obj/structure/simple_door/key_door/civ/police,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Ub" = (
+/obj/structure/rails,
+/obj/effect/floor_decal/steeldecal/steel_decals_central2,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Uc" = (
+/obj/structure/sign/traffic/side{
+ pixel_y = 16
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ud" = (
+/obj/item/weapon/telephone/mobile/police{
+ pixel_y = 6
+ },
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ue" = (
+/obj/structure/filingcabinet,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"Uf" = (
+/obj/item/weapon/material/pickaxe/jackhammer,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ug" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/modern/table,
+/obj/item/weapon/telephone/wireless{
+ name = "lead editor's telephone";
+ phonenumber = 2222
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Uh" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/office/light{
+ dir = 1;
+ icon_state = "officechair_white"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ui" = (
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"Uj" = (
+/obj/structure/wild/smallbush/winter,
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"Uk" = (
+/obj/structure/vending/sovafghan/soviet/apparel,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Ul" = (
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Un" = (
+/obj/structure/wild/rock,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Uo" = (
+/obj/structure/grille/metalsheetfence,
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Up" = (
+/obj/roof/clay/black,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"Uq" = (
+/obj/structure/props/car_wreck/truck{
+ dir = 4
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ur" = (
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Us" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Ut" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/meat,
+/obj/item/weapon/material/kitchen/utensil/knife/hook,
+/obj/item/weapon/material/kitchen/utensil/knife/hook,
+/obj/item/weapon/material/kitchen/utensil/knife/hook,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Uu" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/structure/railing/steel,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Uv" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Uw" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Ux" = (
+/obj/structure/mine_support,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Uy" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/floor/plating/stone_old,
+/area/caribbean/roofed)
+"Uz" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"UA" = (
+/obj/structure/simple_door/key_door/soviet,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"UB" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"UC" = (
+/obj/structure/filingcabinet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"UD" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"UE" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"UG" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/office/light,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"UH" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"UI" = (
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"UJ" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"UK" = (
+/obj/structure/table/wood,
+/obj/structure/cutting_board,
+/obj/structure/closet/cabinet/ceiling{
+ pixel_y = 12
+ },
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_large,
+/obj/item/weapon/reagent_containers/glass/small_pot/copper_small,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"UL" = (
+/obj/covers/wood,
+/obj/structure/printingpress,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"UM" = (
+/obj/structure/gate/blast/garage{
+ dir = 4
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"UN" = (
+/obj/covers/carpet/greencarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"UO" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"UP" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/turf/floor/dirt/dust,
+/area/caribbean/nomads/taiga)
+"UQ" = (
+/obj/structure/table/modern/table,
+/obj/structure/railing,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"UR" = (
+/obj/covers/repairedfloor,
+/turf/floor/trench,
+/area/caribbean/nomads/taiga)
+"US" = (
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"UT" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel{
+ amount = 500
+ },
+/obj/item/stack/material/steel{
+ amount = 500
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"UU" = (
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"UV" = (
+/turf/floor/beach/water/deep/saltwater,
+/area/caribbean/nomads/taiga)
+"UW" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/closet/crate/rations/seeds/vegetables,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"UX" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"UY" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"UZ" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/structure/closet/crate,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Va" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 8;
+ icon_state = "wooden_chair_red"
+ },
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Vb" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Vc" = (
+/obj/structure/cutting_board,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"Vd" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 4;
+ icon_state = "wooden_chair_red"
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ve" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/roof/clay/black,
+/turf/wall/stone/stonebrick,
+/area/caribbean/nomads/taiga)
+"Vf" = (
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Vg" = (
+/obj/structure/roof_support,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Vh" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/covers/cobblestone,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Vi" = (
+/obj/covers/wood_ship,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Vj" = (
+/obj/structure/torch_stand{
+ dir = 8
+ },
+/obj/structure/table/rack/coatrack,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Vk" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Vl" = (
+/obj/structure/simple_door/key_door/civ/inn,
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Vm" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/steel/alt{
+ dir = 8
+ },
+/obj/roof/clay/black,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Vn" = (
+/obj/effect/spawner/mobspawner/deer/male,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Vo" = (
+/obj/structure/pot,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/roof/clay,
+/turf/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/caribbean/nomads/taiga)
+"Vp" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Vq" = (
+/obj/structure/sink/puddle,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"Vr" = (
+/obj/structure/table/rack/shelf/wooden,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/under/ww2/soviet_nkvd/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/head/ww2/nkvd_cap/kgb,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/item/clothing/shoes/jackboots/soviet,
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Vs" = (
+/obj/structure/filingcabinet,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Vt" = (
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/table/modern/retable,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Vv" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/table/rack/coatrack,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat2,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Vw" = (
+/obj/structure/closet/fridge/icebox,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Vx" = (
+/obj/covers/jail/steeljail,
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"Vy" = (
+/obj/structure/lamp/lamp_big,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Vz" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/civfg,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"VA" = (
+/obj/structure/closet/crate/rations/fruits,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"VB" = (
+/obj/item/weapon/material/pickaxe/steel,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"VC" = (
+/obj/covers/cobblestone/stairs,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"VD" = (
+/obj/structure/table/rack/shelf/store,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = -5;
+ pixel_y = -9
+ },
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = 9;
+ pixel_y = -9
+ },
+/obj/item/weapon/storage/fancy/cigarettes{
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"VE" = (
+/obj/effect/decal/cleanable/flour,
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+"VF" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet/corners{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet/corners{
+ dir = 10
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"VG" = (
+/obj/structure/roof_support,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"VH" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"VI" = (
+/obj/structure/machinery/construction_crane,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"VJ" = (
+/obj/structure/bed/chair/office/light,
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"VK" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"VL" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/curtain/open/bed,
+/obj/structure/railing/steel{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"VM" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"VN" = (
+/obj/structure/furnace/kiln/stone,
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"VO" = (
+/obj/structure/wild/rock,
+/obj/item/stack/ore/gold,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"VP" = (
+/obj/structure/barricade/steel,
+/obj/structure/window_frame/metal,
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"VQ" = (
+/obj/structure/roof_support,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"VS" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/item/weapon/reagent_containers/glass/barrel/modern/gasoline,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"VV" = (
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"VW" = (
+/obj/structure/props/junk{
+ icon_state = "Junk_11"
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"VX" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/simple_door/wood2,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"VY" = (
+/obj/structure/lamp/lamp_small/tank/red/police{
+ dir = 8;
+ icon_state = "bulb";
+ name = "ambulance lights"
+ },
+/obj/structure/bed/chair/carseat/right{
+ dir = 1;
+ icon_state = "carseat_right"
+ },
+/obj/structure/vehicleparts/frame/car/van/rfc{
+ doorcode = 12443;
+ override_color = "#7F0000"
+ },
+/obj/item/weapon/telephone/mobile/police,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"VZ" = (
+/obj/structure/pot,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Wb" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/head/ww2/sov_pilotka,
+/obj/item/clothing/shoes/leatherboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/accessory/medal/soviet/ww2/For_the_defence_of_Stalingrad,
+/obj/item/clothing/accessory/medal/soviet/ww2/Order_of_the_Red_Star,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Wc" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 4
+ },
+/obj/structure/railing/steel{
+ dir = 4
+ },
+/obj/structure/railing/steel,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wd" = (
+/obj/structure/cannon/modern/tank/autoloader/t90a,
+/obj/structure/shellrack/autoloader/full125,
+/obj/structure/vehicleparts/frame/t72,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"We" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/structure/lamp/lamp_small,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wf" = (
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"Wg" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/glasses/pilot,
+/obj/item/clothing/glasses/pilot,
+/obj/item/weapon/hammer/modern,
+/obj/item/weapon/hammer/modern,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Wh" = (
+/obj/structure/table/modern,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 3332;
+ name = "pepelsibirsk power plant telephone"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Wi" = (
+/obj/covers/steelplating,
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8;
+ icon_state = "danger"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4;
+ icon_state = "danger"
+ },
+/obj/structure/table/modern/retable,
+/obj/covers/jail/steeljail{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars_bank"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wj" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Wk" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wl" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/shoes/blackboots,
+/obj/item/clothing/shoes/blackboots,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/head/flatcap1,
+/obj/item/clothing/head/flatcap1,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Wn" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Wo" = (
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/obj/structure/mine_support/stone/concrete,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Wp" = (
+/obj/covers/wood,
+/obj/structure/bed/wood,
+/obj/item/weapon/bedsheet/blue,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wq" = (
+/obj/structure/window/classic/brickfull,
+/obj/structure/railing/steel,
+/obj/structure/curtain/open/bed,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Wr" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"Ws" = (
+/obj/structure/table/modern/table,
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/paper_bin/police,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/mug{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Wt" = (
+/obj/structure/table/rack/shelf,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Wu" = (
+/obj/item/stack/ore/charcoal{
+ amount = 50
+ },
+/obj/structure/oven/stove/old,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"Wv" = (
+/obj/structure/window/barrier/railing/brick,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Ww" = (
+/obj/covers/wood,
+/obj/structure/bed/chair/sofa/right,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wx" = (
+/obj/structure/window/barrier/railing/brick{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Wy" = (
+/obj/structure/roof_support,
+/obj/covers/brick_wall,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Wz" = (
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"WA" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/roof/concrete,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"WB" = (
+/obj/structure/shopping_cart,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"WC" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 8;
+ icon_state = "wooden_chair_red"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"WD" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/item/weapon/reagent_containers/food/snacks/rice,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"WE" = (
+/obj/structure/props/coatrack,
+/obj/item/clothing/under/civfr,
+/obj/item/clothing/under/ww2/civ2,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"WF" = (
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/obj/structure/gatecontrol/blastcontrol/garage,
+/obj/structure/table/modern,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"WG" = (
+/obj/structure/grille/chainlinkfence{
+ icon_state = "chainlinkfence";
+ dir = 8
+ },
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"WH" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"WI" = (
+/obj/structure/furnace/blast_furnace,
+/obj/roof/concrete,
+/turf/floor/plating/tiled,
+/area/caribbean/nomads/taiga)
+"WJ" = (
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"WK" = (
+/obj/covers/steelplating,
+/obj/structure/closet/crate,
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"WL" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"WM" = (
+/obj/covers/wood,
+/obj/structure/closet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/under/mechanic_outfit,
+/obj/item/clothing/head/flatcap1,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"WO" = (
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/window/barrier/concrete{
+ dir = 1
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"WP" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/ww2/civ2,
+/obj/item/clothing/shoes/laceup,
+/obj/covers/carpet/redcarpet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"WQ" = (
+/obj/structure/fuelpump,
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"WR" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"WS" = (
+/obj/structure/sign/flag/sov{
+ pixel_y = 32
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"WT" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"WU" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/steelplating,
+/obj/structure/table/modern,
+/obj/item/weapon/attachment/scope/adjustable/binoculars/binoculars,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"WV" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/structure/closet/crate,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"WW" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/tin{
+ amount = 25
+ },
+/obj/item/stack/material/tin{
+ amount = 25
+ },
+/obj/item/stack/material/tin{
+ amount = 25
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"WX" = (
+/obj/structure/table/modern,
+/obj/item/weapon/key/civ/paramedics,
+/obj/item/weapon/key/civ/paramedics,
+/obj/item/weapon/key/civ/paramedics,
+/obj/item/weapon/key/civ/paramedics,
+/obj/item/weapon/key/civ/paramedics,
+/obj/item/weapon/key/civ/paramedics,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"WY" = (
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/table/modern,
+/obj/structure/lamp/lamp_big{
+ icon_state = "tube";
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"WZ" = (
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Xa" = (
+/obj/structure/closet/anchored,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/ammo_magazine/svd,
+/obj/item/weapon/gun/projectile/semiautomatic/svd,
+/obj/structure/window/barrier/railing/stone{
+ dir = 8
+ },
+/obj/structure/window/barrier/railing/stone,
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Xb" = (
+/obj/structure/table/modern/table,
+/obj/structure/closet/crate/cash_register,
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/item/stack/money/rubles{
+ amount = 50
+ },
+/obj/covers/carpet/greencarpet,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Xe" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/cement_wall,
+/obj/roof/concrete,
+/turf/wall/cement,
+/area/caribbean/nomads/taiga)
+"Xf" = (
+/obj/covers/wood,
+/obj/structure/table/modern/table,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Xg" = (
+/obj/structure/table/modern/table,
+/obj/covers/jail/steeljail,
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Xh" = (
+/obj/structure/gate/barrier,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Xi" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/structure/railing/steel,
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"Xj" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Xk" = (
+/obj/covers/wood,
+/obj/covers/cobblestone/stairs{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Xm" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Xn" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Xo" = (
+/obj/structure/closet/crate/bin,
+/obj/roof/clay,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Xp" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay/black,
+/obj/item/weapon/telephone/wireless{
+ phonenumber = 1114;
+ name = "economic ministry telephone"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Xq" = (
+/turf/floor/winter,
+/area/caribbean)
+"Xr" = (
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Xs" = (
+/obj/structure/table/modern/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Xt" = (
+/obj/structure/lamp/lamp_big,
+/turf/floor/plating/road,
+/area/caribbean/roofed)
+"Xu" = (
+/obj/structure/bed/chair{
+ icon_state = "chair";
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Xv" = (
+/obj/structure/pot,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/roof/clay,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Xx" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/clay/clayjug,
+/obj/item/weapon/reagent_containers/food/drinks/clay/clayjug,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Xz" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/laceup,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"XA" = (
+/obj/structure/simple_door/key_door/anyone/doubledoor/wood,
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"XB" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/bed/chair/wood{
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"XC" = (
+/obj/structure/bed/chair/wood/alt,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"XD" = (
+/obj/structure/lamp/lamp_big,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"XE" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"XF" = (
+/obj/structure/filingcabinet,
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"XG" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"XH" = (
+/obj/structure/closet/crate/footlocker,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"XI" = (
+/obj/structure/wild/smallbush/winter,
+/obj/effect/spawner/mobspawner/sheep_m,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"XK" = (
+/obj/structure/potted_plant{
+ dir = 9;
+ icon = 'icons/obj/flora/plants.dmi';
+ icon_state = "plant-37";
+ layer = 4
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"XL" = (
+/obj/covers/wood/alt,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"XM" = (
+/obj/item/weapon/telephone/public,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"XN" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big,
+/obj/structure/sign/portrait/stalin{
+ pixel_y = -30
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"XO" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/kitchen/wood_bowl,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/roof/wood,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"XP" = (
+/obj/structure/closet/anchored,
+/obj/item/clothing/under/farmer_outfit,
+/obj/item/clothing/under/farmer_outfit,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/shoes/heavyboots/wrappedboots,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/suit/storage/coat/ww2/sovcoat,
+/obj/item/clothing/mask/shemagh/redkerchief,
+/obj/item/clothing/mask/shemagh/redkerchief,
+/obj/item/weapon/plough/iron,
+/obj/item/weapon/plough/iron,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/material/shovel/trench,
+/obj/item/weapon/storage/backpack/satchel,
+/obj/item/weapon/storage/backpack/satchel,
+/obj/item/weapon/storage/belt/leather,
+/obj/item/weapon/storage/belt/leather,
+/obj/item/clothing/head/ww2/sov_ushanka/down,
+/obj/item/clothing/head/ww2/sov_ushanka/down,
+/obj/item/weapon/material/pitchfork,
+/obj/item/weapon/material/pitchfork,
+/obj/item/weapon/storage/seed_collector,
+/obj/item/weapon/storage/seed_collector,
+/obj/structure/lamp/lamp_small{
+ icon_state = "bulb";
+ dir = 8
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"XQ" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/under/afghanka,
+/obj/item/clothing/under/afghanka,
+/obj/item/clothing/under/afghanka,
+/obj/item/clothing/under/afghanka,
+/obj/item/clothing/under/afghanka,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/item/clothing/suit/storage/jacket/doctor,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"XR" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"XS" = (
+/obj/structure/roof_support,
+/obj/covers/wood_wall/adjustable,
+/obj/roof/clay,
+/turf/wall/wood,
+/area/caribbean/nomads/taiga)
+"XU" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"XV" = (
+/obj/effect/spawner/objspawner/pine/snow,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"XW" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/barbwire{
+ icon_state = "barbwire";
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/barricade/antitank,
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"XX" = (
+/obj/structure/table/modern/table,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/knife/steel,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"XY" = (
+/obj/structure/window/barrier/concrete,
+/obj/structure/mine_support/stone/concrete,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"XZ" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/wood,
+/area/caribbean/pirates/ship/voyage/lower/storage)
+"Yb" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/structure/lamp/lamp_big,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Yc" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Yd" = (
+/obj/covers/wood,
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Ye" = (
+/obj/structure/table/rack/shelf,
+/obj/roof/concrete,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/obj/item/weapon/key/soviet,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Yf" = (
+/obj/covers/wood,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/matchbox,
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Yg" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/green,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodv,
+/area/caribbean/nomads/taiga)
+"Yh" = (
+/turf/floor/winter/grass,
+/area/caribbean)
+"Yi" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Yk" = (
+/obj/structure/simple_door/key_door/civ/mckellen{
+ unique_door_name = "STAFF ONLY"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Yl" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ icon_state = "wooden_chair"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Yn" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"Yo" = (
+/obj/covers/concretefloor,
+/obj/structure/railing/steel,
+/obj/structure/railing/steel{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Yp" = (
+/obj/structure/vending/sovafghan/soviet/apparel,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Yq" = (
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Yr" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone{
+ icon_state = "stone";
+ dir = 1
+ },
+/obj/roof/concrete,
+/obj/structure/window/barrier/sandbag{
+ dir = 8;
+ icon_state = "sandbag"
+ },
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Ys" = (
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/item/weapon/enginemaker,
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"Yt" = (
+/obj/structure/table/wood,
+/obj/structure/grille/ironfence{
+ desc = "Iron bars.";
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "bars";
+ name = "iron bars"
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Yu" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 8;
+ pixel_x = 10
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Yv" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/turf/floor/trench,
+/area/caribbean/nomads/taiga)
+"Yw" = (
+/obj/structure/simple_door/key_door/anyone/doubledoor/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Yx" = (
+/obj/item/flashlight/lamp/oldlamp,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/roof/clay,
+/turf/floor/wood/alt/two,
+/area/caribbean/nomads/taiga)
+"Yy" = (
+/obj/item/weapon/reagent_containers/glass/barrel/modern/sterilizine,
+/obj/roof/concrete,
+/obj/structure/roof_support/admin,
+/turf/floor/plating,
+/area/caribbean/nomads/taiga)
+"Yz" = (
+/obj/structure/bed/chair/steel/alt,
+/obj/covers/carpet/blackcarpet,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"YA" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble/decorative_tile,
+/area/caribbean/nomads/taiga)
+"YB" = (
+/obj/structure/wild/rock{
+ deadicon_state = "rock3";
+ icon_state = "rock3"
+ },
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"YC" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/covers/carpet/redcarpet,
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"YD" = (
+/turf/floor/trench,
+/area/caribbean/nomads/taiga)
+"YE" = (
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"YF" = (
+/obj/structure/closet/crate/empty/large,
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/item/stack/material/steel{
+ amount = 100
+ },
+/obj/roof/clay,
+/turf/floor/plating/road,
+/area/caribbean/nomads/taiga)
+"YG" = (
+/obj/structure/table/rack/shelf/store,
+/obj/covers/carpet/redcarpet,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/item/weapon/reagent_containers/food/snacks/spaghetti,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"YH" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"YI" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"YJ" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"YK" = (
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/spline/plain,
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"YL" = (
+/obj/structure/grille/chainlinkfence{
+ dir = 4;
+ icon_state = "chainlinkfence"
+ },
+/obj/structure/wild/tallgrass2,
+/turf/floor/winter/grass,
+/area/caribbean/nomads/taiga)
+"YM" = (
+/obj/structure/animalspawner/bearcave/full,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"YN" = (
+/obj/structure/closet/anchored{
+ name = "locker"
+ },
+/obj/item/weapon/gun/projectile/submachinegun/ak74/aks74,
+/obj/item/ammo_magazine/ak74,
+/obj/item/ammo_magazine/ak74,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/ammo_magazine/ak74/rubber,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/chemical/xylyl_bromide,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/item/weapon/grenade/coldwar/rgd5,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"YO" = (
+/obj/structure/railing/steel{
+ dir = 8;
+ icon_state = "railing0"
+ },
+/obj/covers/catwalk,
+/turf/floor/beach/water/deep/swamp{
+ name = "deep sewer water"
+ },
+/area/caribbean/roofed)
+"YP" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/roof/clay/black,
+/turf/floor/plating/marble,
+/area/caribbean/nomads/taiga)
+"YQ" = (
+/obj/structure/grille/chainlinkfence,
+/obj/structure/grille/chainlinkfence/corner,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"YR" = (
+/obj/structure/chemical_dispenser/drugs,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"YS" = (
+/obj/structure/window/barrier/concrete{
+ dir = 8
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"YU" = (
+/obj/structure/vending/sovafghan/soviet/apparel,
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"YV" = (
+/obj/covers/cobblestone/stairs,
+/obj/structure/window/barrier/concrete{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"YW" = (
+/obj/covers/wood/stairs{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"YX" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/covers/carpet/greencarpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"YZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Za" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/roof,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Zb" = (
+/obj/covers/brick_wall,
+/obj/structure/window/classic/brickfull,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Zc" = (
+/obj/covers/carpet/redcarpet,
+/obj/structure/simple_door/key_door/civ/room2,
+/obj/roof/clay/black,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Zd" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Ze" = (
+/obj/structure/printingpress,
+/turf/floor/wood,
+/area/caribbean/roofed)
+"Zf" = (
+/obj/structure/railing,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 12
+ },
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Zg" = (
+/obj/structure/lamp/lamp_big,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Zh" = (
+/obj/structure/shower{
+ icon_state = "shower";
+ dir = 1
+ },
+/obj/structure/lamp/lamp_big{
+ dir = 8
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Zi" = (
+/obj/structure/oven/stove/old,
+/obj/covers/steelplating,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Zk" = (
+/obj/covers/wood_ship,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Zl" = (
+/obj/structure/shower{
+ dir = 4;
+ icon_state = "shower"
+ },
+/turf/floor/plating/steel,
+/area/caribbean/roofed)
+"Zm" = (
+/obj/structure/table/fancy,
+/obj/structure/potted_plant{
+ dir = 5;
+ icon_state = "potted_plant"
+ },
+/obj/roof/clay,
+/turf/floor/wood/fancywood,
+/area/caribbean/nomads/taiga)
+"Zn" = (
+/obj/covers/cobblestone/stairs{
+ dir = 4;
+ icon_state = "rampup"
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"Zp" = (
+/obj/structure/table/modern/table,
+/obj/roof,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"Zq" = (
+/obj/structure/table/rack/shelf,
+/obj/item/stack/material/steel/twentyfive,
+/obj/item/stack/material/steel/twentyfive,
+/obj/item/stack/material/barbwire/ten,
+/obj/item/stack/material/barbwire/ten,
+/obj/item/stack/material/barbwire/ten,
+/obj/item/stack/material/barbwire/ten,
+/obj/item/stack/material/barbwire/ten,
+/obj/roof/concrete,
+/turf/floor/plating/tiled/dark,
+/area/caribbean/nomads/taiga)
+"Zr" = (
+/obj/covers/cement_wall/horizontal,
+/obj/roof/concrete,
+/turf/wall/concrete_blocks,
+/area/caribbean/nomads/taiga)
+"Zs" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/box/sterglove,
+/obj/item/weapon/storage/box/sterglove,
+/obj/item/weapon/storage/box/sterglove,
+/obj/item/weapon/storage/box/stermask,
+/obj/item/weapon/storage/box/stermask,
+/obj/item/weapon/storage/box/stermask,
+/obj/roof/concrete,
+/turf/floor/plating/white,
+/area/caribbean/nomads/taiga)
+"Zt" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/roof_support{
+ icon_state = "support_v"
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"Zu" = (
+/obj/structure/lamp/lamp_small,
+/obj/covers/carpet,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Zv" = (
+/obj/structure/lamp/lamp_small{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"Zx" = (
+/obj/structure/gate/blast/open,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Zy" = (
+/obj/structure/table/rack/shelf,
+/obj/structure/railing/steel,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"Zz" = (
+/obj/structure/roof_support,
+/obj/roof/wood,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"ZA" = (
+/obj/structure/table/rack/shelf/store,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/item/weapon/storage/fancy/picklejar,
+/obj/covers/carpet/redcarpet,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ZB" = (
+/obj/covers/wood,
+/obj/covers/carpet/redcarpet,
+/obj/effect/floor_decal/carpet,
+/obj/structure/sign/portrait/stalin{
+ pixel_y = 28
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZC" = (
+/obj/structure/railing/steel{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/roofed)
+"ZD" = (
+/obj/structure/bed/chair/wood/bleacher/l{
+ name = "wood bench";
+ icon_state = "bleacher_l";
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/no_mans_land/invisible_wall/taiga)
+"ZE" = (
+/obj/structure/mine_support/stone/concrete,
+/obj/covers/steelplating,
+/obj/structure/table/modern,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZF" = (
+/obj/structure/simple_door/key_door/anyone/wood,
+/obj/roof/clay,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ZG" = (
+/obj/covers/carpet/bluecarpet,
+/obj/covers/carpet/redcarpet,
+/obj/structure/filingcabinet,
+/obj/roof/concrete,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ZH" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/wild/smallbush/winter,
+/turf/floor/dirt/winter,
+/area/caribbean/nomads/taiga)
+"ZI" = (
+/obj/structure/mine_support/stone/ionic/rock,
+/obj/roof/clay,
+/turf/floor/plating/cobblestone/vertical/dark,
+/area/caribbean/nomads/taiga)
+"ZJ" = (
+/obj/covers/wood,
+/obj/structure/lamp/lamp_big{
+ dir = 1
+ },
+/obj/structure/table/fancy,
+/obj/item/weapon/reagent_containers/food/drinks/tea{
+ pixel_x = 7
+ },
+/obj/item/weapon/reagent_containers/food/drinks/teapot/filled{
+ pixel_x = -6
+ },
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZK" = (
+/obj/structure/potted_plant,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ZL" = (
+/obj/structure/props/computerprops/research,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ZM" = (
+/obj/structure/window/barrier/concrete,
+/obj/covers/jail/steeljail,
+/obj/structure/window/classic/portholefull,
+/obj/structure/window/barrier/railing/stone,
+/obj/structure/window/barrier/railing/stone{
+ dir = 1
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 8;
+ icon_state = "stone"
+ },
+/obj/structure/window/barrier/railing/stone{
+ dir = 4;
+ icon_state = "stone"
+ },
+/obj/roof/concrete,
+/turf/floor/plating/concrete,
+/area/caribbean/nomads/taiga)
+"ZN" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ZO" = (
+/obj/covers/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/industrial5,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/suit/storage/coat/ruscoat/grey,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZP" = (
+/obj/covers/carpet/greencarpet,
+/obj/structure/table/modern/table,
+/obj/roof/clay,
+/turf/floor/wood,
+/area/caribbean/nomads/taiga)
+"ZQ" = (
+/obj/effect/spawner/mobspawner/sheep_f,
+/turf/floor/winter,
+/area/caribbean/nomads/taiga)
+"ZR" = (
+/obj/structure/window/barrier/railing/stone{
+ dir = 4
+ },
+/turf/floor/plating/cobblestone/vertical,
+/area/caribbean/nomads/taiga)
+"ZS" = (
+/obj/structure/lamp/lamp_small{
+ dir = 1
+ },
+/obj/roof/concrete,
+/turf/floor/plating/tiled/woodh,
+/area/caribbean/nomads/taiga)
+"ZT" = (
+/obj/structure/bed/chair/wood/red{
+ dir = 1
+ },
+/obj/covers/wood,
+/obj/covers/carpet,
+/obj/roof/concrete,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZU" = (
+/obj/structure/multiz/ladder/ww2/stairsdown{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/roof/clay,
+/turf/floor/broken_floor,
+/area/caribbean/nomads/taiga)
+"ZV" = (
+/obj/structure/table/modern/table,
+/obj/structure/closet/cabinet/ceiling,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ZW" = (
+/obj/structure/simple_door/key_door/civ/businessblue{
+ unique_door_name = "Research and Development";
+ name = "Research and Development"
+ },
+/obj/covers/carpet/blackcarpet,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 4
+ },
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ZX" = (
+/obj/structure/props/computerprops/modern/a10,
+/obj/roof/concrete,
+/turf/floor/plating/steel,
+/area/caribbean/nomads/taiga)
+"ZZ" = (
+/obj/covers/cobblestone/stairs{
+ dir = 1
+ },
+/obj/roof,
+/turf/floor/wood/alt,
+/area/caribbean/nomads/taiga)
+
+(1,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+yF
+yF
+xE
+Be
+"}
+(2,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+yF
+xE
+xE
+"}
+(3,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+yF
+yF
+yF
+"}
+(4,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+yF
+"}
+(5,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(6,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(7,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(8,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(9,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(10,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(11,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(12,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(13,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(14,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Se
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(15,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+rt
+rt
+rt
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Gi
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(16,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+yb
+rt
+rt
+rt
+Ee
+Ee
+Ee
+Ee
+Ee
+Gk
+RD
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(17,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+rt
+rt
+rt
+Ee
+Ee
+Ee
+Ee
+Ee
+eT
+eT
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(18,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(19,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+iT
+iT
+iT
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(20,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+yb
+iT
+iT
+iT
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Xt
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(21,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+iT
+iT
+iT
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(22,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(23,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+dl
+dl
+dl
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(24,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+yb
+dl
+dl
+dl
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Xt
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(25,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+dl
+dl
+IX
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(26,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(27,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+mV
+mV
+mV
+mV
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(28,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+va
+va
+va
+va
+dA
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+yb
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Xt
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(29,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(30,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(31,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(32,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+ZC
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+yb
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Xt
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(33,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+Ru
+Ru
+Ru
+vZ
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+it
+it
+it
+it
+it
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+ma
+ma
+ma
+Ee
+Ee
+Ee
+ma
+ma
+ma
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(34,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Ee
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(35,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(36,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(37,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(38,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(39,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(40,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(41,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(42,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(43,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(44,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(45,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+IU
+IU
+IU
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(46,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(47,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(48,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(49,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(50,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(51,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+LQ
+IU
+IU
+IU
+LQ
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(52,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(53,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(54,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(55,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+mV
+mV
+mV
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(56,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(57,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(58,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(59,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(60,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(61,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+LQ
+IU
+IU
+IU
+LQ
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(62,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(63,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(64,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(65,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(66,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(67,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(68,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(69,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(70,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(71,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+EW
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(72,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(73,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(74,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(75,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(76,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(77,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(78,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+va
+Ru
+Ru
+Ru
+va
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+mV
+mV
+mV
+mV
+mV
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+va
+Ru
+Ru
+Ru
+va
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+"}
+(79,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+va
+va
+va
+va
+dA
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+va
+va
+va
+mV
+mV
+mV
+mV
+mV
+mV
+mV
+va
+va
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+dA
+va
+va
+va
+va
+va
+dA
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+va
+"}
+(80,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+hx
+Jd
+oz
+YO
+Xi
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+"}
+(81,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Fm
+yg
+Fm
+Fm
+Fm
+mH
+hx
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+"}
+(82,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+hx
+Jd
+eH
+BZ
+Tt
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+"}
+(83,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+ZC
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+Ru
+Ru
+Ru
+LQ
+LQ
+LQ
+LQ
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+ZC
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+"}
+(84,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+Ru
+Ru
+Ru
+vZ
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+sT
+dA
+it
+mH
+mH
+mH
+it
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+LQ
+Ru
+Ru
+Ru
+vZ
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+"}
+(85,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(86,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+sS
+dA
+Rb
+dA
+dA
+dA
+dA
+dA
+dA
+Rb
+dA
+mT
+BN
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(87,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+GE
+GE
+Kp
+fC
+Kp
+HC
+Kp
+Kp
+dA
+Kp
+Ue
+dA
+BN
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(88,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+BT
+BT
+Kp
+dA
+Hd
+rb
+yz
+Hd
+dA
+Kp
+Ue
+dA
+BN
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(89,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+Kp
+Kp
+Kp
+dA
+Hd
+xK
+SB
+Hd
+dA
+Kp
+Ue
+dA
+BN
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(90,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+NT
+NT
+Kp
+dA
+Kp
+Hd
+Hd
+Kp
+sS
+Kp
+Ue
+dA
+qg
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(91,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+sS
+Om
+Rb
+dA
+dA
+dA
+dA
+dA
+dA
+Kp
+Ue
+Or
+Ex
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(92,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+dX
+dX
+Kp
+dX
+dX
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(93,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+TY
+fb
+Ka
+Kp
+dA
+dA
+Kp
+dA
+dA
+Kp
+Ka
+fb
+TY
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(94,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+fb
+fb
+fb
+rz
+dA
+dA
+Kp
+dA
+dA
+rz
+fb
+fb
+fb
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(95,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+rZ
+fb
+fb
+LY
+dA
+fC
+Kp
+sS
+dA
+LY
+fb
+fb
+FY
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(96,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+dA
+dA
+Kp
+dA
+dA
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(97,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+TY
+fb
+Ka
+Kp
+dA
+dA
+Kp
+dA
+dA
+Kp
+Ka
+fb
+TY
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(98,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+fb
+fb
+fb
+rz
+dA
+dA
+Kp
+dA
+dA
+rz
+fb
+fb
+fb
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(99,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+rZ
+fb
+fb
+LY
+dA
+fC
+Kp
+sS
+dA
+LY
+fb
+fb
+rZ
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(100,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+dA
+dA
+Kp
+dA
+dA
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+Gw
+yz
+Gw
+Gw
+Gw
+Gw
+Gw
+yz
+Gw
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+IU
+IU
+IU
+mV
+dA
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(101,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+TY
+fb
+Ka
+Kp
+dA
+dA
+Kp
+dA
+dA
+Kp
+Ka
+fb
+TY
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+Gw
+Ux
+gX
+bt
+bt
+bt
+dZ
+Ux
+Gw
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(102,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+fb
+fb
+fb
+rz
+dA
+dA
+Kp
+dA
+dA
+rz
+fb
+fb
+fb
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+Gw
+Gw
+gX
+Os
+Os
+Os
+dZ
+Gw
+Gw
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(103,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+FY
+fb
+fb
+LY
+dA
+fC
+Kp
+sS
+dA
+LY
+fb
+fb
+rZ
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+Kp
+zq
+Kp
+Kp
+Kp
+Kp
+Kp
+zq
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(104,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Rb
+Kp
+Rb
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+qy
+Ko
+Gw
+Ze
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(105,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Kp
+SN
+dA
+dA
+dA
+dA
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+QN
+Ux
+Ux
+Lp
+Kp
+TN
+RP
+Ux
+cN
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(106,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Kp
+FZ
+dA
+Bg
+dA
+fC
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+DB
+Gw
+Gw
+QZ
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+it
+it
+it
+it
+it
+dA
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(107,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+IU
+IU
+IU
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Kp
+Rz
+dA
+dA
+dA
+dA
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+mD
+Gw
+Gw
+GU
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(108,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Ux
+Ux
+Gw
+zq
+Gw
+Ux
+Ux
+Qp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(109,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+gG
+Gw
+Gw
+tF
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(110,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+wy
+Gw
+Gw
+tF
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(111,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+QN
+Ux
+Ux
+Lp
+Kp
+Nk
+Ux
+Ux
+Og
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(112,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+on
+Gw
+Gw
+on
+Kp
+CT
+Gw
+Gw
+tF
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(113,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+it
+it
+it
+it
+it
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Kp
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(114,1,1) = {"
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(115,1,1) = {"
+rM
+Eq
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(116,1,1) = {"
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(117,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(118,1,1) = {"
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(119,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(120,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(121,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+rM
+aj
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(122,1,1) = {"
+aj
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(123,1,1) = {"
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(124,1,1) = {"
+EY
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(125,1,1) = {"
+Df
+EY
+EY
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(126,1,1) = {"
+Df
+Df
+Df
+EY
+EY
+EY
+wW
+rM
+rM
+rM
+wW
+rM
+rM
+wW
+rM
+wW
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(127,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+aj
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(128,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(129,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+aj
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(130,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(131,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+aj
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+IU
+IU
+IU
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(132,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(133,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(134,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aj
+wW
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(135,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+aj
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(136,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(137,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+va
+Ru
+Ru
+Ru
+va
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+it
+it
+it
+it
+it
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(138,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+vU
+vU
+dA
+va
+va
+mV
+mV
+mV
+mV
+mV
+mV
+mV
+va
+va
+va
+va
+va
+mV
+mV
+mV
+mV
+mV
+mV
+mV
+va
+va
+va
+va
+va
+mV
+mV
+va
+dA
+va
+va
+va
+va
+va
+dA
+va
+va
+mV
+mV
+mV
+mV
+mV
+mV
+mV
+va
+va
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+dA
+dA
+dA
+vU
+vU
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(139,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+uX
+uX
+uX
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+jM
+uX
+uX
+uX
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(140,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+uX
+uX
+uX
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+jM
+uX
+uX
+uX
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(141,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+wW
+rM
+rM
+rM
+rM
+aj
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+uX
+uX
+uX
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+Jd
+cy
+Jd
+Jd
+Jd
+Jd
+Jd
+jM
+Jd
+Jd
+jM
+uX
+uX
+uX
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(142,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+aj
+rM
+rM
+rM
+wW
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+vU
+vU
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+ZC
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+LQ
+LQ
+LQ
+LQ
+LQ
+dA
+dA
+dA
+dA
+vU
+vU
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(143,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+dA
+LQ
+Ru
+Ru
+Ru
+vZ
+dA
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(144,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(145,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+kr
+kr
+kr
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(146,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+aj
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+de
+CG
+sT
+JW
+JW
+JW
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(147,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+aj
+rM
+rM
+wW
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dr
+Ee
+sT
+pJ
+pJ
+pJ
+sT
+GI
+Zl
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(148,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+AJ
+Ee
+sT
+mZ
+hT
+mZ
+Jr
+mZ
+mZ
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(149,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+NH
+sT
+sT
+sT
+sT
+sT
+sB
+OT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(150,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+HB
+Ee
+sT
+cP
+vM
+TC
+sT
+sB
+mZ
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(151,1,1) = {"
+Df
+Df
+Df
+EY
+EY
+rM
+Eq
+rM
+aj
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+Wu
+zU
+sT
+Ee
+yj
+OR
+sT
+sT
+Iq
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(152,1,1) = {"
+Df
+Df
+EY
+EY
+rM
+aj
+rM
+rM
+wW
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+gW
+eO
+NH
+Ee
+bp
+Ee
+NH
+gF
+bZ
+jE
+Jb
+sT
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(153,1,1) = {"
+Df
+Df
+EY
+VO
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+KV
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(154,1,1) = {"
+Df
+Df
+EY
+sz
+rM
+rM
+aj
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+qu
+Jd
+Jd
+Jd
+OH
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qn
+IJ
+EP
+eN
+sT
+Iv
+Uy
+xX
+Iv
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(155,1,1) = {"
+Df
+Df
+EY
+VO
+sz
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+mV
+IU
+IU
+IU
+mV
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qr
+gF
+gF
+td
+jE
+gF
+gF
+xX
+Qo
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(156,1,1) = {"
+Df
+Df
+EY
+EY
+sz
+rM
+rM
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qn
+gF
+gF
+qn
+sT
+FX
+Uy
+xX
+Iv
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(157,1,1) = {"
+Df
+Df
+Df
+EY
+rM
+rM
+Eq
+rM
+aj
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+oz
+YO
+Xi
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qr
+gF
+gF
+qr
+sT
+sT
+jE
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(158,1,1) = {"
+Df
+Df
+Df
+EY
+rM
+aj
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+yg
+Fm
+av
+Fm
+mH
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qn
+gF
+gF
+qn
+sT
+lQ
+gF
+hG
+dH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(159,1,1) = {"
+Df
+Df
+Df
+EY
+wW
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+eH
+BZ
+Tt
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qr
+gF
+gF
+qr
+sT
+hO
+gF
+hG
+hG
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(160,1,1) = {"
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+Eq
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qu
+Jd
+Jd
+Jd
+Jd
+Jd
+OH
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qn
+gF
+gF
+qn
+sT
+hO
+gF
+DK
+Qe
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(161,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+rM
+aj
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+dA
+it
+it
+it
+it
+it
+dA
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+qr
+bZ
+gF
+qr
+sT
+lQ
+bZ
+GP
+CN
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(162,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+Zz
+vY
+vY
+Zz
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+sT
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(163,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+vY
+vY
+vY
+vY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(164,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+Zz
+vY
+vY
+Zz
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(165,1,1) = {"
+EY
+EY
+EY
+EY
+EY
+rM
+rM
+aj
+rM
+rM
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(166,1,1) = {"
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+wW
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(167,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+aj
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(168,1,1) = {"
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+gn
+AR
+gn
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(169,1,1) = {"
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+aj
+rM
+aj
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+Eq
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(170,1,1) = {"
+EY
+EY
+EY
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+AR
+AR
+AR
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+rM
+Gv
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+wW
+wW
+wW
+wW
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(171,1,1) = {"
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+EY
+rM
+rM
+aj
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+rM
+rM
+rM
+AR
+rM
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+rM
+rM
+wW
+wW
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(172,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+rM
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+Eq
+rM
+wW
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+wW
+wW
+rM
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+gn
+AR
+gn
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(173,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+wW
+rM
+gn
+AR
+gn
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+wW
+wW
+wW
+rM
+rM
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(174,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+EY
+EY
+EY
+Df
+EY
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+ud
+rM
+rM
+gn
+rM
+rM
+rM
+rM
+rM
+AR
+Oa
+AR
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(175,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+wW
+wW
+rM
+PQ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+AR
+rM
+Eq
+rM
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+PQ
+rM
+rM
+rM
+PQ
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(176,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+QO
+QO
+QO
+rM
+rM
+rM
+wW
+wW
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+gn
+AR
+gn
+AR
+gn
+xR
+rM
+rM
+ud
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(177,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+wW
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+rM
+eq
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+AR
+rM
+rM
+ud
+rM
+rM
+AR
+AR
+AR
+MX
+AR
+SY
+rM
+Eq
+rM
+rM
+rM
+rM
+Eq
+rM
+wW
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(178,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+gn
+AR
+gn
+AR
+gn
+RG
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(179,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+gn
+rM
+rM
+rM
+Eq
+rM
+AR
+AR
+AR
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(180,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+ud
+rM
+Eq
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+AR
+AR
+AR
+rM
+rM
+ud
+rM
+rM
+rM
+rM
+PQ
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(181,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+AR
+AR
+AR
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(182,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+QO
+QO
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+AR
+rM
+rM
+rM
+rM
+rM
+gn
+AR
+gn
+rM
+rM
+rM
+rM
+wW
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(183,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+QO
+QO
+QO
+QO
+rM
+rM
+rM
+ud
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+eq
+rM
+rM
+rM
+gn
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(184,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+eq
+rM
+rM
+rM
+PQ
+rM
+rM
+rM
+rM
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(185,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+PQ
+rM
+rM
+rM
+rM
+wW
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(186,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(187,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(188,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(189,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+AR
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(190,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+AR
+AR
+gn
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(191,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(192,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+ud
+rM
+rM
+wW
+dL
+rM
+wW
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(193,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+wW
+rM
+Eq
+rM
+rM
+rM
+rM
+rM
+rM
+oW
+Sa
+rM
+wW
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(194,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+Eq
+rM
+rM
+rX
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(195,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+PQ
+rM
+rM
+rM
+fE
+rM
+rM
+rM
+rM
+rM
+rM
+fE
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(196,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+rM
+rM
+rM
+rM
+ud
+fE
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+PQ
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(197,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+wW
+wW
+rM
+wW
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+ud
+rM
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(198,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+EY
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+rM
+fE
+rM
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+EY
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+(199,1,1) = {"
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+EY
+wW
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+PQ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+EY
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+"}
+
+(1,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+Tw
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+uh
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+uh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+jT
+uh
+Pi
+sm
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+uh
+rM
+rM
+sm
+sm
+sm
+sm
+uh
+sm
+Tw
+Tw
+Tw
+Tb
+Tb
+xE
+xE
+"}
+(2,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+wW
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+Tw
+Tw
+uh
+jT
+Tw
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+sm
+sm
+sm
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+ZQ
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+uh
+jT
+sm
+Pi
+Tw
+Tw
+uh
+rM
+Tb
+xE
+xE
+"}
+(3,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+BY
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+oX
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+Tw
+Tw
+Tw
+uh
+sm
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+uh
+CS
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+XV
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+sm
+sm
+sm
+sm
+Tw
+Tw
+Tw
+rM
+Tb
+Tb
+Tb
+"}
+(4,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+uh
+uh
+sK
+sm
+Uj
+Tw
+Tw
+Tw
+Tw
+uh
+Vn
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Tw
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+sm
+Pi
+uh
+uh
+sK
+sm
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+uh
+sK
+sm
+jT
+Tw
+Tw
+Tw
+Tw
+cF
+Tw
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Pi
+uh
+rM
+sm
+Pi
+uh
+rM
+rM
+rM
+rM
+sm
+uh
+sm
+Tb
+"}
+(5,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+Tw
+Tw
+jT
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+uh
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+uh
+sm
+jT
+Tw
+Tw
+jT
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+Tw
+jT
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+XI
+sm
+sJ
+sm
+sm
+sm
+sm
+sm
+Mh
+sm
+rM
+sm
+sm
+sm
+sm
+uh
+sm
+Pi
+uh
+"}
+(6,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+uh
+qA
+vx
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+Tw
+Tw
+Tw
+rM
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+Tw
+Tw
+sm
+sm
+uh
+jT
+sm
+Pi
+uh
+Tw
+Tw
+Tw
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Tw
+Tw
+Tw
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+uh
+jT
+sm
+sm
+uh
+sm
+jT
+uh
+jT
+sm
+Pi
+sm
+sm
+"}
+(7,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+Tw
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+XV
+jT
+Tw
+Tw
+Tw
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Pi
+uh
+sm
+sm
+sm
+sm
+rM
+sm
+"}
+(8,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+wW
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rM
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+uh
+"}
+(9,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+tE
+tE
+tE
+tE
+at
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(10,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+ts
+st
+AE
+ye
+HP
+tE
+aK
+tE
+pT
+Au
+Tu
+tE
+rq
+mb
+le
+VV
+VV
+VV
+vg
+mb
+mb
+KL
+Gc
+nO
+Wn
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(11,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+lA
+uL
+uL
+uL
+uL
+VE
+cD
+CQ
+tE
+CQ
+fA
+DF
+tE
+rq
+mb
+VV
+dk
+JK
+cj
+VV
+mb
+xU
+OB
+Gc
+aQ
+Gq
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(12,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+wW
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+uL
+uU
+uU
+uL
+uL
+at
+tE
+at
+CQ
+CQ
+CQ
+tE
+rq
+Ix
+VV
+Ay
+FA
+bP
+VV
+Ix
+Kr
+OB
+Gc
+Fu
+Dy
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(13,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+FN
+mB
+uo
+uo
+kS
+uL
+cD
+xi
+tE
+CQ
+Wb
+Py
+tE
+rq
+mb
+VV
+HQ
+Eo
+gr
+VV
+mb
+ze
+wg
+Gc
+Fu
+Dy
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(14,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+FN
+mB
+uo
+Hx
+kS
+sr
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+Yx
+VV
+Dz
+VV
+vF
+mb
+zm
+lp
+Gc
+Fu
+ez
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(15,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+bH
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+uL
+nE
+nE
+uL
+uL
+uL
+uL
+uL
+uL
+ZZ
+ni
+tE
+rq
+Ix
+Ix
+kC
+Ix
+nw
+nw
+Ix
+mb
+Ix
+Cw
+Ix
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Pi
+"}
+(16,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+CH
+Ld
+Ld
+Ld
+Ld
+Ld
+Zr
+rq
+rq
+rq
+rq
+rq
+Zr
+Ld
+Ld
+Ld
+Ld
+Ld
+yn
+vi
+vi
+vi
+vi
+yn
+vi
+vi
+yn
+rq
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+Ld
+Ld
+Ld
+Ld
+Ld
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+rq
+RU
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+Ac
+Oh
+Oh
+Oh
+Oh
+Ev
+Oh
+Oh
+Oh
+Jy
+Gu
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(17,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+uH
+hr
+uH
+uH
+Eg
+Up
+GZ
+vi
+rq
+gR
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+RW
+gR
+rq
+DL
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+Le
+Er
+tE
+CQ
+Xz
+Py
+tE
+CQ
+Fh
+Er
+tE
+rq
+mb
+UT
+Qu
+Oh
+Oh
+Oh
+Qu
+Oh
+Oh
+Oh
+VS
+Jy
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(18,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+mi
+hi
+sW
+uH
+vi
+um
+kg
+vi
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+Ix
+Hm
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+Jy
+Jy
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(19,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Zr
+rq
+Ld
+Ld
+Ld
+rq
+Zr
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+uH
+uH
+uH
+uH
+yn
+Eg
+vi
+yn
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+OS
+DF
+tE
+CQ
+gS
+DF
+tE
+CQ
+WE
+DF
+tE
+rq
+Ix
+YF
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Oh
+Jy
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(20,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+wW
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+Uv
+uH
+xG
+uH
+vi
+hs
+Jx
+vi
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+qQ
+Au
+qQ
+tE
+pT
+DV
+qQ
+tE
+Tu
+ML
+pT
+tE
+rq
+mb
+uA
+Qu
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Qu
+Oh
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(21,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+RB
+uH
+pS
+uH
+yn
+vi
+vi
+yn
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+rq
+mb
+Nd
+Qu
+Oh
+nP
+nP
+Eu
+nP
+nP
+Oh
+Qu
+ot
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(22,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Zr
+rq
+Ld
+Ld
+Ld
+rq
+Zr
+Ld
+Ld
+Ld
+Ld
+Ld
+uH
+uH
+uH
+uH
+uH
+Eg
+Up
+Up
+vi
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+CZ
+Ld
+Ld
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ix
+Oh
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Oh
+Oh
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(23,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+mJ
+ru
+tV
+gi
+hN
+vi
+SJ
+Qd
+vi
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+CZ
+Ld
+Ld
+mb
+UY
+Ez
+Qn
+Ix
+db
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+tE
+tE
+tE
+tE
+at
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ix
+Oh
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Oh
+Oh
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Pi
+"}
+(24,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+WQ
+rq
+Ld
+Ld
+Ld
+rq
+WQ
+Ld
+Ld
+Ld
+Ld
+Ld
+yn
+vi
+vi
+vi
+vi
+yn
+vi
+vi
+yn
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+CZ
+Ld
+Ld
+mb
+IY
+fv
+Qn
+bM
+db
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+ts
+st
+AE
+ye
+HP
+tE
+aK
+tE
+pT
+Au
+Tu
+tE
+rq
+mb
+Oh
+Ys
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Qu
+Oh
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(25,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Zr
+rq
+rq
+rq
+rq
+rq
+Zr
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+Kh
+Oj
+gR
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+DL
+Ld
+Ld
+CZ
+Ld
+Ld
+mb
+Qn
+Qn
+Qn
+Ix
+db
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+lA
+uL
+uL
+uL
+uL
+VE
+cD
+CQ
+tE
+CQ
+fA
+DF
+tE
+rq
+mb
+Oh
+Kc
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Qu
+Oh
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(26,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+Oj
+OU
+gR
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+ZF
+Ix
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+uL
+uU
+uU
+uL
+uL
+at
+tE
+at
+CQ
+CQ
+CQ
+tE
+rq
+Ix
+Nd
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+Oh
+Oh
+uf
+Ix
+TW
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(27,1,2) = {"
+UV
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+OU
+gR
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+mb
+Br
+Cd
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+FN
+mB
+uo
+uo
+kS
+uL
+cD
+xi
+tE
+CQ
+Wb
+Py
+tE
+rq
+mb
+Oh
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+pn
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(28,1,2) = {"
+UV
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+ee
+gR
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+mb
+Qz
+CB
+PW
+Pt
+Qz
+Ix
+Qn
+Pt
+zR
+Qn
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+FN
+mB
+uo
+Hx
+kS
+sr
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+Oh
+Qu
+Oh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+pn
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(29,1,2) = {"
+UV
+UV
+UV
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+gR
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+Ix
+Qz
+CB
+sI
+Pt
+Qz
+mb
+Qn
+Pt
+zR
+CE
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+uL
+nE
+nE
+uL
+uL
+uL
+uL
+uL
+uL
+ZZ
+ni
+tE
+rq
+Ix
+Oh
+Qu
+Oh
+nP
+nP
+Eu
+nP
+nP
+nP
+Eu
+nP
+pn
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(30,1,2) = {"
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+wW
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+tp
+rq
+gR
+rq
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+mb
+Qz
+CB
+sI
+Pt
+Qz
+Ix
+Qn
+Pt
+zR
+Qn
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+Oh
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+pn
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Pi
+"}
+(31,1,2) = {"
+QO
+QO
+QO
+QO
+QO
+QO
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oh
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+gR
+rq
+gR
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+nF
+gR
+rq
+mb
+pq
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Qn
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+Le
+Er
+tE
+CQ
+Xz
+Py
+tE
+CQ
+Fh
+Er
+tE
+rq
+mb
+Oh
+Oh
+Oh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+pn
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(32,1,2) = {"
+QO
+QO
+QO
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+rq
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+Ix
+Nd
+Qu
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+Oh
+ot
+Ix
+eu
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(33,1,2) = {"
+lY
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+YD
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+BY
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+oX
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+fq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+cA
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+OS
+DF
+tE
+CQ
+gS
+DF
+tE
+CQ
+WE
+DF
+tE
+rq
+mb
+Oh
+Qu
+Oh
+Oh
+Oh
+Qu
+Oh
+Oh
+Oh
+Qu
+Oh
+AB
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(34,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+ut
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+Xe
+Xe
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+rq
+Xe
+Xe
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+Ix
+Ix
+CF
+CF
+Ix
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+qQ
+Au
+qQ
+tE
+pT
+DV
+qQ
+tE
+Tu
+ML
+pT
+tE
+rq
+mb
+Nd
+Oh
+Oh
+Oh
+Oh
+SH
+Oh
+Oh
+Oh
+Oh
+ot
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(35,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+oe
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+pY
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+oo
+zb
+rf
+Qg
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+nn
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+yl
+uC
+mk
+oo
+rq
+rq
+oo
+zb
+rf
+Qg
+oo
+zD
+Rt
+pw
+qf
+oo
+SL
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+rq
+mb
+uJ
+YG
+rl
+Nb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(36,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+ZR
+ZR
+ZR
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+oo
+zb
+Yq
+di
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+wq
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+rq
+oo
+zb
+Yq
+di
+oo
+wn
+Rt
+Xe
+oo
+Xe
+rN
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+mb
+am
+YE
+YE
+YE
+OE
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(37,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+rq
+rq
+rq
+ZR
+pu
+vL
+vL
+vL
+pu
+ZR
+rq
+rq
+rq
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+Xe
+Xe
+WL
+Xe
+Xe
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+rq
+rq
+Xe
+Xe
+WL
+Xe
+Xe
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+rq
+mb
+Nf
+aC
+YE
+fT
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+tE
+tE
+tE
+tE
+at
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+rq
+Tw
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Pi
+"}
+(38,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+pu
+Bo
+pu
+vL
+Bo
+Ok
+Ok
+Ok
+Bo
+vL
+pu
+Bo
+pu
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+Xe
+vS
+Yq
+vS
+oo
+XX
+pt
+Rt
+eQ
+Xe
+lw
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+iY
+Lg
+iy
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IM
+It
+Pz
+Xe
+rq
+rq
+Xe
+vS
+Yq
+vS
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IM
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IS
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IM
+It
+Pz
+Xe
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+ts
+st
+AE
+ye
+HP
+tE
+aK
+tE
+pT
+Au
+Tu
+tE
+rq
+mb
+ia
+RT
+Xv
+eI
+an
+mb
+JJ
+bz
+wv
+mb
+rq
+uh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(39,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Bo
+Ok
+Uz
+Ok
+ju
+Ok
+Oq
+Ok
+ju
+Ok
+Uz
+Ok
+Bo
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+oo
+Tz
+Yq
+PF
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+rq
+oo
+Tz
+Yq
+PF
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+lA
+uL
+uL
+uL
+uL
+VE
+cD
+CQ
+tE
+CQ
+fA
+DF
+tE
+rq
+mb
+ia
+pk
+pk
+pk
+pk
+fh
+cc
+cc
+cc
+mb
+rq
+Tw
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(40,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Bo
+Xm
+pu
+WZ
+Ok
+Ok
+Ok
+Ok
+Ok
+WZ
+pu
+Ed
+Bo
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+oo
+vS
+Yq
+Yq
+WL
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+oo
+rq
+rq
+oo
+vS
+Yq
+Yq
+WL
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+oo
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+uL
+uU
+uU
+uL
+uL
+at
+tE
+at
+CQ
+CQ
+CQ
+tE
+rq
+mb
+xM
+pk
+pk
+pk
+Ag
+mb
+Vw
+GH
+zO
+mb
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(41,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+pu
+kn
+Bo
+pu
+Uz
+pu
+GL
+pu
+Uz
+pu
+Bo
+zH
+pu
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+Xe
+oo
+oo
+oo
+Xe
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Xe
+rq
+Kh
+Xe
+oo
+oo
+oo
+Xe
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Xe
+rq
+mb
+Qv
+YE
+YE
+kM
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+FN
+mB
+uo
+uo
+kS
+uL
+cD
+xi
+tE
+CQ
+Wb
+Py
+tE
+rq
+Ix
+IH
+sl
+sl
+Wj
+vf
+Ix
+mb
+mb
+mb
+Ix
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+uh
+"}
+(42,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Bo
+Bo
+Bo
+gt
+gt
+gt
+gt
+gt
+gt
+gt
+Bo
+Bo
+Bo
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+oo
+Ne
+Yq
+Yq
+WL
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+oo
+rq
+rq
+oo
+Ne
+Yq
+Yq
+WL
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+oo
+rq
+mb
+Fd
+YE
+YE
+ua
+mb
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+FN
+mB
+uo
+Hx
+kS
+sr
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+tn
+tn
+tn
+tn
+tn
+UQ
+JM
+nr
+JI
+mb
+rq
+Tw
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(43,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Bo
+Bo
+BD
+gt
+mO
+mO
+gt
+mO
+mO
+gt
+pv
+Bo
+Bo
+rq
+Oy
+Oy
+rq
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+oo
+lr
+Yq
+QQ
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+rq
+oo
+lr
+Yq
+QQ
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+mb
+cE
+YE
+YE
+LL
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+uL
+nE
+nE
+uL
+uL
+uL
+uL
+uL
+uL
+ZZ
+ni
+tE
+rq
+mb
+Yk
+Qt
+bc
+sX
+SW
+MJ
+JM
+nr
+JI
+mb
+rq
+sJ
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Pi
+"}
+(44,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+pu
+pu
+LH
+cg
+Ve
+lo
+pj
+lo
+Ve
+LH
+cg
+pu
+pu
+rq
+rM
+rM
+rq
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+Xe
+Xe
+Yq
+QQ
+oo
+XX
+ho
+Rt
+eQ
+Xe
+Vz
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+Ff
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+Jf
+rW
+JB
+Xe
+rq
+rq
+Xe
+Xe
+Yq
+QQ
+oo
+ZV
+ho
+Rt
+eQ
+Xe
+IS
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+IM
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+IM
+It
+Pz
+Xe
+rq
+Ix
+Ix
+YE
+YE
+Ix
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+mb
+RO
+RO
+RO
+RO
+RO
+RO
+kc
+jo
+jo
+mb
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(45,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+rq
+rq
+rq
+rq
+rq
+Bo
+xr
+wI
+LW
+pj
+pj
+pj
+Ea
+wI
+xr
+Bo
+rq
+rq
+rq
+rq
+rq
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+Xe
+RE
+Yq
+QQ
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+rq
+rq
+Xe
+RE
+Yq
+QQ
+oo
+Jv
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+rq
+mb
+VD
+YE
+YE
+Ha
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+Le
+Er
+tE
+CQ
+Xz
+Py
+tE
+CQ
+Fh
+Er
+tE
+rq
+Ix
+XC
+zs
+JI
+jo
+VQ
+jo
+XC
+zs
+JI
+Ix
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(46,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rq
+rq
+rq
+rq
+rq
+Bo
+Na
+pH
+lb
+Ja
+YA
+dc
+lb
+pH
+JL
+Bo
+rq
+rq
+rq
+rq
+rq
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+oo
+LB
+Yq
+QQ
+oo
+wn
+Rt
+Xe
+oo
+Xe
+HA
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+rq
+oo
+RE
+Yq
+QQ
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+mb
+YE
+YE
+YE
+YE
+OE
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+mb
+jo
+jo
+jo
+JI
+zs
+JI
+jo
+jo
+jo
+mb
+rq
+Tw
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sm
+"}
+(47,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+rq
+rq
+Bo
+pu
+pu
+af
+pH
+pH
+pH
+pH
+pH
+pH
+pH
+DA
+pu
+pu
+Bo
+iI
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sO
+oo
+TH
+Yq
+QQ
+oo
+zD
+Rt
+pw
+zQ
+oo
+Pk
+uC
+og
+oo
+zD
+Rt
+pw
+zQ
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+zQ
+oo
+kF
+uC
+mk
+oo
+rq
+rq
+oo
+ir
+Yq
+QQ
+oo
+zD
+Rt
+pw
+zQ
+oo
+Pk
+uC
+og
+oo
+zD
+Rt
+pw
+zQ
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+zQ
+oo
+SL
+uC
+mk
+oo
+rq
+mb
+Nf
+mL
+YE
+SQ
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+OS
+DF
+tE
+CQ
+gS
+DF
+tE
+CQ
+WE
+DF
+tE
+rq
+mb
+XC
+nr
+JI
+jo
+jo
+jo
+XC
+nr
+JI
+mb
+rq
+uh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Tw
+"}
+(48,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+wr
+Bo
+Bo
+ku
+cO
+lT
+lT
+lT
+lT
+lT
+lT
+lT
+lT
+lT
+Bl
+wE
+Bo
+Bo
+sU
+rq
+tp
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+nJ
+ji
+Xe
+Xe
+WL
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+rq
+Xe
+Xe
+WL
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+mb
+Dq
+GV
+YE
+cb
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+qQ
+Au
+qQ
+tE
+pT
+DV
+qQ
+tE
+Tu
+ML
+pT
+tE
+rq
+mb
+XC
+nr
+JI
+jo
+jo
+jo
+XC
+nr
+JI
+mb
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(49,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+wr
+pu
+wi
+ds
+Td
+bL
+bL
+bL
+YP
+xZ
+go
+bL
+bL
+bL
+pe
+qc
+wi
+pu
+sU
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+BV
+rq
+rq
+rq
+fc
+Kt
+eU
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ix
+rD
+rD
+rD
+Ix
+OG
+Ix
+rD
+rD
+rD
+Ix
+rq
+sm
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+"}
+(50,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+Bt
+yJ
+wj
+Ny
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+xl
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+zd
+xd
+BS
+Wr
+rM
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+cA
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+"}
+(51,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+jp
+Rx
+rq
+wr
+Ny
+wi
+ds
+mn
+wS
+uH
+uH
+jP
+pj
+zL
+uH
+uH
+tQ
+XG
+qc
+wi
+zd
+sU
+rq
+ZH
+Hb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+"}
+(52,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Fl
+rq
+rq
+wr
+pu
+qh
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+Us
+pu
+sU
+rq
+rq
+zr
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+"}
+(53,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Fl
+rq
+rq
+rq
+tU
+wi
+ds
+Tm
+wS
+uH
+uH
+jP
+po
+zL
+uH
+uH
+tQ
+fM
+qc
+wi
+Yw
+rq
+rq
+rq
+zr
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+BK
+"}
+(54,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Fl
+rq
+rq
+wr
+pu
+Oi
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+tm
+pu
+sU
+rq
+rq
+zr
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+"}
+(55,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+Hc
+rq
+by
+jw
+rq
+wr
+pu
+wi
+ds
+mn
+wS
+uH
+uH
+jP
+pj
+zL
+uH
+uH
+tQ
+XG
+qc
+wi
+pu
+sU
+rq
+jc
+by
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+"}
+(56,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+Bt
+Zn
+el
+Ny
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+zd
+MV
+Zn
+Wr
+GN
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+iC
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+"}
+(57,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+wr
+Ny
+wi
+ds
+Tm
+wS
+uH
+uH
+jP
+po
+zL
+uH
+uH
+tQ
+fM
+qc
+wi
+zd
+sU
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+DD
+cf
+Ip
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+DD
+cf
+Ip
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+Ix
+fV
+fV
+Ix
+Ix
+fV
+fV
+Ix
+Ix
+rq
+rq
+rq
+XY
+Xe
+oo
+oo
+Xe
+QF
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+ok
+rq
+"}
+(58,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rq
+rq
+rq
+wr
+pu
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+pu
+sU
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+Xe
+Xe
+WL
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+yJ
+yJ
+Xe
+Xe
+WL
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+yJ
+mb
+Zd
+ZA
+Fs
+Ae
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+oD
+Ro
+hF
+gU
+Ro
+hF
+gU
+WH
+Ix
+rq
+tp
+rq
+wr
+ws
+Rt
+sC
+kP
+Rt
+oo
+hC
+tv
+TI
+tv
+tv
+tv
+tv
+tv
+OQ
+OQ
+tv
+TI
+ws
+sU
+rq
+"}
+(59,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+Oy
+wr
+Ny
+wi
+ds
+mn
+wS
+uH
+uH
+jP
+pj
+zL
+uH
+uH
+tQ
+XG
+qc
+wi
+zd
+sU
+Oy
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+oo
+Ne
+Yq
+QQ
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+Pk
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+yJ
+yJ
+oo
+Ne
+Yq
+QQ
+oo
+zD
+Rt
+pw
+qf
+oo
+yl
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+kF
+uC
+mk
+oo
+zD
+Rt
+pw
+qf
+oo
+Bv
+uC
+mk
+oo
+yJ
+mb
+YE
+YE
+YE
+YE
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+Ro
+YE
+Yl
+YE
+YE
+Yl
+YE
+YE
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+sH
+or
+Rt
+oo
+hC
+tv
+uT
+OQ
+OQ
+tv
+uT
+Yz
+dI
+dI
+hY
+tv
+ws
+sU
+rq
+"}
+(60,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rM
+wr
+Ny
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+zd
+sU
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+oo
+lr
+Yq
+QQ
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+kx
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+rq
+oo
+lr
+Yq
+QQ
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+IF
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+Ix
+am
+rC
+YE
+YE
+OE
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Wq
+hF
+cM
+YI
+YE
+YE
+YI
+YE
+YE
+sZ
+rq
+rq
+rq
+XY
+Xe
+QF
+oo
+Xe
+Zx
+oo
+hC
+tv
+Yz
+dI
+dI
+cz
+tv
+Yz
+dI
+dI
+cz
+tv
+Xe
+ok
+rq
+"}
+(61,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+Oy
+Oy
+Oy
+wr
+pu
+wi
+ds
+Tm
+wS
+uH
+uH
+jP
+po
+zL
+uH
+uH
+tQ
+fM
+qc
+wi
+pu
+sU
+Oy
+Oy
+Oy
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+Xe
+Xe
+Yq
+QQ
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+rq
+rq
+Xe
+Xe
+Yq
+QQ
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+Jv
+Rt
+Rt
+Rt
+yr
+uC
+uC
+rs
+oo
+rq
+mb
+Nf
+Fz
+YE
+YE
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+Ug
+YE
+Gp
+YE
+YE
+Gp
+YE
+YE
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+Gm
+Rt
+Rt
+oo
+hC
+tv
+tB
+dI
+dI
+cz
+uT
+tv
+Rq
+Rq
+uT
+tv
+ws
+sU
+rq
+"}
+(62,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+QT
+rq
+rM
+rM
+rM
+wr
+Ny
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+pj
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+zd
+sU
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+Xe
+RE
+Yq
+QQ
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IM
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+Dj
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+IM
+It
+Pz
+Xe
+rq
+rq
+Xe
+RE
+Yq
+QQ
+oo
+XX
+pt
+Rt
+eQ
+Xe
+En
+It
+Pz
+oo
+XX
+pt
+Rt
+eQ
+Xe
+wm
+It
+Pz
+oo
+ZV
+pt
+Rt
+eQ
+Xe
+Kk
+It
+Pz
+Xe
+rq
+mb
+Dq
+GV
+yC
+Qf
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+oD
+Ro
+hF
+gU
+Ro
+hF
+YE
+WH
+Ix
+rq
+rq
+rq
+wr
+ws
+Rt
+Rt
+Rt
+Rt
+oo
+lX
+tv
+Ab
+Rq
+Rq
+tv
+tv
+tv
+tv
+tv
+tv
+cB
+ws
+sU
+rq
+"}
+(63,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+iu
+iu
+UR
+iu
+iu
+kZ
+rq
+rq
+rq
+rq
+wr
+Ny
+wi
+ds
+mn
+wS
+uH
+uH
+jP
+pj
+zL
+uH
+uH
+tQ
+XG
+qc
+wi
+zd
+sU
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+oo
+RE
+Yq
+QQ
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+rq
+oo
+RE
+Yq
+QQ
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+xp
+mb
+Ix
+rq
+rq
+rq
+XY
+Xe
+Rt
+Rt
+oi
+Rt
+Xe
+Xe
+ZW
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+ok
+rq
+"}
+(64,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+rI
+rI
+oy
+rI
+rI
+rI
+BY
+at
+tE
+tE
+at
+tE
+tE
+at
+rq
+rM
+rM
+rM
+wr
+pu
+wi
+ds
+bb
+bR
+MB
+uY
+jP
+xl
+zL
+bR
+MB
+uY
+NO
+qc
+wi
+pu
+sU
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+oo
+ir
+Yq
+Yq
+WL
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+oo
+rq
+rq
+oo
+ir
+Yq
+Yq
+WL
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+rf
+Yq
+Yq
+Yq
+oo
+rq
+rq
+rq
+rq
+rq
+zr
+zr
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Wq
+YE
+YE
+YE
+xp
+YE
+YE
+YE
+Lb
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+Rt
+Rt
+Rt
+Gm
+Rt
+Rt
+Rt
+Rt
+Rt
+Gm
+oo
+wf
+eL
+Bw
+gs
+Ar
+ws
+sU
+rq
+"}
+(65,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+tE
+kz
+kz
+XP
+kz
+kz
+tE
+rq
+rM
+rM
+rM
+wr
+Ny
+wi
+ds
+cU
+sw
+sw
+sw
+fG
+xZ
+Ga
+sw
+sw
+sw
+vy
+qc
+wi
+zd
+sU
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+Xe
+oo
+oo
+oo
+Xe
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Xe
+Kh
+rq
+Xe
+oo
+oo
+oo
+Xe
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Xe
+rq
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+YE
+hy
+Jk
+Ix
+vn
+YE
+YE
+lG
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Xe
+ZL
+ga
+Rt
+Rt
+wf
+ws
+sU
+rq
+"}
+(66,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+tE
+LZ
+LZ
+LZ
+LZ
+LZ
+tE
+rq
+rM
+rM
+rM
+wr
+Ny
+wi
+aI
+Et
+Et
+Fj
+Et
+Et
+Et
+Et
+Et
+Fj
+Et
+Et
+xF
+wi
+zd
+sU
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+oo
+vS
+Yq
+Yq
+WL
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+oo
+rq
+rq
+oo
+vS
+Yq
+Yq
+WL
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+Zv
+Yq
+Yq
+Yq
+oo
+rq
+mb
+FJ
+BO
+uE
+ya
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+hm
+YE
+oj
+cM
+mb
+QG
+YE
+YE
+YE
+Ix
+rq
+rq
+rq
+XY
+Xe
+Rt
+Rt
+oi
+Rt
+Rt
+Rt
+Rt
+Rt
+oi
+Rt
+Rt
+QF
+Rt
+Rt
+pa
+sC
+wf
+Xe
+ok
+rq
+"}
+(67,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+tE
+LZ
+LZ
+LZ
+LZ
+LZ
+tE
+rq
+rM
+GN
+rM
+wr
+pu
+Bo
+Bo
+Bo
+Bo
+pu
+pu
+lk
+pu
+lk
+pu
+pu
+Bo
+Bo
+Bo
+Bo
+pu
+sU
+rM
+GN
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+oo
+Tz
+Yq
+PF
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+rq
+oo
+Tz
+Yq
+PF
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+Xe
+Xe
+pw
+Xe
+Xe
+oo
+oo
+oo
+Xe
+rq
+mb
+am
+YE
+YE
+YE
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+YE
+lx
+XR
+Ix
+KH
+YE
+YE
+QG
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Xe
+ZL
+ga
+Rt
+Rt
+Ad
+ws
+sU
+rq
+"}
+(68,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+lK
+TK
+WA
+TK
+IZ
+rI
+BY
+tE
+kz
+kz
+LZ
+kz
+kz
+tE
+rq
+rM
+rM
+rM
+rq
+rq
+rq
+rq
+rq
+wr
+pu
+Ok
+Ok
+Ok
+Ok
+Ok
+pu
+sU
+rq
+rq
+rq
+rq
+rq
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+Xe
+vS
+Yq
+vS
+oo
+XX
+ho
+Rt
+eQ
+Xe
+WP
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+is
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+IM
+It
+Pz
+Xe
+rq
+rq
+Xe
+vS
+Yq
+vS
+oo
+XX
+ho
+Rt
+eQ
+Xe
+WP
+It
+Pz
+oo
+XX
+ho
+Rt
+eQ
+Xe
+Gd
+It
+mF
+oo
+XX
+ho
+Rt
+eQ
+Xe
+Kk
+It
+Pz
+Xe
+rq
+mb
+YE
+bT
+YE
+uE
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Wq
+YE
+YE
+YE
+xp
+YE
+YE
+YE
+wo
+sZ
+rq
+rq
+rq
+wr
+ws
+Rt
+wG
+Rt
+Rt
+wG
+Rt
+Rt
+Rt
+Rt
+Rt
+wG
+oo
+wf
+Jn
+ZX
+Jn
+Hg
+ws
+sU
+rq
+"}
+(69,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+at
+tE
+at
+Vl
+at
+tE
+at
+rq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rq
+wr
+Ny
+Ok
+zl
+Ok
+fk
+Ok
+zd
+sU
+rq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+Xe
+Xe
+WL
+Xe
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+rq
+rq
+Xe
+Xe
+WL
+Xe
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+SR
+Rt
+Rt
+Rt
+yr
+uC
+uC
+gq
+oo
+rq
+Ix
+Nf
+Fz
+YE
+YE
+OE
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+xp
+mb
+Ix
+rq
+rq
+rq
+XY
+Xe
+oo
+Xe
+oo
+oo
+Xe
+QF
+Xe
+Xe
+Xe
+QF
+Xe
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+ok
+rq
+"}
+(70,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+ch
+uL
+uL
+uL
+MS
+Fy
+tE
+rq
+rM
+rM
+rM
+GN
+rM
+rM
+rM
+rq
+wr
+pu
+Ok
+KM
+Ok
+Ok
+Ok
+pu
+sU
+rq
+rM
+GN
+rM
+rM
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+oo
+zb
+Yq
+Qg
+Xe
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+rq
+oo
+zb
+Yq
+Qg
+Xe
+wn
+Rt
+Xe
+oo
+Xe
+IF
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+kk
+uC
+uC
+oo
+wn
+Rt
+Xe
+oo
+Xe
+NV
+uC
+uC
+oo
+rq
+mb
+AG
+IC
+YE
+la
+Ix
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+Jh
+Qn
+xu
+Qn
+xu
+Qn
+Qn
+yH
+Ix
+rq
+rq
+rq
+wr
+ws
+YR
+Rt
+Gm
+Gm
+Rt
+Rt
+dB
+oo
+kL
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+ws
+sU
+rq
+"}
+(71,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+ch
+uL
+ch
+uL
+UW
+tj
+tE
+rq
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rq
+wr
+Ny
+Ok
+Yc
+Ok
+Pg
+Ok
+zd
+sU
+rq
+rM
+rM
+rM
+rM
+rM
+GN
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+oo
+zb
+Zv
+di
+oo
+zD
+Rt
+pw
+zQ
+oo
+Bv
+uC
+og
+oo
+zD
+Rt
+pw
+zQ
+oo
+Bv
+uC
+mk
+oo
+zD
+Rt
+pw
+zQ
+oo
+kF
+uC
+mk
+oo
+rq
+rq
+oo
+zb
+Zv
+di
+oo
+zD
+Rt
+pw
+zQ
+oo
+Pk
+uC
+og
+oo
+zD
+Rt
+pw
+zQ
+oo
+Pk
+uC
+mk
+oo
+zD
+Rt
+pw
+zQ
+oo
+kF
+uC
+mk
+oo
+rq
+mb
+am
+YE
+YE
+YE
+Nh
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+xu
+Qn
+xu
+Qn
+xu
+Qn
+si
+si
+sZ
+rq
+rq
+rq
+wr
+ws
+YR
+ga
+Tl
+Rt
+Tl
+Rt
+dB
+oo
+kL
+Rt
+oi
+zA
+kK
+oi
+Ng
+iX
+Rt
+ws
+sU
+rq
+"}
+(72,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+ch
+uL
+ay
+MS
+MS
+tj
+tE
+rq
+rM
+rM
+rM
+bj
+GN
+rM
+rM
+rq
+wr
+pu
+Ok
+Ok
+Ok
+Ok
+Ok
+pu
+sU
+rq
+rM
+rM
+rM
+bj
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+Xe
+Xe
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+rq
+Xe
+Xe
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+Xe
+Xe
+xO
+Xe
+Xe
+rq
+mb
+uE
+YE
+Pu
+Mw
+Nh
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Wq
+Qn
+Qn
+KW
+Qn
+Qn
+KW
+si
+si
+sZ
+rq
+rq
+rq
+XY
+Xe
+mg
+Rt
+dB
+oi
+gY
+Rt
+yo
+Xe
+NY
+Rt
+Rt
+zA
+kK
+Rt
+sC
+TF
+Rt
+Xe
+ok
+rq
+"}
+(73,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+lK
+TK
+WA
+TK
+IZ
+rI
+BY
+ch
+uL
+xH
+AH
+ps
+DT
+tE
+rq
+rM
+rM
+rM
+rM
+rM
+rM
+GN
+rq
+rq
+pu
+Bo
+pu
+XA
+pu
+Bo
+pu
+rq
+rq
+rM
+rM
+GN
+rM
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Il
+KX
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+rq
+rq
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+pD
+dz
+dz
+pD
+pD
+pD
+pD
+Qi
+zu
+pP
+pD
+pD
+pD
+dz
+dz
+dz
+dz
+dz
+rq
+Ix
+mb
+OE
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Wq
+xu
+Qn
+xu
+Qn
+xu
+Qn
+si
+si
+sZ
+rq
+rq
+rq
+wr
+ws
+Fk
+ga
+Rt
+sC
+Fk
+sC
+YR
+oo
+NY
+Rt
+oi
+zA
+kK
+oi
+Vt
+rw
+Rt
+ws
+sU
+rq
+"}
+(74,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+ch
+ay
+AH
+AH
+IL
+tj
+tE
+rq
+rM
+GN
+rM
+rM
+rM
+rM
+rM
+rq
+rq
+Fl
+rq
+rq
+rq
+rq
+rq
+zr
+rq
+rq
+rM
+rM
+rM
+rM
+GN
+rM
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Il
+rp
+ih
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Kh
+mb
+ly
+YE
+YE
+Dq
+mb
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+Jh
+Qn
+xu
+Qn
+xu
+Qn
+si
+yH
+Ix
+rq
+rq
+rq
+wr
+ws
+dP
+yo
+yo
+zo
+Sb
+Rt
+YR
+oo
+NY
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+ws
+sU
+rq
+"}
+(75,1,2) = {"
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+UR
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+xH
+IL
+Ba
+IL
+Ba
+tj
+tE
+rq
+rM
+rM
+rM
+rM
+GN
+rM
+rM
+rq
+rq
+Fl
+rq
+rq
+rq
+rq
+rq
+zr
+rq
+rq
+rM
+rM
+GN
+rM
+rM
+rM
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Il
+rp
+ih
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+mb
+ly
+YE
+YE
+zw
+mb
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+Ix
+fV
+fV
+Ix
+Ix
+fV
+fV
+Ix
+Ix
+rq
+rq
+rq
+XY
+Xe
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+ok
+rq
+"}
+(76,1,2) = {"
+lY
+iu
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+iu
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+lY
+lY
+YD
+lY
+lY
+iu
+rI
+TK
+TK
+Hq
+TK
+TK
+rI
+BY
+mo
+uv
+uv
+uv
+uv
+tj
+tE
+rq
+rM
+oh
+rM
+rM
+rM
+oh
+rM
+rq
+rq
+Ql
+jw
+rq
+rq
+rq
+ap
+by
+rq
+rq
+rM
+oh
+rM
+rM
+rM
+oh
+rM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+OF
+MN
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+mb
+ly
+YE
+YE
+Dq
+mb
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+"}
+(77,1,2) = {"
+Rw
+Lr
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Rw
+Rw
+Rw
+Lr
+Rw
+Rw
+Rw
+Rw
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Rw
+Rw
+Yv
+Rw
+Rw
+Lr
+rI
+rI
+rI
+oy
+rI
+rI
+rI
+HZ
+at
+tE
+tE
+tE
+tE
+tE
+at
+rq
+rM
+GN
+rM
+rM
+rM
+rM
+GN
+rq
+rq
+rM
+Ds
+Zn
+Zn
+Zn
+Wr
+GN
+rq
+rq
+rM
+rM
+rM
+rM
+rM
+GN
+rM
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+ht
+Kl
+Ix
+mb
+mb
+mb
+mb
+Ix
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+hB
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+hB
+"}
+(78,1,2) = {"
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+bQ
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+SK
+SK
+SK
+SK
+SK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+"}
+(79,1,2) = {"
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+"}
+(80,1,2) = {"
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+yP
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+"}
+(81,1,2) = {"
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+"}
+(82,1,2) = {"
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+yP
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+"}
+(83,1,2) = {"
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+"}
+(84,1,2) = {"
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Em
+bH
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Em
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+XM
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+OK
+rq
+rq
+rq
+OK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+ZR
+rq
+rq
+rq
+ZR
+cA
+SK
+SK
+SK
+SK
+SK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+qj
+rq
+rq
+qj
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+"}
+(85,1,2) = {"
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+Ld
+Ld
+Ld
+Ld
+Ld
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+rq
+jr
+mR
+mR
+mR
+mR
+jr
+rq
+rq
+Wf
+ng
+rA
+rA
+ng
+rA
+rA
+rA
+ng
+rA
+rA
+rA
+ng
+rA
+ng
+rA
+fU
+fU
+fU
+ao
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+ao
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ng
+jI
+jI
+jI
+ng
+jI
+jI
+jI
+ng
+jI
+jI
+jI
+ng
+jI
+pw
+jI
+ng
+jI
+jI
+jI
+ng
+rq
+Ix
+CF
+CF
+CF
+Ix
+FQ
+Ix
+CF
+CF
+CF
+Ix
+rq
+wr
+Xe
+kl
+kl
+kl
+Xe
+XW
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+My
+pB
+Ow
+pB
+My
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+GQ
+Pl
+iA
+Xe
+kl
+kl
+kl
+Xe
+sU
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+hB
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+RV
+Ax
+Ax
+RV
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+hB
+UP
+UP
+UP
+"}
+(86,1,2) = {"
+gR
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+Uc
+UI
+UI
+RW
+gR
+rq
+jr
+UM
+UM
+UM
+UM
+jr
+rq
+rq
+Wf
+rA
+vc
+vc
+rA
+Yq
+Yq
+Sn
+PH
+Bz
+Bz
+Bz
+Bz
+tY
+rA
+Cx
+rq
+rq
+rq
+vs
+mb
+tn
+tn
+tn
+tn
+tn
+lB
+tn
+tn
+tn
+tn
+tn
+mb
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+dC
+Yq
+Yq
+Yq
+Yq
+Yq
+rA
+Wt
+NX
+NX
+NN
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Zg
+rA
+rq
+mb
+Sh
+wb
+Dm
+VG
+OY
+VG
+Cm
+wb
+Qk
+mb
+rq
+rq
+fl
+jG
+dD
+Qj
+VP
+FM
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+WF
+Ld
+Ld
+Ld
+zJ
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+YS
+wK
+oJ
+Yr
+dD
+vG
+VP
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(87,1,2) = {"
+gR
+Ld
+Ld
+CZ
+Ld
+FK
+CZ
+Ld
+xD
+CZ
+Ld
+FK
+CZ
+yR
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+tC
+Ld
+AY
+CZ
+Ld
+Ld
+CZ
+Ld
+Uq
+qm
+gR
+rq
+qV
+mR
+mR
+mR
+rH
+qV
+rq
+rq
+Wf
+rA
+rA
+rA
+rA
+Yq
+xV
+rA
+ng
+Bz
+Bz
+Bz
+Bz
+XU
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+LG
+tn
+wT
+cQ
+cQ
+cQ
+nz
+tn
+LG
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+jC
+Yq
+hL
+dd
+Yq
+Yq
+BG
+Yq
+rA
+mE
+NX
+NX
+aB
+Rt
+Rt
+Nt
+Nt
+Nt
+sd
+Rt
+rA
+rq
+mb
+xY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+XD
+mb
+rq
+rq
+fl
+Oe
+zM
+US
+gv
+TL
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+Ld
+Ld
+Ck
+Ld
+Ld
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+fx
+gv
+US
+zM
+PU
+VP
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(88,1,2) = {"
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Jp
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+qV
+mR
+mR
+mR
+mR
+qV
+rq
+rq
+Wf
+ng
+jQ
+jQ
+rA
+Yq
+Yq
+Sn
+PH
+Bz
+Bz
+Bz
+Bz
+tY
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+uk
+Ul
+RF
+vJ
+Gn
+vJ
+oa
+Ul
+xn
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+DJ
+Ne
+Xs
+Ne
+iN
+Yq
+rA
+mE
+NX
+NX
+Sg
+Rt
+Rt
+eX
+eX
+eX
+WB
+Rt
+Lk
+rq
+mb
+OY
+YX
+lM
+pG
+lM
+sD
+lM
+Qc
+OY
+mb
+rq
+rq
+fl
+CU
+US
+Ew
+VP
+TL
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+Ld
+Ld
+Ld
+Ld
+Ld
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+fx
+oJ
+yE
+US
+ST
+VP
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Xe
+SC
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(89,1,2) = {"
+gR
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Jp
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Ld
+Ld
+qm
+gR
+rq
+jr
+mR
+mR
+mR
+mR
+jr
+rq
+rq
+Wf
+rA
+tP
+tP
+ng
+Yq
+xV
+rA
+ng
+Bz
+Bz
+Bz
+Bz
+Bp
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+LG
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+LG
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ng
+Kw
+Yq
+Yq
+Yq
+Yq
+Yq
+WR
+ng
+bX
+NX
+dY
+Sg
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+rA
+rq
+Ix
+OY
+ko
+lM
+uj
+lM
+Ps
+lM
+tf
+OY
+Ix
+rq
+wr
+Xe
+KR
+gv
+KR
+Xe
+Lt
+eR
+Ld
+Ld
+Ld
+at
+tE
+tE
+at
+tE
+tE
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+eR
+yQ
+Xe
+KR
+gv
+KR
+Xe
+sU
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+th
+th
+th
+th
+th
+Aq
+oo
+er
+Rt
+Rt
+Rt
+Rt
+lj
+oo
+Wg
+Wg
+Wg
+km
+oo
+Lo
+kA
+fj
+hW
+FO
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(90,1,2) = {"
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Jp
+Ld
+Ld
+Ld
+Ld
+Ld
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+qV
+mR
+mR
+mR
+mR
+qV
+rq
+rq
+Wf
+rA
+Yq
+Yq
+zK
+Yq
+Yq
+Sn
+PH
+Bz
+Bz
+Bz
+PJ
+tY
+rA
+Cx
+rq
+rq
+rq
+vs
+Ix
+TQ
+LG
+TQ
+LG
+tn
+tn
+tn
+LG
+eM
+LG
+eM
+Ix
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+Ut
+Js
+Yq
+Nl
+Ir
+Yq
+rA
+WY
+yy
+PG
+sq
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Zg
+ng
+rq
+mb
+OY
+iH
+lM
+Vg
+lM
+Vg
+lM
+dF
+OY
+mb
+rq
+rq
+QS
+uP
+Yn
+Yn
+kq
+eR
+Ld
+Ld
+Ld
+Ld
+tE
+JT
+CQ
+qQ
+CQ
+JT
+Ma
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+NM
+gv
+US
+ED
+oo
+hZ
+oo
+hZ
+oo
+Xe
+eR
+kq
+xs
+xs
+sR
+QS
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+Rt
+Rt
+Rt
+Rt
+Rt
+yM
+oo
+ak
+Rt
+Rt
+Rt
+Rt
+yM
+Xe
+ak
+Rt
+Rt
+Rt
+Xe
+Rt
+Rt
+Rt
+Rt
+hW
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(91,1,2) = {"
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+qV
+mR
+mR
+mR
+mR
+qV
+rq
+rq
+Wf
+ng
+lP
+Yq
+ng
+rA
+rA
+rA
+ng
+rA
+ng
+zK
+ng
+rA
+ng
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+LG
+TQ
+LG
+LG
+tn
+LG
+LG
+eM
+LG
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+WL
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+rA
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+ng
+rq
+mb
+OY
+QM
+lM
+lM
+lM
+lM
+lM
+bI
+OY
+mb
+rq
+rq
+qT
+pl
+eR
+eR
+eR
+Ld
+Ld
+Ld
+Ld
+Ld
+at
+rV
+CQ
+XH
+CQ
+rV
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+Xe
+US
+Zq
+Xe
+SC
+Xe
+SC
+Xe
+oo
+Xe
+eR
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+Dp
+oi
+Rt
+Rt
+oi
+oM
+SC
+lL
+kK
+Cb
+hW
+hW
+oM
+SC
+lL
+Rt
+Rt
+Rt
+SC
+Rt
+Rt
+oi
+Rt
+GC
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(92,1,2) = {"
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+jr
+jr
+do
+jr
+qV
+jr
+rq
+rq
+Wf
+rA
+Yq
+Yq
+Yq
+Yq
+zK
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Rc
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+uk
+Ul
+TQ
+LG
+TR
+LG
+eM
+Ul
+xn
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+Km
+Yq
+Yq
+Yq
+fi
+Yq
+rA
+Rt
+He
+Xe
+dm
+Rt
+mQ
+Ov
+Bb
+EX
+Ep
+Rt
+Lk
+rq
+mb
+xY
+Vg
+lM
+Xb
+dg
+jH
+lM
+IB
+FL
+mb
+rq
+rq
+EK
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+tE
+qQ
+CQ
+qQ
+CQ
+qQ
+Ma
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Uk
+gv
+US
+Ye
+oo
+Rt
+Gm
+Rt
+oo
+oo
+oo
+Xe
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+Rt
+Rt
+Rt
+Rt
+Rt
+yM
+oo
+ak
+kK
+Rt
+hQ
+Wh
+yM
+Xe
+ak
+Rt
+Rt
+Rt
+Xe
+QU
+Rt
+Rt
+Rt
+Lo
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(93,1,2) = {"
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+qV
+Ud
+uH
+CO
+CO
+jr
+rq
+rq
+Wf
+rA
+Yq
+Yq
+Yq
+xV
+ng
+rA
+rA
+ng
+ng
+zK
+ng
+rA
+ng
+Dc
+rq
+rq
+rq
+VH
+oY
+TQ
+LG
+LG
+tn
+dx
+dx
+dx
+tn
+LG
+LG
+eM
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ng
+Kw
+Km
+Yq
+Cj
+Yq
+fi
+WR
+ng
+Rt
+nq
+oo
+ip
+Rt
+Xe
+oo
+oo
+oo
+Xe
+Rt
+rA
+rq
+Ix
+OY
+OY
+OY
+OY
+Ls
+YC
+OY
+VG
+OY
+mb
+rq
+rq
+qT
+hR
+Fn
+dp
+yK
+PB
+ms
+Ld
+Ld
+Ld
+at
+bJ
+CQ
+XH
+CQ
+rV
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+Uk
+gv
+US
+Nn
+oo
+xv
+Rt
+MD
+oo
+qi
+Zh
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+th
+th
+th
+th
+th
+Aq
+oo
+er
+Rt
+Rt
+Rt
+Rt
+lj
+oo
+UZ
+UZ
+UZ
+WV
+oo
+QU
+QU
+QU
+Rt
+rn
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(94,1,2) = {"
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+qV
+bw
+uH
+uH
+uH
+do
+rq
+rq
+Wf
+ng
+Yq
+Yq
+Yq
+Yq
+Mb
+Mb
+nG
+rA
+kf
+Bz
+fe
+iE
+rA
+Cx
+rq
+rq
+rq
+vs
+Ix
+tn
+TQ
+LG
+LG
+LG
+tn
+LG
+LG
+LG
+eM
+tn
+Ix
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+re
+Yq
+Yq
+Yq
+Xx
+Yq
+rA
+kj
+rr
+oo
+Pm
+Rt
+tw
+WD
+nl
+nl
+AM
+Zg
+rA
+rq
+mb
+mb
+Ix
+mb
+Ix
+mb
+Ix
+OY
+OY
+OY
+Ix
+rq
+rq
+EK
+hR
+Fn
+AS
+nZ
+Wd
+xq
+Ld
+Ld
+Ld
+tE
+qQ
+CQ
+qQ
+CQ
+qQ
+Ma
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+oo
+Xe
+US
+hP
+Xe
+Xe
+SC
+Xe
+Xe
+KF
+ac
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+oo
+Xe
+SC
+SC
+Xe
+oo
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(95,1,2) = {"
+gR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+qm
+gR
+rq
+qV
+MW
+uH
+uH
+nt
+jr
+rq
+rq
+Wf
+rA
+Yq
+Yq
+Yq
+Yq
+Mb
+Mb
+nG
+rA
+SO
+Bz
+Bz
+KK
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+tn
+tn
+dx
+dx
+dx
+tn
+dx
+dx
+dx
+tn
+tn
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+jC
+Yq
+re
+Yq
+Yq
+Yq
+Xx
+Yq
+rA
+Rt
+ss
+Xe
+BL
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+rA
+rq
+mb
+Od
+mb
+Od
+mb
+Od
+mb
+OY
+RI
+OY
+mb
+rq
+rq
+qT
+hR
+Fn
+gz
+jA
+JQ
+gx
+Ld
+Ld
+Ld
+at
+rV
+CQ
+XH
+CQ
+CX
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+Nx
+gv
+US
+US
+gv
+US
+US
+US
+SC
+Rt
+ac
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+zY
+zY
+Rt
+tD
+yB
+oo
+az
+bD
+cl
+cl
+gd
+ew
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(96,1,2) = {"
+gR
+Ld
+yh
+CZ
+Ld
+Ld
+CZ
+Ld
+yh
+CZ
+Ld
+Ld
+CZ
+Jp
+Fv
+Fv
+Fv
+Fv
+Fv
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+yh
+qm
+gR
+rq
+jr
+MW
+uH
+uH
+cJ
+jr
+rq
+rq
+Wf
+rA
+lP
+Yq
+ng
+rA
+ng
+rA
+rA
+ng
+kf
+Bz
+Bz
+iE
+rA
+Dc
+rq
+rq
+rq
+VH
+oY
+tn
+JY
+Ul
+Ek
+tn
+Ca
+tn
+tn
+uF
+HR
+tn
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+Gs
+Yq
+Yq
+Yq
+nK
+Yq
+rA
+Rt
+ro
+Xe
+hU
+Rt
+ng
+rA
+rA
+rA
+rA
+rA
+ng
+rq
+Ix
+mS
+mb
+mS
+mb
+mS
+mb
+OY
+Je
+OY
+mb
+rq
+rq
+EK
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+tE
+qQ
+CQ
+qQ
+CQ
+qQ
+Ma
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Nx
+gv
+US
+qP
+Xe
+PP
+US
+UJ
+Xe
+KF
+ac
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Rt
+Rt
+Rt
+Rt
+tD
+Xe
+az
+bD
+Rt
+Rt
+NK
+gc
+MO
+Ub
+ii
+ii
+ii
+ii
+ii
+ii
+ii
+Sk
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(97,1,2) = {"
+gR
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Ld
+Ld
+tC
+Ld
+qs
+tC
+Jp
+Fv
+Fv
+Fv
+Fv
+Fv
+rG
+Ld
+if
+tC
+Ld
+qs
+tC
+Ld
+Ld
+tC
+Ld
+Ld
+qm
+gR
+rq
+In
+uH
+uH
+uH
+uH
+VL
+rq
+rq
+Wf
+ng
+Yq
+Yq
+rA
+Vr
+Yq
+Yq
+wZ
+ng
+rA
+rA
+rA
+rA
+ng
+Dc
+rq
+rq
+rq
+VH
+oY
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ng
+Kw
+nK
+Yq
+Cj
+Yq
+Bh
+WR
+ng
+Rt
+KS
+oo
+oE
+Rt
+pw
+dE
+OO
+rQ
+rA
+ng
+rq
+rq
+mb
+JO
+Ix
+JO
+Ix
+JO
+Ix
+OY
+Je
+OY
+mb
+rq
+rq
+qT
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+at
+rV
+CQ
+XH
+CQ
+rV
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+Xe
+oo
+oo
+Xe
+oo
+Xe
+tR
+Xe
+oo
+oo
+Xe
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+ld
+JS
+Rt
+oi
+Rt
+Rt
+SC
+NG
+Rt
+cl
+cl
+gd
+nm
+Xe
+ak
+cI
+Da
+dj
+Da
+dj
+Da
+dj
+Mx
+Rt
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(98,1,2) = {"
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Jp
+Fv
+Fv
+Fv
+Fv
+Fv
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+In
+uH
+NI
+uH
+uH
+VL
+rq
+rq
+Wf
+rA
+Yq
+Yq
+rA
+un
+Yq
+Yq
+Mk
+rA
+rO
+zb
+Ne
+Yq
+rA
+Cx
+rq
+rq
+rq
+vs
+mb
+ur
+Ii
+Ii
+LG
+LG
+tn
+LG
+LG
+LG
+LG
+LG
+mb
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+jN
+Yq
+Yq
+Yq
+Du
+Yq
+rA
+kj
+LX
+oo
+Nj
+Rt
+rA
+OO
+rA
+rA
+ng
+rq
+rq
+rq
+mb
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+mb
+rq
+rq
+EK
+hR
+Fn
+dp
+yK
+PB
+ms
+Ld
+Ld
+Ld
+tE
+CQ
+CQ
+CQ
+CQ
+CQ
+LO
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+US
+qo
+US
+US
+US
+qo
+US
+US
+US
+qo
+lI
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Rt
+Rt
+Rt
+Rt
+Rt
+Xe
+az
+Rt
+Rt
+Rt
+Rt
+Lv
+SC
+ak
+Sw
+TO
+cs
+TO
+cs
+TO
+cs
+lN
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(99,1,2) = {"
+gR
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+yR
+Fv
+Fv
+Fv
+Fv
+Fv
+rG
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+CZ
+Ld
+Ld
+qm
+gR
+rq
+jr
+Ml
+uH
+uH
+uH
+jr
+rq
+rq
+Wf
+rA
+Yq
+Yq
+rA
+Re
+Yq
+Yq
+fa
+rA
+WS
+Yq
+Xs
+Yq
+rA
+rA
+rq
+rq
+rq
+ao
+Ix
+mb
+mb
+mb
+mb
+Ix
+nD
+Ix
+mb
+mb
+mb
+mb
+Ix
+ao
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+jC
+Yq
+Dt
+Yq
+Yq
+Yq
+Nm
+Yq
+rA
+Rt
+Fe
+Xe
+kI
+Rt
+rA
+HG
+rA
+ng
+rq
+rq
+rq
+rq
+mb
+OY
+VG
+OY
+OY
+OY
+VG
+OY
+Vv
+OY
+mb
+rq
+rq
+qT
+hR
+Fn
+AS
+nZ
+Wd
+xq
+Ld
+Ld
+Ld
+at
+CQ
+CQ
+CQ
+CQ
+FI
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+gv
+US
+US
+US
+US
+US
+US
+US
+US
+US
+US
+lI
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Hp
+Hp
+Rt
+Rt
+Zg
+oo
+az
+bD
+Rt
+Rt
+Rt
+AX
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(100,1,2) = {"
+gR
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+yR
+Fv
+Fv
+Fv
+Fv
+Fv
+rG
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+CW
+qt
+qt
+nF
+gR
+rq
+qV
+vC
+vC
+vC
+vC
+qV
+rq
+rq
+Wf
+ng
+Yq
+Yq
+zK
+Yq
+Yq
+Yq
+id
+rA
+bG
+lg
+Ne
+Yq
+rj
+HI
+rq
+rq
+rq
+ZI
+VH
+Ix
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+Ix
+Wx
+ZI
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+jC
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+rA
+Rt
+Rt
+Rt
+Rt
+wG
+rA
+rA
+ng
+rq
+rq
+rq
+rq
+rq
+Ix
+so
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+so
+Ix
+rq
+rq
+EK
+hR
+Fn
+gz
+jA
+JQ
+gx
+Ld
+Ld
+Ld
+tE
+YU
+Yp
+FI
+QL
+xh
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+US
+Lx
+US
+US
+US
+Lx
+US
+US
+US
+Lx
+mM
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+oo
+oo
+Xe
+WG
+Ih
+WG
+Xe
+Ji
+iK
+Rt
+Rt
+Rt
+IP
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(101,1,2) = {"
+CH
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+fU
+CH
+Dn
+jr
+qV
+qV
+qV
+qV
+jr
+rq
+rq
+Wf
+rA
+lP
+Yq
+ng
+rA
+rA
+rA
+rA
+ng
+lP
+Mm
+Ne
+xV
+ng
+Di
+rq
+rq
+rq
+wA
+vs
+oY
+tn
+tn
+tn
+uW
+uW
+uW
+tn
+tn
+tn
+oY
+hz
+wA
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ng
+rA
+rA
+rA
+ng
+rA
+rA
+rA
+ng
+rA
+rA
+rA
+ng
+rA
+rA
+ng
+rq
+rq
+rq
+cA
+rq
+rq
+mb
+mb
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+mb
+mb
+rq
+rq
+qT
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+at
+tE
+tE
+at
+tE
+tE
+at
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+Xe
+Cn
+Cn
+Cn
+Xe
+Cn
+Cn
+Cn
+Xe
+oo
+Xe
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+zY
+zY
+Rt
+Rt
+Zg
+oo
+az
+bD
+cl
+cl
+gd
+ew
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(102,1,2) = {"
+zy
+zy
+zy
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+zy
+zy
+zy
+OL
+rq
+rq
+Wf
+rA
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+zK
+Yq
+Yq
+Yq
+Yq
+WL
+Di
+rq
+rq
+rq
+rq
+VH
+oY
+tn
+JY
+Hr
+ad
+kU
+ad
+IQ
+HR
+tn
+oY
+Wx
+jU
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+EK
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ct
+Ct
+Ct
+Ld
+Ct
+Ct
+Ct
+Ld
+Ld
+Ld
+Ld
+Ld
+GF
+My
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Rt
+Rt
+Rt
+Rt
+Rt
+Xe
+az
+Rt
+Rt
+Rt
+NK
+gc
+MO
+Ub
+ii
+ii
+ii
+ii
+ii
+ii
+ii
+Sk
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(103,1,2) = {"
+zy
+rq
+rq
+rq
+hA
+MH
+MH
+hA
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Jo
+SU
+SU
+Jo
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+oF
+md
+md
+oF
+rq
+rq
+rq
+zy
+zy
+OL
+rq
+rq
+Wf
+rA
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+ng
+Yu
+ej
+Yu
+ej
+ng
+Di
+rq
+rq
+rq
+rq
+vs
+oY
+tn
+tn
+Lq
+fR
+fR
+fR
+II
+tn
+tn
+oY
+hz
+rq
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+tp
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+qT
+hR
+Fn
+dp
+yK
+PB
+ms
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+xo
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+ld
+JS
+Rt
+oi
+Rt
+Rt
+SC
+NG
+Rt
+cl
+cl
+gd
+nm
+Xe
+ak
+cI
+Da
+dj
+Da
+dj
+Da
+dj
+Mx
+Rt
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(104,1,2) = {"
+rq
+rq
+hA
+MH
+hA
+nL
+nL
+hA
+MH
+hA
+rq
+rq
+zy
+rq
+rq
+Jo
+SU
+Jo
+ml
+ml
+Jo
+SU
+Jo
+rq
+rq
+rq
+rq
+rq
+oF
+md
+oF
+rY
+rY
+oF
+md
+oF
+rq
+zy
+rq
+tL
+rq
+rq
+Wf
+ng
+rA
+rA
+ng
+rA
+rA
+rA
+rA
+ng
+rA
+rA
+rA
+rA
+ng
+rA
+Kb
+rq
+rq
+rq
+iP
+mb
+tn
+tn
+Lq
+fR
+fR
+fR
+II
+tn
+tn
+mb
+Cg
+rq
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+EK
+hR
+Fn
+AS
+nZ
+Wd
+xq
+Ld
+Ld
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+Ld
+Ld
+Ld
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+qd
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Rt
+Rt
+Rt
+Rt
+Rt
+Xe
+ET
+Rt
+Rt
+Rt
+Rt
+Lv
+SC
+ak
+Sw
+TO
+cs
+TO
+cs
+TO
+cs
+lN
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(105,1,2) = {"
+rq
+rq
+MH
+nL
+nL
+nL
+nL
+nL
+nL
+MH
+rq
+rq
+zy
+rq
+rq
+SU
+ml
+ml
+ml
+ml
+ml
+ml
+SU
+rq
+rq
+rq
+zy
+rq
+md
+rY
+rY
+rY
+rY
+rY
+rY
+md
+rq
+rq
+rq
+my
+rq
+rq
+Wf
+gR
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+sA
+sA
+rq
+jV
+Ix
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+Ix
+KZ
+rq
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Xe
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+Xe
+Xe
+rq
+rv
+MM
+MM
+MM
+rv
+mG
+rv
+MM
+MM
+MM
+rv
+rq
+rq
+qT
+hR
+Fn
+gz
+jA
+JQ
+gx
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+xo
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+JF
+Hp
+Hp
+Rt
+Rt
+Zg
+oo
+ET
+Rt
+Rt
+Rt
+Rt
+AX
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(106,1,2) = {"
+rq
+hA
+hA
+nL
+nL
+nL
+nL
+nL
+nL
+hA
+hA
+rq
+zy
+rq
+Jo
+Jo
+ml
+ml
+ml
+ml
+ml
+ml
+Jo
+Jo
+rq
+zy
+zy
+oF
+oF
+rY
+rY
+rY
+rY
+rY
+rY
+oF
+oF
+rq
+rq
+OL
+rq
+rq
+Wf
+gR
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+sA
+sA
+rq
+jV
+nD
+tn
+JY
+Ul
+in
+vJ
+oa
+uF
+HR
+tn
+nD
+VC
+rq
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Kg
+Xe
+wh
+eP
+BA
+yX
+Xe
+Sv
+Sv
+iw
+Xe
+op
+vB
+Xe
+NX
+cK
+hE
+dG
+Eb
+oo
+KA
+rq
+MM
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+MM
+rq
+rq
+EK
+hR
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Sf
+Sf
+Sf
+Ld
+Sf
+Sf
+Sf
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Bs
+My
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+eA
+Rt
+Rt
+Rt
+Vp
+IP
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(107,1,2) = {"
+rq
+MH
+nL
+nL
+nL
+Yy
+Yy
+nL
+nL
+nL
+MH
+zy
+zy
+rq
+SU
+ml
+ml
+ml
+gb
+gb
+ml
+ml
+ml
+SU
+rq
+zy
+zy
+md
+rY
+rY
+rY
+Ob
+Ob
+rY
+rY
+rY
+md
+rq
+rq
+OL
+rq
+rq
+Wf
+gR
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+sA
+sA
+rq
+jV
+Ix
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+Ix
+Qy
+rq
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ug
+Av
+NX
+NX
+NX
+NX
+vA
+NX
+NX
+NX
+vA
+NX
+NX
+iR
+NX
+NX
+fm
+QE
+ja
+oo
+eh
+rq
+Ll
+jl
+vP
+pr
+jl
+ID
+jl
+mu
+lC
+jl
+Ll
+rq
+rq
+qT
+pl
+eR
+eR
+at
+at
+dn
+dn
+at
+at
+at
+dn
+dn
+dn
+dn
+at
+at
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+JX
+JX
+JX
+Xe
+JX
+JX
+JX
+Xe
+Xe
+Dk
+Xe
+Xe
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+qq
+Nq
+RH
+Nq
+qq
+Nq
+oo
+ET
+Rt
+cl
+cl
+gd
+ew
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(108,1,2) = {"
+rq
+MH
+nL
+nL
+nL
+Yy
+Yy
+nL
+nL
+nL
+MH
+zy
+zy
+rq
+SU
+ml
+ml
+ml
+gb
+gb
+ml
+ml
+ml
+SU
+rq
+zy
+rq
+md
+rY
+rY
+rY
+Ob
+Ob
+rY
+rY
+rY
+md
+rq
+rq
+OL
+rq
+rq
+Wf
+jr
+qV
+qV
+jr
+qV
+qV
+jr
+qV
+jr
+jr
+qV
+qV
+jr
+jr
+qV
+rq
+rq
+Kb
+rq
+Wv
+mb
+tn
+tn
+Lq
+gw
+gw
+gw
+II
+tn
+tn
+mb
+AT
+rq
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+ug
+Av
+qW
+lV
+kb
+aJ
+Xe
+pf
+Kx
+pf
+Xe
+NX
+NX
+Xe
+aa
+cK
+Yi
+hu
+rS
+oo
+eh
+rq
+Ll
+jl
+PT
+Tn
+jl
+bo
+jl
+li
+pI
+jl
+Ll
+rq
+rq
+EK
+pl
+eR
+eR
+tE
+yS
+CQ
+Vd
+PD
+tE
+hh
+Sc
+Sc
+Sc
+Sc
+hh
+at
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+aU
+zA
+aU
+zA
+aU
+zA
+aU
+oo
+qR
+Rt
+TG
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+qq
+IR
+fQ
+IR
+qq
+Nq
+oo
+ET
+Rt
+Rt
+Rt
+NK
+gc
+MO
+Ub
+ii
+ii
+ii
+ii
+ii
+ii
+ii
+Sk
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(109,1,2) = {"
+rq
+hA
+hA
+nL
+nL
+nL
+nL
+nL
+nL
+hA
+hA
+rq
+zy
+zy
+Jo
+Jo
+ml
+ml
+ml
+ml
+ml
+ml
+Jo
+Jo
+rq
+zy
+rq
+oF
+oF
+rY
+rY
+rY
+rY
+rY
+rY
+oF
+oF
+rq
+rq
+OL
+rq
+rq
+Wf
+qV
+FG
+vD
+wi
+wi
+wi
+vD
+wd
+qV
+uH
+RQ
+RQ
+RQ
+jr
+OP
+rq
+rq
+rq
+rq
+vs
+oY
+tn
+tn
+Lq
+gw
+gw
+gw
+II
+tn
+tn
+oY
+hz
+rq
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Kg
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+Xe
+NX
+NX
+Xe
+oo
+oo
+oo
+oo
+oo
+Xe
+KA
+rq
+Ll
+jl
+vP
+bf
+jl
+Sp
+jl
+EV
+aq
+jl
+Ll
+rq
+rq
+qT
+pl
+eR
+eR
+tE
+FT
+OV
+eB
+Rj
+at
+CQ
+qF
+eW
+eW
+eW
+CQ
+LO
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+oo
+UE
+Rt
+TG
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+aw
+dM
+Is
+vO
+Bn
+Bi
+oo
+YZ
+Rt
+cl
+cl
+gd
+nm
+Xe
+ak
+cI
+Da
+dj
+Da
+dj
+Da
+dj
+Mx
+Rt
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(110,1,2) = {"
+rq
+rq
+MH
+nL
+nL
+nL
+nL
+nL
+nL
+MH
+rq
+rq
+rq
+zy
+rq
+SU
+ml
+ml
+ml
+ml
+ml
+ml
+SU
+rq
+rq
+zy
+zy
+rq
+md
+rY
+rY
+rY
+rY
+rY
+rY
+md
+rq
+rq
+tp
+my
+rq
+rq
+Wf
+qV
+KE
+vE
+OD
+ny
+dS
+vE
+EJ
+jr
+uH
+uH
+uH
+uH
+do
+OP
+rq
+rq
+rq
+rq
+VH
+oY
+tn
+JY
+Hr
+yG
+yG
+yG
+IQ
+HR
+tn
+oY
+Wx
+rq
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+ug
+Av
+rB
+Rt
+Rt
+Rt
+lh
+CL
+Aw
+oo
+Sg
+NX
+NX
+iR
+os
+cK
+Xn
+aT
+wl
+oo
+eh
+rq
+rv
+XZ
+HF
+AU
+jl
+ID
+jl
+PR
+Rg
+wp
+rv
+rq
+rq
+EK
+pl
+eR
+eR
+tE
+CQ
+CQ
+CQ
+CQ
+LO
+CQ
+Sc
+Sc
+Sc
+Sc
+CQ
+at
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+kj
+hW
+hW
+hW
+gI
+DX
+Zg
+Xe
+qR
+Rt
+TG
+oo
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+aw
+dM
+HT
+LT
+Ly
+JS
+Xe
+ET
+Rt
+Rt
+Rt
+Rt
+Lv
+SC
+ak
+Sw
+TO
+cs
+TO
+cs
+TO
+cs
+lN
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(111,1,2) = {"
+rq
+rq
+hA
+MH
+hA
+nL
+nL
+hA
+MH
+hA
+rq
+rq
+rq
+rq
+rq
+Jo
+SU
+Jo
+ml
+ml
+Jo
+SU
+Jo
+rq
+rq
+rq
+zy
+rq
+oF
+md
+oF
+rY
+rY
+oF
+md
+oF
+rq
+rq
+rq
+tL
+rq
+rq
+Wf
+qV
+Dl
+vE
+vE
+vE
+oB
+vE
+EJ
+qV
+uH
+jr
+vu
+Iy
+jr
+OP
+rq
+rq
+rq
+wA
+vs
+oY
+tn
+tn
+tn
+gH
+gH
+gH
+tn
+tn
+tn
+oY
+hz
+wA
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ug
+Av
+qR
+Rt
+Rt
+Rt
+JH
+Rt
+EZ
+oo
+WX
+NX
+NX
+Xe
+SM
+NX
+Yi
+hu
+rS
+oo
+eh
+rq
+MM
+jl
+AU
+Jq
+jl
+jl
+jl
+Me
+PR
+jl
+MM
+rq
+rq
+qT
+pl
+eR
+eR
+tE
+ar
+Vs
+Vs
+me
+at
+CQ
+CQ
+CQ
+CQ
+CQ
+Kd
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Dk
+Rt
+Rt
+Rt
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+aw
+dM
+HT
+LT
+HX
+Rt
+SC
+NG
+Rt
+Rt
+Rt
+Rt
+AX
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(112,1,2) = {"
+rq
+rq
+rq
+rq
+hA
+MH
+MH
+hA
+HK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Jo
+SU
+SU
+Jo
+HK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+oF
+md
+md
+oF
+HK
+rq
+rq
+rq
+rq
+OL
+rq
+rq
+Wf
+jr
+RK
+vE
+vE
+Of
+hH
+vE
+EJ
+qV
+uH
+uH
+gu
+uH
+GY
+NW
+rq
+rq
+rq
+ZI
+VH
+Ix
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+Ix
+Wx
+ZI
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Sl
+Xe
+hd
+Rt
+Rt
+wB
+Xe
+Jt
+oo
+Xe
+Xe
+Ol
+NX
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+KA
+rq
+MM
+jl
+PT
+as
+jl
+jl
+jl
+PR
+vo
+jl
+MM
+rq
+rq
+EK
+pl
+eR
+eR
+at
+tE
+tE
+tE
+tE
+at
+CQ
+at
+tE
+Zp
+Hj
+tE
+at
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+Xe
+NL
+Xe
+Xe
+Xe
+NL
+Xe
+Xe
+Yt
+JU
+Yt
+Xe
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+aw
+dM
+dy
+wu
+Rf
+JS
+Xe
+eA
+Vp
+Rt
+Rt
+Rt
+IP
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(113,1,2) = {"
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+Dn
+YL
+YL
+OL
+rq
+rq
+Wf
+qV
+QX
+vE
+HJ
+GJ
+dS
+vE
+Do
+jr
+SI
+qV
+qV
+qV
+jr
+qV
+rq
+rq
+rq
+ao
+Ix
+mb
+mb
+mb
+mb
+Ix
+nD
+Ix
+mb
+mb
+mb
+mb
+Ix
+ao
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+bS
+Hh
+Rt
+Rt
+Rt
+Rt
+su
+NX
+NX
+NX
+NX
+NX
+NX
+su
+NX
+NX
+NX
+NX
+GB
+oo
+eh
+rq
+rv
+jl
+PS
+Ry
+jl
+ID
+jl
+Me
+Ap
+jl
+rv
+rq
+rq
+qT
+pl
+eR
+eR
+tE
+MG
+CQ
+CQ
+CQ
+at
+CQ
+tE
+wX
+CQ
+CQ
+tW
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+GW
+NX
+Cz
+oo
+Mu
+NX
+NX
+UA
+cX
+Sx
+cX
+oo
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+aw
+nx
+HT
+Jz
+HX
+Rt
+SC
+NG
+Rt
+cl
+cl
+gd
+ew
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(114,1,2) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+Mz
+ky
+wi
+wi
+gh
+ky
+wi
+qV
+wi
+wi
+wi
+Us
+jr
+rE
+rq
+rq
+rq
+vs
+mb
+nA
+lD
+eE
+lD
+mb
+tn
+mb
+lD
+eE
+lD
+Zu
+mb
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+bS
+Hh
+Rt
+Rt
+Rt
+Rt
+su
+NX
+NX
+NX
+NX
+NX
+NX
+Xe
+ai
+NX
+Sg
+NX
+ai
+oo
+eh
+rq
+MM
+jl
+AN
+PT
+jl
+jl
+jl
+oG
+RA
+jl
+MM
+rq
+rq
+EK
+pl
+eR
+eR
+at
+tE
+MG
+CQ
+CQ
+LO
+CQ
+at
+AC
+CQ
+CQ
+tW
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+NX
+NX
+NX
+oo
+kb
+NX
+XQ
+Xe
+ah
+CC
+oo
+Xe
+eR
+eR
+eV
+EK
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+aw
+nx
+HT
+Jz
+Ly
+JS
+Xe
+ET
+Rt
+Rt
+Rt
+NK
+gc
+MO
+Ub
+ii
+ii
+ii
+ii
+ii
+ii
+ii
+Sk
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(115,1,2) = {"
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+pX
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Eq
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+oh
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+qV
+qV
+qV
+qV
+jr
+jr
+Lm
+jr
+wi
+wi
+wi
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+lD
+Po
+Bj
+ER
+mb
+tn
+mb
+PM
+Bj
+Po
+lD
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+oZ
+Xe
+Rt
+Rt
+Rt
+Lj
+Xe
+Xe
+ES
+Xe
+Xe
+Ol
+NX
+oo
+kW
+NX
+Sg
+NX
+GB
+Xe
+KA
+rq
+MM
+jl
+PT
+tK
+jl
+jl
+jl
+oG
+Mn
+jl
+MM
+rq
+rq
+qT
+pl
+eR
+eR
+eR
+at
+tE
+MG
+CQ
+at
+CQ
+cR
+CQ
+CQ
+CQ
+dh
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+NX
+ON
+NX
+oo
+kb
+NX
+Zs
+oo
+oo
+oo
+Xe
+eR
+eR
+eR
+eV
+qT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+aw
+nx
+ab
+ra
+TA
+Vy
+oo
+ym
+Rt
+cl
+cl
+gd
+nm
+Xe
+ak
+cI
+Da
+dj
+Da
+dj
+Da
+dj
+Mx
+Rt
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(116,1,2) = {"
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+oh
+rM
+Tw
+rM
+QK
+Tw
+rM
+rM
+rM
+uh
+Tw
+Tw
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+wi
+wi
+wi
+wi
+qV
+jd
+wi
+wi
+wi
+wi
+wi
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+lD
+lD
+lD
+lD
+mb
+tn
+mb
+lD
+lD
+lD
+lD
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+ug
+Av
+Rt
+Rt
+Rt
+Rt
+oo
+NX
+NX
+NX
+oo
+NX
+NX
+oo
+ai
+NX
+Sg
+NX
+ai
+oo
+eh
+rq
+rv
+XZ
+as
+sx
+jl
+ID
+jl
+gE
+Pn
+wp
+rv
+rq
+rq
+Pq
+WO
+DH
+DH
+Ns
+eR
+at
+tE
+MG
+tE
+xh
+at
+Vb
+Pb
+CQ
+fS
+tE
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+NX
+OI
+NX
+oo
+nk
+Cs
+nY
+oo
+oo
+Xe
+eR
+AI
+DH
+DH
+pO
+Pq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+qq
+ka
+zf
+ka
+qq
+Nq
+oo
+az
+bD
+Rt
+Rt
+Rt
+Lv
+SC
+ak
+Sw
+TO
+cs
+TO
+cs
+TO
+cs
+lN
+Rt
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(117,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+Tw
+rM
+wW
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+FG
+OD
+dS
+wi
+jr
+wi
+vE
+vE
+vE
+vE
+vE
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+gO
+al
+lD
+lD
+xj
+tn
+xj
+lD
+lD
+al
+gO
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ug
+Av
+xb
+xb
+xb
+mz
+oo
+NX
+NX
+NX
+Xe
+NX
+NX
+oo
+kW
+NX
+NX
+NX
+GB
+oo
+eh
+rq
+Ll
+jl
+BQ
+aL
+jl
+jl
+jl
+rF
+fr
+jl
+Ll
+rq
+wr
+Xe
+kl
+gv
+kl
+Xe
+Lt
+eR
+at
+tE
+at
+tE
+at
+tE
+tE
+tE
+tE
+at
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Xe
+eR
+yQ
+Xe
+kl
+gv
+kl
+Xe
+sU
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Oo
+aH
+qq
+Nq
+RH
+Nq
+qq
+Nq
+oo
+az
+bD
+Rt
+Rt
+Rt
+AX
+Xe
+uI
+Rt
+Rt
+oi
+Rt
+Rt
+oi
+Rt
+Rt
+Ij
+oo
+qB
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(118,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+oh
+rM
+rM
+zj
+rM
+rM
+rM
+rM
+wW
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+zj
+rM
+Tw
+Tw
+pX
+Tw
+Tw
+Tw
+oh
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+jd
+Of
+Xp
+wi
+pV
+wi
+vI
+zP
+vE
+zP
+vI
+Us
+jr
+rE
+rq
+rq
+rq
+vs
+Ix
+mb
+mb
+mb
+mb
+Ix
+JY
+Ix
+mb
+mb
+mb
+mb
+Ix
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Kg
+Xe
+oo
+oo
+oo
+oo
+Xe
+Ol
+Sg
+Qm
+oo
+NX
+NX
+Xe
+ai
+NX
+FE
+NX
+ai
+oo
+KA
+rq
+Ll
+jl
+BQ
+WW
+jl
+jl
+jl
+cT
+ww
+jl
+Ll
+rq
+rq
+fl
+Kf
+US
+yD
+VP
+TL
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+Ld
+Ld
+Ld
+Ld
+Ld
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+fx
+oJ
+bV
+US
+Xa
+VP
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+xf
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Mj
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(119,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+wW
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+wd
+vE
+hH
+wi
+jr
+wi
+qH
+Tf
+vE
+fI
+Es
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+eJ
+hg
+eS
+eJ
+mb
+tn
+mb
+nM
+lD
+DR
+gO
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+ug
+Rd
+NX
+EI
+EI
+EI
+Xe
+NX
+NX
+NX
+oo
+NX
+NX
+oo
+kW
+NX
+Sg
+NX
+GB
+Xe
+eh
+rq
+Ll
+jl
+AA
+Dv
+jl
+ID
+jl
+Gz
+xQ
+jl
+Ll
+rq
+rq
+fl
+Oe
+zM
+US
+gv
+TL
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+Ld
+Ld
+Ld
+Ld
+Ld
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+eR
+fx
+gv
+US
+zM
+PU
+VP
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+AW
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(120,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+rM
+rM
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+sf
+wi
+wi
+wi
+qV
+jd
+qH
+Ig
+cn
+fI
+Es
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+tn
+tn
+tn
+tn
+Xj
+tn
+xj
+lD
+lD
+nX
+Po
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+ug
+Rd
+NX
+NX
+NX
+NX
+eD
+NX
+Hw
+NX
+Xe
+NX
+NX
+oo
+ai
+NX
+Sg
+NX
+ai
+oo
+eh
+rq
+MM
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+jl
+MM
+rq
+rq
+fl
+MK
+nj
+qZ
+VP
+YV
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+qt
+qt
+qt
+qt
+qt
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+PL
+GR
+oJ
+qD
+nj
+cZ
+VP
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+AW
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+AW
+Ui
+Ui
+Ui
+"}
+(121,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+rM
+rM
+rM
+rM
+Tw
+XV
+Tw
+Tw
+Tw
+Tw
+rM
+uh
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+qV
+qV
+qV
+qV
+jr
+wi
+qH
+xk
+vE
+fI
+Es
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+eJ
+Hs
+eS
+eJ
+mb
+tn
+mb
+nM
+lD
+DP
+Bj
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Kg
+Xe
+Nu
+Kz
+Te
+Te
+Xe
+NX
+NX
+NX
+oo
+NX
+Qm
+oo
+kW
+NX
+NX
+NX
+GB
+oo
+KA
+rq
+rv
+MM
+MM
+MM
+rv
+MM
+rv
+MM
+MM
+MM
+rv
+Fa
+Uo
+Xe
+Mg
+Mg
+Mg
+Xe
+tc
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+JD
+ov
+Uw
+Xe
+Mg
+Mg
+Mg
+Xe
+sU
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+hB
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+hB
+Ui
+Ui
+Ui
+"}
+(122,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+wi
+wi
+wi
+wi
+Zc
+wi
+qH
+fI
+cn
+fI
+Es
+Us
+jr
+rE
+rq
+rq
+rq
+vs
+Ix
+mb
+mb
+mb
+mb
+Ix
+HR
+Ix
+mb
+mb
+mb
+mb
+Ix
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Xe
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Qr
+Qr
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+Xe
+vm
+vm
+rM
+rM
+rM
+rM
+Ei
+sm
+sm
+sm
+sm
+sm
+sm
+Ei
+sm
+sm
+sm
+sm
+sm
+sm
+Tw
+uh
+Tw
+Tw
+sm
+Tw
+sm
+Ei
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+sm
+Tw
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+sm
+Tw
+lq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+tg
+"}
+(123,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+FG
+OD
+dS
+wi
+jr
+wi
+qH
+fI
+fI
+fI
+Es
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+gO
+al
+lD
+lD
+xj
+tn
+xj
+lD
+lD
+al
+gO
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+DL
+rM
+Un
+rM
+Un
+Tw
+jT
+Un
+Un
+Tw
+Tw
+Tw
+Tw
+rM
+uh
+sK
+sm
+sm
+sJ
+sm
+sm
+uh
+sK
+sm
+sm
+sJ
+sm
+sm
+Tw
+Tw
+sm
+sm
+sm
+Tw
+sJ
+uh
+sK
+sm
+sm
+sJ
+sm
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+sm
+sm
+sm
+Tw
+sJ
+sm
+Tw
+Tw
+Tw
+sm
+sm
+sm
+Tw
+Fa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+tg
+"}
+(124,1,2) = {"
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+pX
+rM
+rM
+Tw
+oh
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+jd
+Of
+sF
+wi
+qV
+jd
+vI
+IO
+IO
+IO
+vI
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+lD
+lD
+lD
+lD
+mb
+tn
+mb
+lD
+lD
+lD
+lD
+oY
+Wx
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+BB
+lm
+Qb
+zG
+Ld
+Ld
+DL
+rM
+uh
+rM
+uh
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+jT
+uh
+Tw
+Tw
+Tw
+jT
+Un
+Un
+Tw
+Tw
+Tw
+Tw
+jT
+Un
+Un
+Tw
+Tw
+uh
+Pi
+sm
+sJ
+sm
+Tw
+sm
+Tw
+Tw
+jT
+Un
+Un
+Tw
+Tw
+sm
+sm
+jT
+uh
+Pi
+sm
+sJ
+sm
+Tw
+sm
+sm
+jT
+uh
+Pi
+sm
+sJ
+sm
+Tw
+Fa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+tE
+tE
+tE
+tE
+tE
+at
+tE
+at
+tE
+FN
+tE
+at
+rq
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(125,1,2) = {"
+zZ
+wW
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+wd
+vE
+hH
+wi
+qV
+wi
+vE
+vE
+vE
+vE
+vE
+wi
+GY
+KP
+rq
+rq
+rq
+VH
+oY
+lD
+Po
+Bj
+ER
+mb
+tn
+mb
+PM
+Bj
+Po
+lD
+oY
+Wx
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+MQ
+VY
+yT
+Ku
+Ld
+Ld
+DL
+rM
+jT
+rM
+jT
+sm
+sm
+jT
+Tw
+uh
+jT
+sm
+sm
+Uj
+uh
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+sm
+sm
+sm
+sm
+sm
+Tw
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+Mh
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Tw
+Fa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+ts
+st
+AE
+ye
+HP
+tE
+aK
+tE
+pT
+Au
+Tu
+tE
+rq
+tE
+Tu
+Au
+pT
+tE
+qQ
+Au
+CI
+tE
+CI
+Au
+pT
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(126,1,2) = {"
+zZ
+zZ
+zZ
+wW
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Eq
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+zj
+rM
+rM
+Id
+rq
+rq
+Wf
+qV
+sf
+wi
+wi
+wi
+qV
+wi
+wi
+wi
+wi
+wi
+wi
+Us
+jr
+rE
+rq
+rq
+rq
+vs
+mb
+nA
+lD
+lW
+lD
+mb
+Ah
+mb
+lD
+lW
+lD
+Zu
+mb
+hz
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Kn
+Ld
+Ld
+Ld
+DL
+rM
+uh
+rM
+uh
+sm
+sm
+uh
+Tw
+Tw
+sm
+Ei
+sm
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+jT
+sm
+sm
+sm
+jT
+Tw
+uh
+jT
+sm
+sm
+sm
+sm
+Tw
+Tw
+sJ
+sm
+sm
+sm
+jT
+Tw
+uh
+jT
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+Fa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+lA
+uL
+uL
+uL
+uL
+VE
+cD
+CQ
+tE
+CQ
+fA
+DF
+tE
+rq
+tE
+CQ
+fA
+DF
+tE
+CQ
+gS
+DF
+tE
+CQ
+gD
+DF
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(127,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+jr
+qV
+qV
+jr
+qV
+EG
+jr
+qV
+qV
+jr
+qV
+qV
+jr
+jr
+qV
+fU
+fU
+fU
+ao
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+ao
+Wf
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Fi
+Ld
+Ld
+DL
+rM
+sm
+rM
+sm
+rM
+Ei
+sm
+sm
+uh
+Tw
+Tw
+sm
+Ei
+sm
+sm
+sm
+uh
+Tw
+Tw
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Fa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+uL
+uU
+uU
+uL
+uL
+at
+tE
+at
+CQ
+CQ
+CQ
+tE
+rq
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(128,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+Wf
+MP
+Wf
+YK
+ZD
+An
+ZD
+An
+PO
+ZD
+An
+ZD
+An
+qI
+Wf
+MP
+Wf
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Fi
+Ld
+Ld
+DL
+rM
+zh
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+zX
+zX
+Md
+np
+np
+np
+Fa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+FN
+mB
+uo
+uo
+kS
+uL
+cD
+xi
+tE
+CQ
+Wb
+Py
+tE
+rq
+tE
+CQ
+lv
+Py
+tE
+CQ
+ll
+hb
+tE
+CQ
+jY
+GT
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(129,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+gR
+rq
+rq
+qv
+qv
+qv
+qv
+rq
+qv
+qv
+qv
+qv
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+DL
+rM
+en
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+np
+np
+np
+Fa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+FN
+mB
+uo
+Hx
+kS
+sr
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+at
+cD
+tE
+tE
+at
+cD
+tE
+tE
+at
+cD
+tE
+tE
+at
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(130,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Rl
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+Tp
+mb
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+mb
+Ty
+ow
+Ty
+mb
+UD
+rq
+rq
+rq
+gR
+rq
+rq
+fq
+rq
+ZR
+ZR
+ZR
+ZR
+ZR
+rq
+fq
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Fi
+Ld
+Ld
+DL
+rM
+en
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+qX
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+qX
+Gc
+Gc
+Gc
+zS
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+Gc
+qX
+Gc
+Gc
+Gc
+Gc
+Gc
+np
+np
+np
+Fa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+uL
+nE
+nE
+uL
+uL
+uL
+uL
+uL
+uL
+ZZ
+ni
+tE
+rq
+tE
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+ZZ
+ni
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(131,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+QR
+mb
+nP
+pZ
+pZ
+pZ
+pZ
+pZ
+nP
+mb
+Ty
+nP
+Ty
+mb
+Nw
+rq
+rq
+rq
+gR
+rq
+nJ
+ji
+iL
+sK
+jT
+jT
+sK
+jT
+CV
+ji
+MF
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Fi
+Ld
+Ld
+DL
+rM
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+bn
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+mb
+Ix
+mb
+Ix
+Co
+Ix
+GX
+GX
+GX
+DO
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+cD
+at
+tE
+at
+rq
+tE
+VE
+uL
+uL
+uL
+uL
+at
+tE
+at
+cD
+tE
+tE
+at
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(132,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+Id
+rq
+rq
+rq
+QR
+mb
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+mb
+Ty
+nP
+Ty
+mb
+Nw
+rq
+rq
+rq
+gR
+rq
+rq
+BV
+rq
+AV
+AV
+AV
+AV
+AV
+rq
+BV
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+DL
+rM
+mb
+mb
+NC
+NS
+bu
+iB
+mb
+mb
+NC
+NS
+tq
+tn
+mb
+mb
+NC
+NS
+bu
+xP
+mb
+mb
+NC
+NS
+bu
+tn
+mb
+mb
+NC
+NS
+bu
+tn
+mb
+mb
+QV
+XB
+Vj
+rT
+mb
+mb
+NC
+NS
+bu
+tn
+mb
+mb
+NC
+NS
+bu
+tn
+mb
+mb
+NC
+NS
+JZ
+tn
+mb
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+CQ
+Le
+Er
+tE
+CQ
+Xz
+Py
+tE
+CQ
+Fh
+Er
+tE
+rq
+tE
+HP
+mB
+uo
+kS
+uL
+tE
+aK
+tE
+CQ
+Fh
+Er
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(133,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+rq
+rq
+Tp
+mb
+nP
+nP
+nP
+sE
+nP
+nP
+nP
+Ix
+mb
+fd
+mb
+Ix
+UD
+rq
+rq
+rq
+bd
+rq
+rq
+rq
+Il
+eR
+je
+Bu
+zW
+eR
+aE
+rq
+rq
+rq
+bd
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+BB
+lm
+Qb
+zG
+Ld
+Ld
+DL
+rM
+mb
+QB
+nT
+zt
+xP
+mY
+mb
+QB
+tn
+qz
+RJ
+us
+mb
+QB
+tn
+xP
+iB
+mY
+mb
+QB
+xP
+xP
+zB
+mY
+mb
+QB
+iB
+qz
+iB
+mY
+mb
+QB
+Bk
+Vc
+qz
+tn
+mb
+MC
+tn
+xP
+iB
+mY
+mb
+QB
+tn
+xP
+tn
+mY
+mb
+QB
+zB
+xP
+tn
+mY
+mb
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+tE
+ts
+mB
+Hx
+kS
+uL
+cD
+CQ
+tE
+CQ
+CQ
+CQ
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(134,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+Eq
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+rq
+rq
+mb
+Ix
+xc
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+iS
+Ix
+mb
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Il
+UU
+QO
+Li
+QO
+ns
+aE
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+MQ
+VY
+yT
+Ku
+Ld
+Ld
+DL
+rM
+mb
+UK
+dR
+lf
+tn
+QC
+mb
+UK
+Lq
+mq
+qz
+QC
+mb
+UK
+Lq
+wH
+iB
+QC
+mb
+UK
+Lq
+eY
+iB
+QC
+mb
+UK
+Lq
+jy
+tn
+QC
+mb
+Cv
+Lq
+FU
+Bk
+tn
+mb
+UK
+Lq
+sY
+tn
+QC
+mb
+UK
+Fq
+bs
+iB
+QC
+mb
+UK
+fX
+Qx
+zB
+QC
+mb
+rq
+rq
+rq
+tp
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+tE
+CQ
+OS
+DF
+tE
+CQ
+gS
+DF
+tE
+CQ
+WE
+DF
+tE
+rq
+tE
+ye
+uL
+uL
+uL
+sr
+at
+tE
+at
+CQ
+Ao
+DF
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(135,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+Cl
+AL
+BU
+BU
+BU
+BU
+BU
+BU
+BU
+BU
+BU
+BU
+BU
+AL
+jD
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Il
+nh
+js
+wC
+oO
+dQ
+aE
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Kn
+Ld
+Ld
+Ld
+DL
+rM
+mb
+Ik
+xz
+mI
+tn
+DG
+mb
+Ik
+Zf
+Mq
+iB
+DG
+mb
+Ik
+pc
+FS
+xP
+tz
+mb
+Ik
+Zf
+FS
+iB
+yt
+mb
+Vo
+Zf
+FS
+tn
+yt
+mb
+Ik
+tX
+tn
+kB
+zB
+mb
+Ik
+pc
+gj
+tn
+yt
+mb
+Ik
+Zf
+ig
+zB
+yt
+mb
+Ik
+BI
+On
+zB
+UX
+mb
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+tE
+qQ
+Au
+qQ
+tE
+pT
+DV
+qQ
+tE
+Tu
+ML
+pT
+tE
+rq
+tE
+st
+cV
+uL
+uL
+uL
+cD
+xi
+tE
+qQ
+ML
+CI
+tE
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(136,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+mb
+Ix
+xc
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+nS
+iS
+Ix
+mb
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Il
+hX
+QO
+ve
+QO
+ic
+aE
+rq
+rq
+rq
+rq
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+UO
+RV
+Tq
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Bx
+Bx
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+mb
+Ix
+Gt
+Gt
+Ix
+Ix
+rq
+cA
+rq
+cu
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+tE
+FN
+tE
+at
+rq
+at
+tE
+at
+lA
+at
+tE
+at
+tE
+at
+tE
+FN
+tE
+at
+rq
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+iW
+"}
+(137,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+Tp
+Rh
+nP
+nP
+nP
+sE
+nP
+nP
+nP
+sE
+nP
+nP
+gB
+Uu
+UD
+rq
+rq
+rq
+bd
+rq
+rq
+rq
+Il
+eR
+MT
+nd
+Jl
+eR
+aE
+rq
+rq
+rq
+bd
+rq
+BP
+BP
+BP
+BP
+BP
+cA
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+iO
+rq
+rq
+rq
+rq
+rq
+rq
+qC
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+qC
+rq
+rq
+rq
+rq
+fu
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+fu
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+SK
+SK
+SK
+SK
+SK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+tg
+"}
+(138,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+rq
+rq
+QR
+Rh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+qK
+qK
+nP
+As
+Uu
+Nw
+rq
+rq
+rq
+gR
+rq
+rq
+fq
+rq
+bE
+bE
+bE
+bE
+bE
+rq
+fq
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+ik
+"}
+(139,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Xe
+wU
+wU
+Xe
+oo
+oo
+oo
+oo
+Xe
+wU
+wU
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+rM
+Id
+rq
+rq
+rq
+QR
+Rh
+nP
+Tv
+Tv
+Tv
+Tv
+Tv
+nP
+qK
+qK
+nP
+As
+Uu
+Nw
+rq
+rq
+rq
+gR
+rq
+nJ
+ji
+iL
+sK
+jT
+jT
+jT
+sK
+CV
+ji
+MF
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+yP
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+ik
+"}
+(140,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+oo
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+oo
+Rt
+Rt
+Rt
+Rt
+Rt
+Lc
+rM
+Id
+rq
+rq
+rq
+Tp
+Rh
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+PC
+Uu
+UD
+rq
+rq
+rq
+gR
+rq
+rq
+BV
+rq
+pK
+pK
+pK
+pK
+pK
+rq
+BV
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+BK
+Ld
+Th
+"}
+(141,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+oo
+FP
+qk
+UH
+rJ
+mv
+mv
+ty
+UH
+vv
+FP
+oo
+Rt
+Np
+Np
+Np
+Rt
+Lc
+rM
+Id
+rq
+rq
+rq
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+gR
+rq
+rq
+mw
+mw
+mw
+mw
+rq
+mw
+mw
+mw
+mw
+rq
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+ik
+"}
+(142,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Tw
+Tw
+oo
+FP
+Cq
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+LE
+FP
+oo
+dV
+dV
+dV
+dV
+dV
+Lc
+rM
+Id
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+gR
+rq
+fg
+xA
+Hv
+xA
+Hv
+wF
+xA
+Hv
+xA
+Hv
+Ou
+rq
+gR
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+ik
+"}
+(143,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+Tw
+rM
+oo
+FP
+Cq
+Rt
+Kq
+bD
+Rt
+Kq
+Rt
+LE
+FP
+oo
+FP
+ck
+FP
+ck
+FP
+Xe
+rM
+aR
+bK
+bK
+bK
+bK
+bK
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+aR
+zI
+rq
+BP
+BP
+BP
+BP
+BP
+rq
+rq
+rq
+sG
+sG
+sG
+sG
+rq
+rq
+rq
+rq
+rq
+sG
+sG
+sG
+sG
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pg
+SK
+SK
+SK
+SK
+SK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+cA
+SK
+SK
+SK
+SK
+SK
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+tg
+"}
+(144,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+Tw
+Tw
+rM
+Xe
+FP
+ou
+Rt
+DY
+oi
+oi
+DY
+Rt
+Zy
+FP
+Xe
+FP
+FP
+FP
+FP
+FP
+Xe
+oo
+oo
+Xe
+oo
+oo
+Xe
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+zI
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+mb
+Ix
+oY
+oY
+Ix
+mb
+Ix
+mb
+mb
+Ix
+Ix
+oY
+oY
+Ix
+Ix
+mb
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Xe
+VM
+VM
+VM
+Xe
+oo
+oo
+oo
+Xe
+Ld
+Pa
+Ld
+Ld
+Aj
+TT
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+TT
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+Ki
+TT
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+TT
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+ls
+KB
+"}
+(145,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+Tw
+Tw
+rM
+rM
+oo
+FP
+Cq
+Rt
+Kq
+Rt
+bD
+Kq
+Rt
+LE
+FP
+Sm
+FP
+FP
+FP
+FP
+FP
+Sm
+Rt
+Rt
+Rt
+Rt
+Rt
+Lc
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+qw
+OY
+vT
+OY
+qw
+ta
+mb
+Hu
+OY
+OY
+OY
+vT
+OY
+qw
+oY
+vl
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+oo
+CK
+CK
+CK
+oo
+Yq
+Yq
+Yq
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+yN
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+sm
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+jT
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+Ie
+"}
+(146,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+oo
+FP
+Cq
+Rt
+Kq
+Rt
+bD
+Kq
+Rt
+LE
+FP
+Xe
+FP
+Cp
+Cp
+Cp
+Cp
+Xe
+ul
+ul
+tl
+Wl
+Wl
+Lc
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+rM
+Tw
+rM
+rM
+Tw
+Tw
+rM
+rM
+Tw
+rM
+uh
+Tw
+rM
+rM
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+OY
+YJ
+ZP
+YJ
+OY
+nr
+mb
+jo
+OY
+OY
+YJ
+ZP
+YJ
+OY
+oY
+Wx
+rq
+cA
+rq
+rq
+rq
+rq
+rq
+rq
+Xe
+oo
+oo
+oo
+Xe
+Yq
+Yq
+Yq
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+rM
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+ev
+"}
+(147,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+zZ
+zZ
+wW
+rM
+rM
+Xe
+FP
+ou
+Rt
+DY
+oi
+oi
+DY
+Rt
+Zy
+FP
+Xe
+Sm
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+oo
+Xe
+oo
+oo
+oo
+oo
+Xe
+rM
+rM
+rM
+rM
+rM
+oh
+rM
+Tw
+Tw
+Tw
+Tw
+XV
+Tw
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+Tw
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+UG
+ZP
+hI
+ZP
+Uh
+DZ
+Ix
+DZ
+OY
+UG
+ZP
+hI
+ZP
+Uh
+oY
+vl
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+oo
+bC
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Xr
+Xr
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Xr
+Xr
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+Ie
+"}
+(148,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+oo
+FP
+Cq
+Rt
+Kq
+bD
+Rt
+Kq
+Rt
+LE
+FP
+oo
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+Ib
+oo
+rM
+rM
+rM
+rM
+Ui
+rM
+rM
+Tw
+rM
+Tw
+rM
+Tw
+Tw
+Tw
+pX
+Tw
+Tw
+Tw
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+UG
+YJ
+ZP
+YJ
+Uh
+jo
+mb
+nr
+OY
+UG
+YJ
+ZP
+YJ
+Uh
+Ix
+mb
+mb
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+oo
+Yq
+ea
+Yq
+Yq
+Yq
+ea
+Yq
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+TT
+rM
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Un
+Un
+Tw
+uh
+sK
+sm
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Un
+Un
+Tw
+uh
+sK
+sm
+Yh
+"}
+(149,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+oo
+FP
+Cq
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+LE
+FP
+oo
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+oo
+rM
+rM
+rM
+rM
+Ui
+rM
+rM
+Tw
+Tw
+Tw
+uh
+Tw
+rM
+rM
+Tw
+rM
+Tw
+rM
+Tw
+Un
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+gm
+FW
+OY
+OY
+gm
+Zm
+mb
+Wz
+OY
+OY
+FW
+OY
+OY
+gm
+mb
+nW
+lD
+lD
+iM
+oY
+vl
+rq
+rq
+rq
+oo
+Yq
+ea
+Yq
+Yq
+Yq
+ea
+Yq
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+rM
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Xq
+"}
+(150,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+oo
+FP
+xC
+FF
+tM
+VN
+VN
+hK
+FF
+tG
+FP
+oo
+FP
+cW
+jJ
+Rn
+Rn
+Rn
+Rn
+Rn
+Rn
+Rn
+Rn
+Rn
+ub
+FP
+FP
+Xe
+rM
+rM
+rM
+Ui
+rM
+rM
+Tw
+Tw
+rM
+rM
+rM
+rM
+rM
+Tw
+Tw
+Un
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Tw
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+mb
+Ix
+ba
+Ix
+Ix
+mb
+Ix
+Ix
+mb
+mb
+Ix
+ba
+mb
+Ix
+Ix
+sM
+lD
+lD
+Sr
+oY
+Wx
+rq
+rq
+rq
+Xe
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rM
+rM
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(151,1,2) = {"
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+oo
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+oo
+FP
+Xe
+BC
+Xe
+Rt
+Xe
+oo
+Xe
+Rt
+QH
+Ai
+Ai
+gT
+FP
+FP
+Lc
+rM
+rM
+rM
+Ui
+Ui
+Tw
+Tw
+Tw
+rM
+rM
+Tw
+Tw
+Tw
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+zj
+Tw
+Un
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rR
+oY
+no
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+yd
+jo
+lD
+lD
+tt
+Ix
+Wx
+rq
+rq
+rq
+oo
+oo
+oo
+oo
+Xe
+Xe
+Kv
+Xe
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rM
+rM
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+sm
+Tw
+Tw
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Xq
+"}
+(152,1,2) = {"
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Xe
+cH
+cH
+Xe
+oo
+oo
+oo
+oo
+Xe
+cH
+cH
+Xe
+FP
+oo
+WI
+bA
+bO
+oo
+WI
+bA
+bO
+ne
+CL
+Rt
+kt
+FP
+FP
+Lc
+rM
+rM
+Ui
+Ui
+Ui
+Tw
+Tw
+rM
+rM
+uN
+rM
+rM
+uN
+Tw
+rM
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rR
+oY
+JA
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+lZ
+nI
+Ix
+io
+lD
+lD
+lO
+oY
+Wx
+rq
+rq
+rq
+oo
+Yq
+Yq
+Yq
+oo
+bC
+Yq
+Yq
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+TT
+rM
+sm
+jT
+uh
+Pi
+uh
+Tw
+uh
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+YM
+sm
+sm
+sm
+Tw
+Tw
+sm
+sm
+sm
+Tw
+Tw
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+sm
+LR
+"}
+(153,1,2) = {"
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Rl
+oo
+FP
+Xe
+oo
+Xe
+ri
+Xe
+BC
+Xe
+ri
+vz
+TX
+TX
+AD
+FP
+FP
+Lc
+rM
+rM
+Ui
+Ui
+Ui
+rM
+rM
+rM
+rM
+wW
+rM
+rM
+wW
+rM
+rM
+rM
+rM
+Tw
+wW
+Tw
+rM
+rM
+rM
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+mb
+mb
+Ix
+fJ
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+Pd
+lD
+lD
+iM
+oY
+hz
+rq
+MU
+rq
+Xe
+Yq
+ea
+Yq
+Xe
+Yq
+ea
+Yq
+Kv
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+uh
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+sJ
+sm
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+sJ
+Yh
+"}
+(154,1,2) = {"
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+Eq
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+oo
+FP
+FP
+FP
+FP
+uZ
+ry
+Su
+ii
+KN
+ii
+ii
+ii
+vW
+FP
+FP
+Xe
+Ui
+Ui
+Ui
+Ui
+Ui
+rM
+rM
+rM
+Rk
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+Tw
+rM
+zj
+Tw
+rM
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+XS
+uc
+XS
+Cf
+XS
+uc
+uc
+XS
+uc
+uc
+XS
+uc
+XS
+mb
+Ix
+mb
+lD
+lD
+mb
+Ix
+mb
+nJ
+iV
+MF
+oo
+Yq
+Yq
+Yq
+Kv
+Yq
+Yq
+Yq
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+rM
+sm
+Ei
+sm
+sm
+uh
+Tw
+uh
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Tw
+Tw
+Un
+Un
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+sm
+Yh
+"}
+(155,1,2) = {"
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+zj
+rM
+rM
+rM
+oo
+FP
+FP
+FP
+FP
+FP
+uZ
+gK
+ry
+Su
+ii
+ii
+ii
+bh
+FP
+FP
+Sm
+Ui
+Ui
+Ui
+Ui
+Ui
+rM
+rM
+Rl
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+wW
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+uc
+vH
+Hy
+Hy
+Hy
+Dw
+Dw
+Px
+TZ
+TZ
+uc
+uc
+uc
+mb
+oc
+lD
+lD
+lD
+lD
+jZ
+oY
+bU
+BV
+rq
+oo
+Yq
+ea
+Yq
+Xe
+Yq
+ea
+Yq
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+Tw
+uh
+sK
+sm
+sm
+rM
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+Yh
+"}
+(156,1,2) = {"
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+Rl
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+oo
+FP
+FP
+FP
+FP
+FP
+FP
+FP
+jX
+ii
+ii
+ii
+ii
+lF
+FP
+FP
+Xe
+Ui
+Ui
+Ui
+Ui
+Ui
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+Tw
+rM
+rM
+oh
+rM
+rM
+rM
+NR
+YQ
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+XS
+kE
+Hy
+Hy
+Qw
+La
+La
+Sj
+TZ
+TZ
+TZ
+uc
+XS
+Ix
+Fr
+lD
+rc
+lD
+lD
+RR
+oY
+zz
+rq
+rq
+oo
+mP
+Yq
+Yq
+oo
+Yq
+Yq
+Yq
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+jT
+Tw
+Un
+Un
+Tw
+cF
+sK
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sJ
+Yh
+"}
+(157,1,2) = {"
+zZ
+zZ
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+zj
+Xe
+Xe
+SV
+SV
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+HM
+Xe
+oo
+Xe
+rM
+rM
+Ui
+Ui
+Ui
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+wW
+Tw
+rM
+rM
+rM
+Id
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+uc
+yk
+Hy
+Hy
+Hy
+Hy
+Hy
+Sj
+HD
+HD
+TZ
+rx
+uc
+mb
+lD
+lD
+lD
+lD
+lD
+zv
+oY
+bU
+rq
+rq
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+Tw
+Tw
+sm
+sm
+sm
+jT
+uh
+uh
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Un
+Xq
+"}
+(158,1,2) = {"
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+Rl
+rM
+uS
+rM
+rM
+rM
+rM
+rM
+Ui
+Ui
+Ui
+rM
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+Tw
+rM
+rM
+Id
+tp
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+IK
+fB
+pz
+Hy
+Hy
+Hy
+Hy
+Sj
+TZ
+TZ
+HD
+zp
+uc
+mb
+lM
+lM
+lM
+lM
+ha
+Ix
+mb
+rq
+rq
+rq
+oo
+Mo
+Mo
+Mo
+Mo
+Mo
+Mo
+Mo
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+Tw
+Tw
+sm
+sm
+sm
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(159,1,2) = {"
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+uS
+rM
+rM
+rM
+rM
+rM
+Ui
+Ui
+Ui
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+Tw
+rM
+rM
+Id
+rq
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+Gf
+Sq
+oA
+Gg
+Hy
+Hy
+Hy
+jO
+TZ
+TZ
+HD
+rx
+XS
+Ix
+lM
+RL
+cG
+lM
+lM
+mb
+yU
+rq
+rq
+rq
+oo
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Ua
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Un
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Ie
+"}
+(160,1,2) = {"
+zZ
+zZ
+zZ
+rM
+JR
+JR
+JR
+JR
+JR
+wW
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+zj
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+uS
+zZ
+zZ
+rM
+rM
+rM
+Ui
+Ui
+Ui
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+Tw
+Tw
+Tw
+rM
+bK
+zI
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+uc
+WJ
+Qs
+DI
+Hy
+Hy
+Hy
+Hy
+pb
+pb
+pb
+Hy
+oV
+zV
+lM
+br
+Cu
+lM
+lM
+VX
+BH
+rq
+rq
+rq
+Xe
+Mo
+Mo
+cl
+Mo
+cl
+Mo
+Mo
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sm
+jT
+rM
+jT
+uh
+Pi
+uh
+Tw
+Tw
+uh
+Tw
+uh
+Tw
+Xq
+"}
+(161,1,2) = {"
+zZ
+zZ
+zZ
+rM
+rM
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+Uf
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+zZ
+hj
+zZ
+zZ
+zZ
+rM
+rM
+Ui
+Ui
+Ui
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+Rk
+rM
+rM
+Tw
+pX
+Tw
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+Gf
+Sq
+KO
+HO
+Hy
+Hy
+Hy
+jO
+TZ
+TZ
+HD
+rx
+XS
+Ix
+lM
+fZ
+uB
+lM
+lM
+mb
+gJ
+rq
+rq
+rq
+Xe
+kv
+kv
+cl
+kv
+cl
+kv
+kv
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Ei
+sm
+sm
+uh
+sm
+sm
+sm
+sm
+jT
+rM
+uh
+Tw
+uh
+Tw
+uh
+Ie
+"}
+(162,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+wW
+qL
+qL
+qL
+qL
+rM
+Tw
+Tw
+rM
+Ui
+nc
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+zZ
+zZ
+uS
+zZ
+zZ
+zZ
+rM
+rM
+Ui
+Ui
+Ui
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+Tw
+Tw
+Tw
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+IK
+Pr
+to
+Hy
+Hy
+Hy
+Hy
+Sj
+TZ
+TZ
+HD
+zp
+uc
+mb
+lM
+lM
+lM
+lM
+ha
+Ix
+mb
+rq
+rq
+rq
+oo
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+Ua
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+rM
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+sK
+sm
+sm
+sm
+Ei
+sm
+sm
+uh
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(163,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+rM
+Zk
+Zk
+Zk
+Zk
+rM
+rM
+Tw
+Tw
+rM
+rM
+qM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+hj
+zZ
+zZ
+rM
+rK
+wW
+Ui
+Ui
+Ui
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Tw
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+uc
+yk
+Hy
+Hy
+Hy
+Hy
+Hy
+Sj
+HD
+HD
+TZ
+rx
+uc
+mb
+lD
+lD
+lD
+lD
+lD
+jZ
+oY
+zz
+rq
+rq
+oo
+Mo
+Mo
+Mo
+Mo
+Mo
+Mo
+Mo
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+jT
+uh
+Pi
+uh
+Tw
+uh
+Tw
+sm
+sJ
+sm
+uh
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+uh
+sK
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Xq
+"}
+(164,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+rM
+Vi
+Vi
+Vi
+Vi
+rM
+Tw
+rM
+rM
+Ui
+rM
+Ui
+rM
+rM
+rM
+qM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+uS
+zZ
+zZ
+rM
+rK
+rM
+Ui
+Ui
+Ui
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+XS
+YW
+Hy
+Hy
+Qw
+La
+La
+Sj
+TZ
+TZ
+TZ
+uc
+XS
+Ix
+Fr
+lD
+rc
+lD
+lD
+RR
+oY
+bU
+rq
+rq
+Xe
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+uh
+sm
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+jT
+uh
+Ie
+"}
+(165,1,2) = {"
+rM
+wW
+rM
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+Ui
+Ui
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+uS
+zZ
+zZ
+rK
+rM
+rM
+Ui
+Ui
+Ui
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+uc
+vH
+Hy
+Hy
+Hy
+Va
+Va
+sy
+TZ
+TZ
+uc
+uc
+uc
+mb
+eF
+lD
+lD
+lD
+lD
+zv
+oY
+bU
+MU
+rq
+TT
+df
+df
+df
+df
+df
+df
+df
+KY
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+Ei
+sm
+sm
+uh
+Tw
+uh
+uh
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+uh
+Tw
+Tw
+Un
+Un
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+Xq
+"}
+(166,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Ui
+Ui
+Ui
+rM
+rM
+wW
+Tw
+Tw
+rM
+nc
+VB
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+hj
+zZ
+rM
+rM
+zj
+rM
+Ui
+Ui
+Ui
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+XS
+uc
+XS
+LK
+XS
+uc
+uc
+XS
+uc
+uc
+XS
+uc
+XS
+mb
+mb
+mb
+lD
+lD
+mb
+Ix
+mb
+nJ
+iV
+MF
+TT
+df
+pF
+zi
+df
+df
+iU
+df
+KY
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+Tw
+uh
+sK
+sm
+sm
+rM
+uh
+Tw
+sm
+sJ
+sm
+sm
+sm
+sm
+jT
+rM
+uh
+Tw
+Un
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+yW
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+LR
+"}
+(167,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+uS
+zZ
+rM
+rM
+pp
+rM
+Ui
+Ui
+Ui
+wW
+rM
+rM
+rM
+wW
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+mb
+mb
+Ix
+fJ
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+mb
+nW
+lD
+lD
+iM
+oY
+hz
+rq
+BV
+rq
+TT
+df
+tS
+df
+df
+df
+df
+df
+RZ
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+Un
+Un
+Tw
+Ei
+sm
+sm
+uh
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Yh
+"}
+(168,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+rM
+VI
+rM
+rM
+rM
+nc
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+hj
+rM
+rM
+zj
+rM
+rM
+Ui
+Ui
+Ui
+rM
+rM
+VI
+rM
+rM
+VI
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rR
+oY
+xJ
+tn
+tn
+tn
+tn
+tn
+bB
+Ix
+hw
+hw
+hw
+mc
+Xo
+Ix
+sM
+lD
+lD
+Sr
+oY
+Wx
+rq
+rq
+rq
+TT
+df
+tS
+df
+df
+df
+df
+df
+KY
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+rM
+uh
+sm
+sm
+sm
+jT
+uh
+Tw
+Tw
+Tw
+uh
+sK
+sm
+sm
+sm
+QO
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+uh
+Yh
+"}
+(169,1,2) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+uS
+rM
+rM
+rM
+rM
+wW
+Ui
+Ui
+Ui
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rR
+oY
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+of
+Ke
+Ke
+Ke
+Ke
+Ke
+of
+jo
+lD
+lD
+tt
+Ix
+Wx
+rq
+rq
+rq
+TT
+df
+df
+df
+df
+df
+df
+df
+KY
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sJ
+sm
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+XV
+Tw
+jT
+Tw
+sm
+QO
+QO
+rM
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Yh
+"}
+(170,1,2) = {"
+wW
+wW
+wW
+Eq
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+JR
+ij
+rM
+rM
+uN
+rM
+rM
+Ui
+Ui
+Ui
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+gV
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+mb
+mb
+Ix
+mb
+mb
+Ix
+tn
+tn
+Ix
+of
+Ix
+of
+Ix
+of
+Ix
+dK
+lD
+lD
+lO
+oY
+Wx
+rq
+rq
+rq
+TT
+KY
+KY
+KY
+KY
+KY
+KY
+KY
+TT
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+ZS
+Vf
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+jT
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+Tw
+sm
+sm
+sm
+QO
+QO
+QO
+Tw
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Yh
+"}
+(171,1,2) = {"
+rM
+Tw
+Tw
+Tw
+Un
+Un
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+JR
+JR
+JR
+ij
+JR
+rM
+rM
+rM
+rM
+Ui
+Ui
+Ui
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+xB
+Hy
+Hy
+Hy
+So
+mb
+tn
+tn
+mb
+Gy
+mb
+Gy
+mb
+Gy
+mb
+Pd
+lD
+lD
+iM
+oY
+vl
+rq
+rq
+rq
+pA
+Ld
+Kn
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+sm
+sm
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+Tw
+Tw
+Un
+Tw
+QO
+QO
+QO
+QO
+jT
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Xq
+"}
+(172,1,2) = {"
+zZ
+rM
+rM
+rM
+rM
+rM
+Un
+Un
+Un
+rM
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+qe
+nv
+Nc
+nv
+Hy
+Ix
+tn
+tn
+Ix
+mb
+mb
+mb
+mb
+mb
+Ix
+mb
+mb
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+pA
+vd
+GS
+IN
+yV
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sJ
+sm
+Ei
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+QO
+QO
+QO
+QO
+QO
+Tw
+Tw
+Tw
+sm
+jT
+uh
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(173,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Tw
+rM
+wW
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Ix
+qe
+jh
+xa
+wa
+Hy
+yY
+tn
+tn
+Ix
+iq
+UC
+UC
+UC
+iq
+oY
+vl
+rq
+rq
+Kh
+cu
+rq
+rq
+rq
+rq
+pA
+yq
+em
+zg
+cw
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+aP
+Tw
+Tw
+Tw
+QO
+QO
+QO
+QO
+QO
+QO
+jT
+Tw
+Pi
+uh
+sm
+sm
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Ie
+"}
+(174,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+wW
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+rM
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+zZ
+zZ
+zZ
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+qe
+nv
+eb
+nv
+Hy
+Ix
+tn
+tn
+yd
+tn
+tn
+Ca
+tn
+tn
+oY
+Wx
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+yN
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+Vf
+hq
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+sm
+Tw
+Tw
+uh
+QO
+QO
+QO
+QO
+QO
+QO
+sm
+sm
+sm
+jT
+sK
+sm
+sm
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(175,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+wW
+Ui
+Ui
+Ui
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Eq
+wW
+rM
+rM
+rM
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+Nr
+Hy
+Hy
+Hy
+Sy
+mb
+no
+ZK
+Ix
+RX
+UC
+UC
+UC
+RX
+oY
+vl
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+Yg
+Ms
+Ms
+aY
+Vf
+Vf
+aY
+Ms
+Ms
+Yg
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+rM
+uh
+Tw
+QO
+QO
+QO
+QO
+QO
+Tw
+Ei
+sm
+sm
+uh
+jF
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Ie
+"}
+(176,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+Eq
+wW
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+SG
+EL
+NQ
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+rM
+rM
+rM
+wW
+Tw
+rM
+zj
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Ix
+mb
+Ix
+oY
+oY
+Ix
+Ix
+mb
+mb
+Ix
+mb
+mb
+oY
+oY
+mb
+Ix
+mb
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+yN
+Ui
+Ds
+ZM
+KI
+Ms
+Ms
+Vx
+Vf
+Vf
+Vx
+Ms
+Ms
+KI
+sg
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Un
+sm
+Tw
+Tw
+sm
+sm
+QO
+QO
+QO
+Tw
+Tw
+sK
+sm
+sm
+Tw
+uh
+Tw
+aP
+Tw
+uh
+Tw
+Tw
+Tw
+Xq
+"}
+(177,1,2) = {"
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+oq
+Tg
+CJ
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+wW
+rM
+zj
+rM
+Eq
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+xx
+xx
+xx
+xx
+rq
+rq
+rq
+rq
+rq
+xx
+xx
+xx
+xx
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+yN
+Ui
+Ds
+oo
+lu
+BE
+qG
+Vx
+Vf
+Vf
+Vx
+qG
+BE
+lu
+oo
+Wr
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+CS
+Tw
+sm
+jT
+uh
+sm
+sm
+QO
+QO
+Tw
+Tw
+Un
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+Ie
+"}
+(178,1,2) = {"
+Eq
+Rl
+rM
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+PV
+fo
+Wc
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+rM
+vj
+rM
+sh
+rM
+Tw
+Tw
+oh
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+Ld
+Kn
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+AP
+AP
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+TT
+Ui
+nR
+Xe
+oo
+oo
+oo
+Xe
+AP
+AP
+Xe
+oo
+oo
+oo
+Xe
+Wo
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Un
+Un
+Tw
+uh
+sK
+sm
+Yh
+"}
+(179,1,2) = {"
+rM
+rM
+rM
+VB
+wW
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+rM
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+Rk
+rM
+rM
+Tw
+rM
+Tw
+Tw
+Un
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+pA
+vd
+GS
+IN
+yV
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+pA
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Xq
+"}
+(180,1,2) = {"
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+zZ
+zZ
+rM
+Eq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Rk
+gV
+rM
+rM
+Tw
+rM
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+wW
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+Ix
+mb
+mb
+Ix
+Ix
+mb
+mb
+mb
+mb
+Ix
+Ix
+mb
+mb
+mb
+mb
+Ix
+Ix
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+pA
+yq
+em
+zg
+cw
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+pA
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+jT
+uh
+Pi
+uh
+Tw
+uh
+Vn
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(181,1,2) = {"
+rM
+Ra
+TU
+TU
+TU
+TU
+TU
+Ra
+rM
+rM
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+zZ
+zZ
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+rM
+Tw
+Eq
+rM
+Tw
+Tw
+rM
+Un
+uh
+pX
+Tw
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+vK
+oY
+xJ
+tn
+tn
+tn
+tn
+xJ
+xJ
+tn
+tn
+tn
+tn
+xJ
+xJ
+tn
+tn
+tn
+tn
+xJ
+oY
+dN
+rq
+rq
+rq
+pA
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ck
+Ld
+Ld
+TT
+DN
+DN
+DN
+DN
+DN
+DN
+TT
+Pe
+Pe
+TT
+UP
+UP
+UP
+UP
+UP
+UP
+TT
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+UP
+TT
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+uh
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+sm
+Tw
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Xq
+"}
+(182,1,2) = {"
+rM
+Am
+jv
+wY
+Az
+yf
+dw
+Am
+rM
+Rl
+zZ
+zZ
+zZ
+Ui
+Ui
+Ui
+zZ
+zZ
+zZ
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+JR
+JR
+kp
+oq
+Db
+JR
+JR
+JR
+JR
+JR
+wW
+wW
+Eq
+rM
+rM
+Tw
+Tw
+SZ
+Tw
+Ts
+Tw
+ix
+rM
+YB
+Un
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+VH
+oY
+tn
+oL
+oL
+jR
+oL
+tn
+tn
+oL
+zE
+oL
+oL
+tn
+tn
+Ft
+Ft
+Ft
+Ft
+tn
+oY
+Wx
+rq
+rq
+rq
+Xe
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+Pe
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+gy
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+Ei
+sm
+sm
+uh
+Tw
+uh
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+sm
+sm
+LR
+"}
+(183,1,2) = {"
+rM
+Am
+By
+yf
+Az
+yf
+jv
+Am
+rM
+rM
+nc
+QY
+Eq
+Ui
+Ui
+Ui
+zZ
+zZ
+qM
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ij
+JR
+JR
+JR
+Eq
+zC
+Ui
+Ui
+Ui
+wW
+wW
+wW
+wW
+wW
+Eq
+wW
+wW
+wW
+wW
+rM
+rM
+Tw
+Tw
+Tw
+rM
+rM
+Tw
+rM
+Un
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+VH
+Ix
+tn
+oL
+Ix
+Ix
+Ft
+tn
+tn
+Ft
+Ix
+Ix
+Ft
+tn
+tn
+oL
+Ix
+Ix
+Ft
+tn
+Ix
+Wx
+rq
+rq
+rq
+oo
+bk
+Pv
+ZG
+ZG
+oo
+Rt
+kK
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+Pe
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+gy
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+Tw
+uh
+sK
+sm
+sm
+rM
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+uh
+sm
+sm
+sm
+jT
+uh
+Pi
+sm
+sJ
+Yh
+"}
+(184,1,2) = {"
+rM
+Am
+jv
+yf
+Az
+wY
+jv
+Am
+wD
+rM
+rM
+rM
+wW
+Ui
+kH
+Ui
+zZ
+rM
+rM
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+RN
+WK
+CP
+wW
+wW
+rM
+rM
+Ui
+Ui
+Ui
+Eq
+rM
+Eq
+wW
+wW
+rM
+wW
+rM
+rM
+rM
+rM
+Tw
+Tw
+Tw
+rM
+Tw
+Tw
+Un
+Un
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+VH
+Ix
+tn
+zE
+Ix
+Ix
+oL
+tn
+tn
+Ft
+Ix
+Ix
+Ft
+tn
+tn
+oL
+Ix
+Ix
+oL
+tn
+Ix
+Wx
+rq
+rq
+rq
+oo
+Ws
+SE
+UN
+uC
+oo
+Rt
+kK
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+oo
+Xe
+oo
+oo
+Xe
+oo
+Xe
+AP
+AP
+Xe
+oo
+Xe
+oo
+oo
+Xe
+oo
+Xe
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+sJ
+sm
+sm
+Ei
+sm
+sm
+uh
+Tw
+uh
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Yh
+"}
+(185,1,2) = {"
+rM
+Ra
+TU
+Ra
+xt
+Ra
+TU
+Ra
+wD
+rM
+rM
+rM
+rM
+Ui
+Ui
+Ui
+rM
+rM
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+wW
+wW
+Eq
+Un
+Un
+Un
+wW
+wW
+wW
+JE
+uR
+vq
+wW
+wW
+rM
+rM
+Ui
+Ui
+Ui
+wW
+wW
+wW
+rM
+rM
+wW
+nc
+rM
+Rk
+rM
+rM
+rM
+rM
+Tw
+Tw
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+aA
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+VH
+oY
+tn
+oL
+Jw
+oL
+oL
+tn
+tn
+Jw
+zE
+zE
+zE
+tn
+tn
+oL
+oL
+oL
+oL
+tn
+oY
+Wx
+rq
+rq
+rq
+oo
+na
+UN
+UN
+uC
+Xe
+Rt
+kK
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+Vf
+Fo
+gf
+Pp
+Fo
+gf
+Pp
+Vf
+Vf
+Fo
+gf
+Pp
+Fo
+gf
+Pp
+Vf
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+rM
+uh
+sm
+sm
+sm
+jT
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Un
+Un
+Tw
+Tw
+uh
+sK
+sm
+sm
+rM
+uh
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+sm
+sm
+Yh
+"}
+(186,1,2) = {"
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+EL
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+pM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+vK
+oY
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+oY
+dN
+rq
+rq
+rq
+oo
+ff
+TE
+UN
+uC
+wQ
+Rt
+kK
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+Vf
+CD
+Lu
+Lu
+Lu
+Lu
+CD
+Vf
+Vf
+CD
+Lu
+Lu
+Lu
+Lu
+CD
+Vf
+Xe
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sJ
+sm
+Tw
+sm
+sm
+sm
+Tw
+Tw
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+Mh
+sm
+sJ
+Yh
+"}
+(187,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+rM
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Im
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Xh
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+Ix
+iv
+XK
+Ix
+Ix
+iv
+od
+Ix
+mb
+LG
+LG
+mb
+Ix
+nH
+sV
+Ix
+Ix
+Lw
+sV
+Ix
+mb
+rq
+rq
+rq
+oo
+bk
+Hl
+Ur
+Ur
+Xe
+Rt
+kK
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+Vf
+Vk
+xw
+Si
+Vk
+xw
+Si
+Vf
+Vf
+Vk
+xw
+Si
+Vk
+xw
+Si
+Vf
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+sm
+jT
+sm
+sJ
+sm
+Tw
+Tw
+sm
+sm
+sm
+sm
+sm
+sm
+jT
+Tw
+uh
+jT
+uh
+Pi
+uh
+sm
+sm
+jT
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Un
+Un
+Xq
+"}
+(188,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+mW
+oq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+kQ
+iz
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+sp
+PY
+tn
+tn
+St
+St
+tn
+tn
+mb
+rL
+tn
+WC
+oI
+mb
+tn
+tn
+St
+St
+tn
+tn
+PY
+Ox
+rq
+rq
+rq
+Xe
+oo
+oo
+Xe
+KT
+Xe
+oo
+oo
+Xe
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Vf
+Fo
+gf
+Pp
+Fo
+gf
+Pp
+Vf
+Vf
+Fo
+gf
+Pp
+Fo
+gf
+Pp
+Vf
+Xe
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+sm
+Un
+Un
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+sm
+sm
+sm
+jT
+sm
+sm
+sm
+sm
+sm
+jT
+uh
+uh
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(189,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+Ld
+IE
+iz
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+sp
+sL
+tn
+tn
+es
+Gb
+tn
+tn
+PY
+tn
+tn
+tn
+tn
+PY
+tn
+tn
+yZ
+LG
+tn
+tn
+Ix
+Ox
+rq
+rq
+rq
+oo
+qp
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+KT
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+Vf
+CD
+Lu
+Lu
+Lu
+Lu
+CD
+Vf
+Vf
+CD
+Lu
+Lu
+Lu
+Lu
+CD
+Vf
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sJ
+sm
+Ei
+Tw
+Tw
+Tw
+Tw
+Tw
+Un
+Un
+Tw
+uh
+sK
+sm
+sm
+uh
+uh
+Ei
+sm
+sm
+uh
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Ie
+"}
+(190,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+fo
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+ex
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+pM
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+sp
+PY
+tn
+tn
+WC
+WC
+tn
+tn
+mb
+Fg
+St
+tn
+nb
+mb
+tn
+tn
+WC
+WC
+tn
+tn
+PY
+Ox
+rq
+rq
+rq
+oo
+pW
+Yq
+Yq
+Ne
+Ne
+Ne
+Yq
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+Vf
+Vk
+xw
+Si
+Vk
+xw
+Si
+Vf
+Vf
+Vk
+xw
+Si
+Vk
+xw
+Si
+Vf
+Xe
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+rM
+uh
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+uh
+sK
+sm
+sm
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(191,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+sh
+rM
+hV
+Ui
+Ra
+XO
+Dr
+mx
+Ra
+Ui
+Tr
+Tr
+Eq
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+zj
+Tw
+Tw
+QK
+Tw
+Tw
+rM
+Tw
+rM
+rM
+rM
+pX
+Tw
+rM
+rM
+rM
+rM
+Eq
+rM
+rM
+wW
+wW
+wW
+VB
+rM
+rM
+rM
+Uf
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+YB
+rM
+wW
+rM
+rM
+rM
+rM
+aA
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+mb
+Ix
+iv
+XK
+Ix
+Ix
+iv
+nH
+Ix
+mb
+LG
+LG
+mb
+Ix
+od
+sV
+Ix
+Ix
+Lw
+sV
+Ix
+mb
+rq
+rq
+rq
+oo
+fF
+Yq
+Yq
+Ne
+Ne
+Ne
+Yq
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+Vf
+kX
+kX
+kX
+kX
+kX
+kX
+kX
+Vf
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+jT
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+jF
+Tw
+XV
+uh
+Tw
+sm
+sm
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Ie
+"}
+(192,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+rM
+rM
+rM
+Ui
+Am
+aO
+Az
+SP
+Am
+Tr
+Tr
+Un
+Un
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+wW
+zZ
+zZ
+zZ
+zZ
+wW
+Un
+Vq
+Un
+uh
+QK
+Un
+wW
+wW
+wW
+rM
+rM
+VB
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+pp
+wW
+rM
+Tw
+uh
+zj
+Rl
+nc
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+vK
+oY
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+tn
+oY
+dN
+rq
+rq
+rq
+oo
+Ne
+Yq
+Yq
+Yq
+Yq
+Yq
+Yq
+KT
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+VA
+FD
+zk
+Ti
+Rt
+Rv
+oo
+Xe
+nV
+nV
+nV
+Xe
+nV
+nV
+nV
+Xe
+Xe
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+uh
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+aP
+Tw
+uh
+Tw
+Tw
+Tw
+Xq
+"}
+(193,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+rM
+rM
+rM
+Ui
+Am
+VZ
+Az
+NP
+Am
+Tr
+bv
+Tw
+rM
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+wW
+rM
+Un
+rM
+Eq
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+Tw
+uD
+Tw
+rM
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+VH
+oY
+tn
+Jw
+oL
+oL
+oL
+tn
+tn
+oL
+oL
+oL
+oL
+tn
+tn
+oL
+oL
+oL
+oL
+tn
+oY
+Wx
+rq
+rq
+rq
+Xe
+oo
+oo
+Xe
+wQ
+Xe
+oo
+oo
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+VA
+FD
+vV
+Rt
+Rt
+De
+oo
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+rM
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Tw
+sJ
+sm
+Ei
+sm
+sm
+uh
+Tw
+Tw
+Tw
+uh
+Tw
+Tw
+Ie
+"}
+(194,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+zj
+rM
+sh
+Ui
+Ra
+TU
+xt
+TU
+Ra
+Tr
+Tw
+Tw
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+Uf
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+VB
+rM
+Un
+Un
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+VH
+Ix
+tn
+oL
+Ix
+Ix
+Ft
+tn
+tn
+oL
+Ix
+Ix
+oL
+tn
+tn
+Ft
+Ix
+Ix
+oL
+tn
+Ix
+Wx
+rq
+rq
+rq
+oo
+Ks
+wN
+Rt
+Rt
+Rt
+wN
+YN
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+Xe
+ZN
+oi
+Rt
+Rt
+oi
+Nz
+Xe
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+Tw
+Tw
+Tw
+Tw
+Tw
+jT
+uh
+Pi
+uh
+Tw
+Tw
+uh
+Tw
+uh
+Tw
+Tw
+Tw
+sm
+sm
+rM
+Un
+Tw
+uh
+sK
+sm
+sm
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+Xq
+"}
+(195,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+Tw
+Tw
+rM
+rM
+Ui
+Ui
+Ui
+Ui
+rM
+rM
+Tw
+uh
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+zZ
+zZ
+zZ
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+Tw
+Un
+Tw
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+VH
+Ix
+tn
+oL
+Ix
+Ix
+oL
+tn
+tn
+oL
+Ix
+Ix
+zE
+tn
+tn
+Ft
+Ix
+Ix
+oL
+tn
+Ix
+Wx
+rq
+rq
+rq
+oo
+Ks
+Rt
+oi
+Fp
+oi
+Rt
+YN
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+oo
+Rt
+Rt
+Rt
+Rt
+QU
+ey
+oo
+NX
+uG
+Cr
+Hk
+oo
+jK
+lE
+Ss
+NX
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+jT
+uh
+Pi
+uh
+Tw
+sm
+sm
+sm
+jT
+rM
+uh
+Tw
+uh
+Tw
+sm
+rM
+Pi
+sm
+sJ
+sm
+Tw
+Tw
+Tw
+Tw
+jT
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+uh
+Ie
+"}
+(196,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+Tw
+rM
+rM
+rM
+rM
+rM
+rM
+zj
+Tw
+Un
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+Eq
+zj
+wW
+VB
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+bj
+rM
+Tw
+uh
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+VH
+oY
+tn
+oL
+oL
+Jw
+oL
+tn
+tn
+hD
+zE
+oL
+oL
+tn
+tn
+hD
+oL
+oL
+oL
+tn
+oY
+Wx
+rq
+rq
+rq
+oo
+Ks
+Rt
+Rt
+iJ
+Rt
+Rt
+YN
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+oo
+iG
+iG
+iG
+Rt
+QU
+ke
+oo
+NX
+Xe
+oo
+oo
+oo
+oo
+oo
+Xe
+NX
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+sm
+sm
+sm
+sm
+jT
+Tw
+Ei
+sm
+sm
+uh
+sm
+Tw
+Tw
+Tw
+Tw
+sJ
+sm
+sm
+sm
+sm
+sm
+Tw
+uh
+Tw
+Tw
+uh
+Tw
+aP
+Tw
+uh
+Tw
+Tw
+Tw
+Xq
+"}
+(197,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+Tw
+rM
+oh
+rM
+rM
+bj
+Tw
+Tw
+QK
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+rM
+rM
+rM
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+rM
+wW
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+vK
+oY
+kh
+tn
+tn
+tn
+tn
+kh
+kh
+tn
+tn
+tn
+tn
+kh
+kh
+tn
+tn
+tn
+tn
+kh
+oY
+dN
+rq
+rq
+rq
+oo
+Ks
+Rt
+oi
+SD
+oi
+Rt
+YN
+oo
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+oo
+Xe
+SC
+Xe
+oo
+Xe
+NX
+eg
+jg
+Ta
+oo
+BM
+mm
+CR
+NX
+oo
+Ui
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+sm
+Ui
+sa
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+sm
+Ei
+sm
+sm
+uh
+Tw
+uh
+sK
+sm
+sm
+sm
+jT
+uh
+Pi
+uh
+sm
+sm
+sm
+sm
+sm
+sm
+Tw
+Tw
+uh
+Tw
+aP
+Tw
+uh
+Tw
+Tw
+Tw
+Tw
+rM
+LR
+"}
+(198,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+Tw
+Tw
+Tw
+Tw
+Tw
+Tw
+oh
+rM
+wW
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Eq
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+zj
+rM
+Id
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+mb
+Ix
+mb
+mb
+Ix
+Ix
+mb
+mb
+mb
+mb
+Ix
+Ix
+mb
+mb
+mb
+mb
+Ix
+Ix
+mb
+mb
+Ix
+mb
+rq
+rq
+rq
+oo
+Ks
+Rt
+Rt
+Rt
+Rt
+Rt
+YN
+oo
+Ld
+Ld
+Ld
+Ld
+Ld
+wQ
+Rt
+Rt
+Rt
+Rt
+Rt
+Rt
+wQ
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+NX
+oo
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+sa
+rq
+Ld
+Ld
+Ck
+Ld
+Ld
+rq
+Id
+Tw
+uh
+sK
+sm
+sm
+rM
+Tw
+Tw
+jT
+Tw
+sm
+sm
+sm
+sm
+jT
+sm
+sm
+sm
+sm
+sJ
+sm
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+LR
+"}
+(199,1,2) = {"
+Ui
+Ld
+Ld
+Ld
+Ui
+rM
+rM
+rM
+zj
+rM
+rM
+Eq
+wW
+rM
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wW
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+zZ
+rM
+rM
+Id
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+rq
+Xe
+oo
+oo
+Xe
+oo
+Xe
+oo
+oo
+Xe
+Ld
+Ld
+Ck
+Ld
+Ld
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+oo
+Xe
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+DN
+RV
+rq
+Ld
+Ld
+Ld
+Ld
+Ld
+rq
+Id
+Tw
+Tw
+Tw
+sm
+sJ
+sm
+Tw
+Tw
+sm
+sJ
+sm
+Ei
+sm
+sm
+uh
+sJ
+sm
+jT
+Un
+Un
+Tw
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+rM
+LR
+"}
+
+(1,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(2,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(3,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(4,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(5,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(6,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(7,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(8,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(9,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(10,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+gN
+gN
+Lz
+Hi
+cp
+Hi
+Lz
+gN
+gN
+tI
+Hi
+JR
+Fx
+KU
+Cc
+Cc
+Cc
+Cc
+Fx
+iD
+VK
+VK
+za
+Dx
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(11,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+LU
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+cC
+dq
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Cc
+Fx
+ZU
+zN
+xW
+zF
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(12,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+AO
+fs
+aG
+Hi
+aX
+Hi
+PZ
+AO
+gN
+RM
+Hi
+JR
+sb
+Cc
+Cc
+QI
+Cc
+Cc
+Fx
+xW
+zF
+QI
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(13,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+Wy
+KU
+Cc
+QI
+Cc
+Cc
+Fx
+Cc
+Cc
+QI
+Cc
+Dx
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(14,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+Lz
+Hi
+aX
+tu
+aX
+zn
+zn
+JV
+Hi
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Cc
+vX
+Cc
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(15,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+gC
+gN
+gN
+gN
+CA
+aX
+yL
+aX
+KC
+qb
+Za
+dq
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Cc
+Fx
+Cc
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(16,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+RM
+gN
+gN
+We
+Hi
+aX
+XL
+aX
+aX
+aX
+mN
+Hi
+JR
+Wy
+Fx
+Wy
+vX
+Wy
+Fx
+Wy
+Fx
+Wy
+vX
+Wy
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(17,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(18,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+kG
+gN
+Lz
+Hi
+aX
+Hi
+Lz
+kG
+gN
+tI
+Hi
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(19,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+cC
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+Yf
+dq
+JR
+Wy
+px
+Cc
+QI
+Cc
+XE
+Wy
+WM
+Cc
+QI
+Cc
+Yb
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(20,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+cC
+Hi
+cp
+Hi
+vR
+GO
+gN
+tI
+Hi
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(21,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(22,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Wy
+px
+Cc
+QI
+Cc
+XE
+Wy
+WM
+Cc
+QI
+Cc
+Yb
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(23,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(24,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+gN
+gN
+Lz
+Hi
+cp
+Hi
+Lz
+gN
+gN
+tI
+Hi
+JR
+sb
+IA
+Cc
+Cc
+Cc
+XE
+Fx
+WM
+Cc
+Cc
+Cc
+XE
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(25,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+LU
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+cC
+dq
+JR
+Wy
+Fx
+Fx
+vX
+Fx
+Fx
+Wy
+Fx
+Wy
+vX
+Wy
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(26,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+AO
+fs
+aG
+Hi
+aX
+Hi
+PZ
+AO
+gN
+RM
+Hi
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Dh
+Fx
+Dh
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(27,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+sb
+Cc
+jq
+bx
+Ey
+Cc
+Wy
+Cc
+ct
+LN
+LN
+Rp
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(28,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+Lz
+Hi
+aX
+tu
+aX
+zn
+zn
+JV
+Hi
+JR
+Wy
+KU
+bN
+lH
+tO
+Cc
+vX
+Cc
+ct
+LN
+LN
+Pj
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(29,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+gC
+gN
+gN
+gN
+CA
+aX
+yL
+aX
+KC
+qb
+Za
+dq
+JR
+sb
+Cc
+NA
+TV
+sj
+Cc
+Wy
+Cc
+ct
+LN
+LN
+Rp
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(30,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+RM
+gN
+gN
+We
+Hi
+aX
+XL
+aX
+aX
+aX
+mN
+Hi
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Dh
+Fx
+Dh
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(31,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+Wy
+Fx
+Wy
+vX
+Wy
+Fx
+Wy
+Fx
+Wy
+vX
+Wy
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(32,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+kG
+gN
+Lz
+Hi
+aX
+Hi
+Lz
+kG
+gN
+tI
+Hi
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Cc
+Wy
+Cc
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(33,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+cC
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+Yf
+dq
+JR
+sb
+Cc
+Cc
+Cc
+Cc
+Cc
+vX
+Cc
+Cc
+Cc
+Cc
+Cc
+sb
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(34,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+cC
+Hi
+cp
+Hi
+vR
+GO
+gN
+tI
+Hi
+JR
+Fx
+KU
+Cc
+Cc
+Cc
+Cc
+Wy
+Cc
+Cc
+Cc
+Cc
+Dx
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(35,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+tA
+tA
+bW
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+mp
+tA
+tA
+bW
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(36,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+VW
+bW
+tA
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+mp
+VW
+bW
+tA
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(37,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+Eh
+iZ
+tA
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+JR
+JR
+mp
+Eh
+iZ
+tA
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(38,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+JC
+Eh
+iZ
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+wP
+JC
+Eh
+iZ
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+gN
+gN
+Lz
+Hi
+cp
+Hi
+Lz
+gN
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(39,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+JC
+VW
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+mp
+JC
+JC
+VW
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+LU
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+cC
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(40,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+Eh
+JC
+JC
+Hz
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+vb
+mp
+JR
+JR
+mp
+Eh
+JC
+JC
+Hz
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+vb
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+AO
+fs
+aG
+Hi
+aX
+Hi
+PZ
+AO
+gN
+RM
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(41,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+vb
+wP
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(42,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+JC
+JC
+Hz
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+vb
+mp
+JR
+JR
+mp
+JC
+JC
+JC
+Hz
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+vb
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+Lz
+Hi
+aX
+tu
+aX
+zn
+zn
+JV
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(43,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+tk
+JC
+Xu
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+mp
+tk
+JC
+Xu
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+gC
+gN
+gN
+gN
+CA
+aX
+yL
+aX
+KC
+qb
+Za
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(44,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+ci
+JC
+Xu
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+wP
+ci
+JC
+Xu
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+RM
+gN
+gN
+We
+Hi
+aX
+XL
+aX
+aX
+aX
+mN
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(45,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+LF
+JC
+Xu
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+JR
+JR
+mp
+LF
+JC
+Xu
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(46,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+cv
+JC
+Xu
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+mp
+cv
+JC
+Xu
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+kG
+gN
+Lz
+Hi
+aX
+Hi
+Lz
+kG
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(47,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+vb
+JC
+Ak
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+mp
+vb
+JC
+Ak
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+cC
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+Yf
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(48,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+mp
+jz
+mp
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+cC
+Hi
+cp
+Hi
+vR
+GO
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(49,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(50,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(51,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(52,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(53,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(54,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(55,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(56,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(57,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(58,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+wP
+jz
+wP
+mp
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+wP
+wP
+jz
+wP
+mp
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(59,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+JC
+dU
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+mp
+JC
+JC
+dU
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+OC
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(60,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+xe
+JC
+Xu
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+mp
+xe
+JC
+Xu
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(61,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+ci
+JC
+Xu
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+JR
+JR
+wP
+ci
+JC
+Xu
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+qU
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(62,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+Nv
+JC
+Xu
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+mp
+Nv
+JC
+Xu
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+Sz
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(63,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+cv
+JC
+Xu
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+mp
+cv
+JC
+Xu
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(64,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+vb
+JC
+ox
+Hz
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+vb
+mp
+JR
+JR
+mp
+vb
+JC
+ox
+Hz
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+JC
+Mt
+JC
+JC
+JC
+Mt
+JC
+JC
+vb
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(65,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+vb
+wP
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+JC
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(66,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+JC
+JC
+Hz
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+vb
+mp
+JR
+JR
+mp
+JC
+JC
+JC
+Hz
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+JC
+DM
+JC
+JC
+JC
+DM
+JC
+JC
+vb
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(67,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+mA
+yA
+yA
+yA
+mA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+JC
+tA
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+mp
+JC
+JC
+tA
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+mp
+wP
+wO
+wP
+wP
+mp
+mp
+mp
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(68,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ql
+ln
+hp
+hp
+hp
+ln
+ux
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+JC
+tA
+tA
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+mp
+JC
+tA
+tA
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+mp
+he
+eZ
+lJ
+Zi
+wP
+EM
+Ec
+MI
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(69,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+DC
+bq
+Dd
+Dd
+DC
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+tA
+tA
+bW
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+JR
+JR
+wP
+tA
+tA
+bW
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+nC
+lJ
+lJ
+lJ
+nu
+pL
+pL
+TJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(70,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+DC
+im
+Ia
+Dd
+DC
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+VW
+bW
+tA
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+mp
+VW
+bW
+tA
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+mX
+lJ
+wP
+mp
+wP
+PK
+pL
+pL
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(71,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+DC
+LJ
+Dd
+Dd
+DC
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mp
+iZ
+iZ
+tA
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+mp
+iZ
+iZ
+tA
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+GM
+lJ
+hJ
+yw
+mp
+Ic
+pL
+KJ
+mp
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(72,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+ql
+ln
+hp
+hp
+hp
+ln
+ux
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+wP
+mp
+mp
+mp
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+wP
+jz
+wP
+mp
+wP
+wP
+jz
+wP
+wP
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(73,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+Bf
+yA
+yA
+yA
+Bf
+yA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(74,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(75,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(76,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(77,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(78,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(79,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(80,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(81,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(82,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(83,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(84,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(85,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+pm
+KG
+KG
+KG
+KG
+pm
+KG
+KG
+KG
+pm
+KG
+KG
+KG
+KG
+pm
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wc
+yi
+yi
+yi
+MA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wc
+yi
+yi
+yi
+MA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(86,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+JC
+JC
+da
+JC
+KG
+aS
+vb
+kd
+KG
+JC
+da
+JC
+JC
+Vh
+JR
+JR
+JR
+bY
+Wy
+Fx
+Fx
+Fx
+Wy
+Fx
+Fx
+Fx
+Wy
+Fx
+Fx
+Fx
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+WU
+lJ
+fn
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+fn
+lJ
+WU
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(87,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+JC
+VJ
+vb
+JC
+KG
+JC
+JC
+JC
+pm
+JC
+vb
+oN
+JC
+Vh
+JR
+JR
+JR
+bY
+Fx
+jW
+jW
+jW
+Fx
+ZJ
+Cc
+Cc
+Cc
+Cc
+Cc
+Dx
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+oC
+be
+lJ
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+lJ
+be
+oC
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(88,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+JC
+JC
+Iu
+JC
+CY
+JC
+JC
+JC
+CY
+JC
+Iu
+JC
+JC
+Vh
+JR
+JR
+JR
+bY
+Fx
+Ej
+Dg
+Dg
+JG
+Cc
+Cc
+Cc
+UB
+Cc
+UL
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+ZE
+lJ
+fn
+GA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+vt
+fn
+lJ
+tJ
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(89,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+KG
+Pf
+JC
+JC
+JC
+KG
+JC
+JC
+JC
+pm
+JC
+JC
+JC
+XF
+pm
+JR
+JR
+JR
+bY
+Fx
+xN
+Dg
+Gr
+Fx
+Cc
+Cc
+Cc
+UB
+Cc
+UL
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+EN
+FC
+FC
+xT
+Yo
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+EN
+xT
+FC
+FC
+Yo
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(90,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+pm
+KG
+KG
+KG
+KG
+pm
+NU
+JC
+rm
+pm
+pm
+KG
+KG
+pm
+pm
+JR
+JR
+JR
+bY
+Wy
+xN
+Dg
+AZ
+Fx
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(91,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+Ln
+LM
+WT
+Gl
+pm
+JC
+JC
+JC
+JC
+pm
+YH
+LA
+Go
+Vh
+JR
+JR
+JR
+bY
+Fx
+BJ
+Dg
+AZ
+Fx
+jf
+AQ
+jf
+Fx
+Cc
+Cc
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(92,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+ax
+ax
+ax
+ax
+qN
+JR
+JR
+JR
+Vh
+Fw
+Fw
+Fw
+Fw
+Jm
+JC
+JC
+JC
+JC
+Jm
+Fw
+Fw
+Fw
+Vh
+JR
+JR
+JR
+bY
+Fx
+jW
+jW
+jW
+Fx
+Ph
+mC
+NF
+Fx
+Cc
+Cc
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(93,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+kV
+kV
+kV
+kV
+qN
+JR
+JR
+JR
+Vh
+Fw
+jm
+jm
+Fw
+pm
+JC
+qE
+HS
+JC
+pm
+IT
+oP
+Fw
+Vh
+JR
+JR
+JR
+bY
+Fx
+Fx
+Wy
+Fx
+Wy
+jf
+Wi
+jf
+Wy
+Cc
+Cc
+Dx
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(94,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aD
+dT
+ki
+dT
+dT
+aD
+JR
+JR
+JR
+pm
+wJ
+LM
+LM
+ZT
+KG
+uM
+zc
+EQ
+JC
+KG
+Xg
+tr
+Xg
+pm
+JR
+JR
+JR
+bY
+SF
+dv
+Cc
+Cc
+Wk
+Cc
+Cc
+Cc
+Fx
+Cc
+Cc
+Cc
+ge
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(95,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aD
+LS
+up
+up
+HU
+aD
+JR
+JR
+JR
+pm
+wJ
+LM
+LM
+ZT
+KG
+uM
+zc
+EQ
+JC
+KG
+WT
+dO
+DE
+pm
+JR
+JR
+JR
+bY
+SF
+Ww
+Cc
+Cc
+HE
+Cc
+Cc
+EH
+Wy
+Cc
+Cc
+Cc
+Af
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(96,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+dT
+up
+dt
+dT
+qN
+JR
+JR
+JR
+Vh
+Fw
+hc
+hc
+Fw
+pm
+JC
+Mp
+gP
+JC
+pm
+ME
+Fw
+HN
+Vh
+JR
+JR
+JR
+bY
+Fx
+vr
+Cc
+Cc
+HE
+Cc
+Cc
+Cc
+AQ
+Cc
+Cc
+UL
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(97,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+dT
+Vm
+dT
+dT
+qN
+JR
+JR
+JR
+Vh
+Fw
+Fw
+Fw
+Fw
+Jm
+JC
+JC
+JC
+JC
+Jm
+Fw
+Fw
+Fw
+Vh
+JR
+JR
+JR
+bY
+Fx
+dv
+Cc
+Cc
+HE
+Cc
+Cc
+BW
+Wy
+UB
+mC
+Ph
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+Tx
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(98,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aD
+dT
+ec
+dT
+dT
+aD
+JR
+JR
+JR
+Vh
+WT
+te
+te
+Gl
+pm
+JC
+JC
+JC
+JC
+pm
+te
+QA
+Ln
+Vh
+JR
+JR
+JR
+bY
+Wy
+Ww
+Cc
+Cc
+TD
+Cc
+Cc
+ei
+Fx
+LN
+aZ
+LN
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(99,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aD
+dT
+dT
+dT
+dT
+aD
+JR
+JR
+JR
+pm
+KG
+KG
+KG
+KG
+pm
+NU
+JC
+rm
+pm
+pm
+KG
+KG
+pm
+pm
+JR
+JR
+JR
+bY
+Wy
+Wy
+Fx
+Fx
+Fx
+Wy
+fw
+Wy
+Fx
+Fx
+Fx
+Wy
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(100,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+gk
+kw
+mj
+ek
+qN
+JR
+JR
+JR
+pm
+Pf
+JC
+JC
+JC
+KG
+JC
+JC
+JC
+pm
+JC
+JC
+JC
+XF
+pm
+JR
+JR
+JR
+bY
+bY
+Wy
+Yd
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+sv
+Wy
+bY
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(101,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+qN
+ax
+ax
+ax
+ax
+qN
+JR
+JR
+JR
+Vh
+JC
+JC
+Iu
+JC
+CY
+JC
+JC
+JC
+CY
+JC
+Iu
+JC
+JC
+Vh
+JR
+JR
+JR
+JR
+bY
+SF
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(102,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+JC
+VJ
+vb
+JC
+KG
+JC
+JC
+JC
+pm
+JC
+vb
+oN
+JC
+Vh
+JR
+JR
+JR
+JR
+bY
+SF
+Cc
+hl
+Cc
+oK
+Xf
+Tk
+Cc
+hl
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(103,1,3) = {"
+JR
+JR
+JR
+JR
+DU
+nN
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+DU
+nN
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+DU
+nN
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Vh
+JC
+JC
+da
+JC
+KG
+aS
+vb
+kd
+KG
+JC
+da
+JC
+JC
+Vh
+JR
+JR
+JR
+JR
+bY
+SF
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+Tx
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(104,1,3) = {"
+JR
+JR
+DU
+nN
+oq
+oq
+oq
+oq
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+DU
+nN
+oq
+oq
+oq
+oq
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+DU
+nN
+oq
+oq
+oq
+oq
+nN
+zT
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+pm
+KG
+KG
+KG
+KG
+pm
+KG
+KG
+KG
+pm
+KG
+KG
+KG
+KG
+pm
+JR
+JR
+JR
+JR
+bY
+Wy
+Oc
+Cc
+Cc
+RS
+RS
+RS
+Cc
+Cc
+Dx
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(105,1,3) = {"
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+bY
+Fx
+Ww
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(106,1,3) = {"
+JR
+DU
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+lz
+JR
+JR
+JR
+DU
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+lz
+JR
+JR
+JR
+DU
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+lz
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+bY
+Wy
+vr
+hl
+Cc
+jj
+Cc
+jj
+Cc
+hl
+Cc
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(107,1,3) = {"
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+bY
+Fx
+dv
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(108,1,3) = {"
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+JR
+bY
+Wy
+qJ
+Cc
+Cc
+RS
+RS
+RS
+Cc
+Cc
+Dx
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(109,1,3) = {"
+JR
+aV
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+GG
+JR
+JR
+JR
+aV
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+GG
+JR
+JR
+JR
+aV
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+oq
+GG
+JR
+JR
+JR
+JR
+JR
+JR
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+JR
+JR
+JR
+JR
+bY
+SF
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+Tx
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(110,1,3) = {"
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+FB
+oq
+oq
+oq
+oq
+oq
+oq
+co
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+MZ
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+sk
+oH
+JR
+JR
+JR
+bY
+SF
+Cc
+hl
+Bq
+uV
+uV
+uV
+ae
+hl
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(111,1,3) = {"
+JR
+JR
+aV
+Qq
+oq
+oq
+oq
+oq
+oq
+tT
+JR
+JR
+JR
+JR
+JR
+aV
+Qq
+oq
+oq
+oq
+oq
+oq
+tT
+JR
+JR
+JR
+JR
+JR
+aV
+Qq
+oq
+oq
+oq
+oq
+oq
+tT
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+ui
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+QW
+oH
+JR
+JR
+JR
+bY
+SF
+Cc
+Cc
+Bq
+rU
+rU
+rU
+ae
+Cc
+Cc
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(112,1,3) = {"
+JR
+JR
+JR
+JR
+aV
+Qq
+Qq
+Qq
+cq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aV
+Qq
+Qq
+Qq
+cq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+aV
+Qq
+Qq
+Qq
+cq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+MZ
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+sk
+oH
+JR
+JR
+bY
+bY
+Wy
+Yd
+Cc
+Cc
+PA
+PA
+PA
+Cc
+Cc
+sv
+Wy
+bY
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(113,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+ui
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+QW
+oH
+JR
+JR
+bY
+Wy
+Wy
+Fx
+Fx
+Fx
+Wy
+fw
+Wy
+Fx
+Fx
+Fx
+Wy
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(114,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Wy
+DQ
+mt
+Op
+RY
+Cc
+dW
+Cc
+kO
+Op
+At
+XN
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(115,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Fx
+FR
+jS
+ys
+iQ
+Cc
+dW
+Cc
+vh
+ys
+qx
+hM
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+Tx
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(116,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Fx
+fL
+jS
+ys
+iQ
+Cc
+dW
+Cc
+vh
+ys
+qx
+aW
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+ol
+ol
+ol
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(117,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+SF
+zx
+vp
+TB
+vp
+zx
+VF
+zx
+vp
+TB
+vp
+zx
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wc
+yi
+yi
+jx
+MA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+wc
+jx
+yi
+yi
+MA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(118,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+SF
+Ce
+Zt
+OZ
+Zt
+OZ
+OZ
+OZ
+Zt
+OZ
+Zt
+ag
+SF
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+WU
+lJ
+fn
+GA
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+vt
+fn
+lJ
+WU
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(119,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Fx
+ZB
+jS
+ys
+iQ
+Cc
+Cc
+Cc
+vh
+ys
+qx
+xy
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+oC
+be
+lJ
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+lJ
+be
+oC
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(120,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Fx
+mK
+jS
+ys
+iQ
+Cc
+Cc
+Cc
+vh
+ys
+qx
+hS
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+tJ
+lJ
+fn
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uz
+fn
+lJ
+ZE
+cS
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(121,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+OX
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+rh
+oH
+JR
+JR
+bY
+Fx
+Ht
+jS
+ys
+iQ
+Cc
+QI
+Cc
+vh
+ys
+qx
+yp
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+EN
+FC
+FC
+FC
+Yo
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+EN
+FC
+FC
+FC
+Yo
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(122,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+eG
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+bF
+oH
+JR
+JR
+bY
+Wy
+Bd
+EO
+EO
+EO
+DW
+DW
+DW
+EO
+EO
+EO
+Al
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(123,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+Ju
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+sk
+oH
+JR
+JR
+bY
+Fx
+iF
+cm
+cm
+cm
+cm
+cm
+cm
+cm
+cm
+cm
+xg
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(124,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+eG
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+bF
+oH
+JR
+JR
+bY
+Fx
+pN
+lU
+tN
+sP
+lU
+il
+lU
+sP
+tN
+lU
+pQ
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(125,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+mU
+Ju
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+sk
+oH
+JR
+JR
+bY
+Fx
+lU
+lU
+lU
+lU
+lU
+lU
+lU
+lU
+lU
+lU
+lU
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+gN
+gN
+Lz
+Hi
+cp
+Hi
+Lz
+gN
+gN
+tI
+Hi
+JR
+Hi
+Wp
+gN
+gN
+Lz
+Hi
+cp
+Hi
+Lz
+gN
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(126,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+du
+JR
+JR
+JR
+bY
+Fx
+hk
+lU
+lU
+Mr
+lU
+OM
+lU
+PI
+lU
+lU
+vk
+Fx
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+LU
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+cC
+dq
+JR
+dq
+LU
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+cC
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(127,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+yA
+JR
+JR
+JR
+bY
+Wy
+Fx
+Fx
+Fx
+Wy
+Fx
+Fx
+Fx
+Wy
+Fx
+Fx
+Fx
+Wy
+bY
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+Wp
+AO
+fs
+aG
+Hi
+aX
+Hi
+PZ
+AO
+gN
+RM
+Hi
+JR
+Hi
+Wp
+AO
+fs
+aG
+Hi
+aX
+Hi
+PZ
+AO
+gN
+RM
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(128,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+Zb
+Wy
+Fx
+Bm
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+Fx
+ue
+Wy
+Fx
+fW
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(129,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+uO
+AK
+Cc
+rg
+Cy
+Fx
+uO
+ph
+Cc
+rg
+hv
+Fx
+uO
+jb
+Cc
+rg
+Cy
+Fx
+uO
+Bc
+Cc
+rg
+Cy
+Fx
+uO
+qa
+Cc
+rg
+Cy
+Fx
+KD
+Hn
+Hn
+AF
+hv
+Fx
+uO
+pi
+Cc
+rg
+hv
+Fx
+uO
+OA
+Cc
+rg
+Cy
+Fx
+uO
+ZO
+Cc
+rg
+Cy
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+Lz
+Hi
+aX
+tu
+aX
+zn
+zn
+JV
+Hi
+JR
+Hi
+tI
+gN
+gN
+Lz
+Hi
+aX
+tu
+aX
+zn
+zn
+JV
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(130,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+EU
+Cc
+Hn
+Fx
+TS
+Fx
+EU
+Cc
+Hn
+Fx
+TS
+Fx
+EU
+Cc
+Cc
+Fx
+TS
+Fx
+EU
+Cc
+Cc
+Fx
+TS
+Fx
+EU
+Hn
+Hn
+Fx
+TS
+Fx
+Hn
+Hn
+Hn
+Fx
+OJ
+Fx
+uy
+Hn
+Cc
+Fx
+TS
+Fx
+EU
+Hn
+Cc
+Fx
+TS
+Fx
+EU
+Hn
+Cc
+Fx
+TS
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+gC
+gN
+gN
+gN
+CA
+aX
+yL
+aX
+KC
+qb
+Za
+dq
+JR
+dq
+gC
+gN
+gN
+gN
+CA
+aX
+yL
+aX
+KC
+qb
+Za
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(131,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+Oz
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+Fx
+Wy
+fw
+Wy
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+RM
+gN
+gN
+We
+Hi
+aX
+XL
+aX
+aX
+aX
+mN
+Hi
+JR
+Hi
+RM
+gN
+gN
+We
+Hi
+aX
+XL
+aX
+aX
+aX
+mN
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(132,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+iD
+wt
+Hn
+Lf
+rk
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+cr
+wt
+Ot
+Ot
+wx
+Fx
+iD
+wt
+Hn
+Cc
+rk
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+iD
+wt
+Cc
+Cc
+rk
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+aX
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(133,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+Xk
+xS
+Cc
+Cc
+tb
+Fx
+Xk
+JN
+Hn
+GD
+Cc
+Fx
+Xk
+xS
+Cc
+Cc
+tb
+Fx
+Xk
+eC
+Hn
+Cc
+Cc
+Fx
+Xk
+xS
+Cc
+Cc
+tb
+Fx
+bm
+gl
+wx
+Hn
+Hn
+Fx
+Xk
+wL
+Hn
+Cc
+Cc
+Fx
+Xk
+JN
+Cc
+Hn
+rk
+Fx
+Xk
+xS
+Cc
+Hn
+tb
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+kG
+gN
+Lz
+Hi
+aX
+Hi
+Lz
+kG
+gN
+tI
+Hi
+JR
+Hi
+tI
+kG
+gN
+Lz
+Hi
+aX
+Hi
+Lz
+kG
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(134,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+Cc
+Hn
+Hn
+Qh
+cL
+Fx
+Cc
+Cc
+Cc
+Qh
+cL
+Fx
+Cc
+Hn
+Hn
+Qh
+cL
+Fx
+Cc
+Cc
+Hn
+Qh
+Jj
+Fx
+Cc
+Hn
+Cc
+Qh
+cL
+Fx
+TP
+Rm
+IW
+IG
+EC
+Fx
+Cc
+Hn
+Hn
+Qh
+cL
+Fx
+Cc
+Hn
+Hn
+Qh
+Jj
+Fx
+Cc
+Hn
+Cc
+Qh
+cL
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+dq
+cC
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+Yf
+dq
+JR
+dq
+cC
+gN
+gN
+gN
+CA
+aX
+CA
+gN
+gN
+gN
+Yf
+dq
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(135,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Fx
+KQ
+KQ
+JP
+kR
+HL
+Fx
+KQ
+KQ
+MR
+kR
+HL
+Fx
+KQ
+KQ
+JP
+kR
+HL
+Fx
+KQ
+KQ
+XE
+kR
+HL
+Fx
+KQ
+KQ
+JP
+kR
+HL
+Fx
+gp
+Qa
+Hn
+Hn
+NB
+Fx
+KQ
+KQ
+JP
+kR
+HL
+Fx
+KQ
+KQ
+XE
+kR
+HL
+Fx
+KQ
+KQ
+JP
+kR
+HL
+Fx
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Hi
+tI
+gN
+gN
+cC
+Hi
+cp
+Hi
+vR
+GO
+gN
+tI
+Hi
+JR
+Hi
+tI
+gN
+gN
+cC
+Hi
+cp
+Hi
+vR
+GO
+gN
+tI
+Hi
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(136,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+Fx
+Fx
+Wy
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+uK
+uK
+Hi
+Hi
+Hi
+Hi
+uK
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(137,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(138,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(139,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(140,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(141,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(142,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(143,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(144,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(145,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(146,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(147,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(148,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(149,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(150,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(151,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(152,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(153,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(154,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(155,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(156,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(157,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(158,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(159,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(160,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(161,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(162,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(163,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(164,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(165,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(166,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(167,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(168,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(169,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(170,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(171,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(172,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(173,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(174,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(175,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(176,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(177,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(178,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(179,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(180,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(181,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(182,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(183,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(184,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(185,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(186,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(187,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(188,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(189,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(190,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(191,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(192,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(193,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(194,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(195,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(196,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(197,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(198,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}
+(199,1,3) = {"
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+JR
+"}