diff --git a/ModularTegustation/Teguicons/32x32.dmi b/ModularTegustation/Teguicons/32x32.dmi index bce84b256369..266393a218fc 100644 Binary files a/ModularTegustation/Teguicons/32x32.dmi and b/ModularTegustation/Teguicons/32x32.dmi differ diff --git a/ModularTegustation/Teguicons/teguitems.dmi b/ModularTegustation/Teguicons/teguitems.dmi index cb5d018e16ac..929aebff1061 100644 Binary files a/ModularTegustation/Teguicons/teguitems.dmi and b/ModularTegustation/Teguicons/teguitems.dmi differ diff --git a/ModularTegustation/ego_weapons/melee/subtype/mining.dm b/ModularTegustation/ego_weapons/melee/subtype/mining.dm new file mode 100644 index 000000000000..ae12961a43f9 --- /dev/null +++ b/ModularTegustation/ego_weapons/melee/subtype/mining.dm @@ -0,0 +1,7 @@ +/obj/item/ego_weapon/mining//Only works for ER mining + toolspeed = 0.8//total mining time = fortitude mod * toolspeed. Lower is faster. + tool_behaviour = TOOL_MINING + +/obj/item/ego_weapon/mining/examine(mob/user) + . = ..() + . += span_notice("This weapon can be used to mine at a [(100/toolspeed)]% efficiency.") diff --git a/ModularTegustation/ego_weapons/melee/teth.dm b/ModularTegustation/ego_weapons/melee/teth.dm index b9716a0a1d02..cdcd21308b6e 100644 --- a/ModularTegustation/ego_weapons/melee/teth.dm +++ b/ModularTegustation/ego_weapons/melee/teth.dm @@ -93,7 +93,7 @@ user.adjustStaminaLoss(20, TRUE, TRUE) user.throw_at(dodgelanding, 3, 2, spin = TRUE) -/obj/item/ego_weapon/regret +/obj/item/ego_weapon/mining/regret name = "regret" desc = "Before swinging this weapon, expressing one’s condolences for the demise of the inmate who couldn't even have a funeral would be nice." icon_state = "regret" diff --git a/ModularTegustation/ego_weapons/melee/waw.dm b/ModularTegustation/ego_weapons/melee/waw.dm index 0006b7a80031..09755daff435 100644 --- a/ModularTegustation/ego_weapons/melee/waw.dm +++ b/ModularTegustation/ego_weapons/melee/waw.dm @@ -1336,7 +1336,7 @@ PRUDENCE_ATTRIBUTE = 80 ) -/obj/item/ego_weapon/rimeshank +/obj/item/ego_weapon/mining/rimeshank name = "rimeshank" desc = "Stay frozen... And there will be no pain." special = "This weapon can be used to perform a jump attack after a short wind-up." @@ -1347,6 +1347,7 @@ attack_verb_continuous = list("slams", "attacks") attack_verb_simple = list("slam", "attack") hitsound = 'sound/abnormalities/babayaga/attack.ogg' + toolspeed = 0.3 attribute_requirements = list( FORTITUDE_ATTRIBUTE = 80 ) @@ -1356,20 +1357,20 @@ var/dash_range = 10 var/can_attack = TRUE -/obj/item/ego_weapon/rimeshank/get_clamped_volume() +/obj/item/ego_weapon/mining/rimeshank/get_clamped_volume() return 30 -/obj/item/ego_weapon/rimeshank/attack(mob/living/target, mob/living/user) +/obj/item/ego_weapon/mining/rimeshank/attack(mob/living/target, mob/living/user) if(!can_attack) return ..() can_attack = FALSE addtimer(CALLBACK(src, PROC_REF(JumpReset)), 20) -/obj/item/ego_weapon/rimeshank/proc/JumpReset() +/obj/item/ego_weapon/mining/rimeshank/proc/JumpReset() can_attack = TRUE -/obj/item/ego_weapon/rimeshank/afterattack(atom/A, mob/living/user, proximity_flag, params) +/obj/item/ego_weapon/mining/rimeshank/afterattack(atom/A, mob/living/user, proximity_flag, params) if(!CanUseEgo(user) || !can_attack) return if(!isliving(A)) @@ -1400,7 +1401,7 @@ animate(user, alpha = 255,pixel_x = 0, pixel_z = -16, time = 0.1 SECONDS) user.pixel_z = 0 -/obj/item/ego_weapon/rimeshank/proc/JumpAttack(atom/A, mob/living/user, proximity_flag, params) +/obj/item/ego_weapon/mining/rimeshank/proc/JumpAttack(atom/A, mob/living/user, proximity_flag, params) force = 25 A.attackby(src,user) force = initial(force) diff --git a/ModularTegustation/tegu_items/enkephalin_rush/enkr_corpses.dm b/ModularTegustation/tegu_items/enkephalin_rush/enkr_corpses.dm new file mode 100644 index 000000000000..ffeffe88a73b --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/enkr_corpses.dm @@ -0,0 +1,18 @@ +//dead stuff but better + +/obj/effect/mob_spawn/human/agent//TODO: make these always available + icon_state = "corpsehuman" + outfit = /datum/outfit/job/agent + brute_damage = 1000 + +/obj/effect/mob_spawn/human/agent/loot + icon_state = "corpsehuman" + outfit = /datum/outfit/job/agent + +/obj/effect/mob_spawn/human/agent/loot/Initialize() + ..()//Loot generation goes here + +/obj/effect/mob_spawn/human/manager + icon_state = "corpsehuman" + outfit = /datum/outfit/job/manager + brute_damage = 1000 diff --git a/ModularTegustation/tegu_items/enkephalin_rush/enkr_machines.dm b/ModularTegustation/tegu_items/enkephalin_rush/enkr_machines.dm new file mode 100644 index 000000000000..b0b9186bc692 --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/enkr_machines.dm @@ -0,0 +1,7 @@ +/obj/machinery/button/door/landmarkspawner + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF + +/obj/machinery/button/door/landmarkspawner/attack_hand(mob/user) + ..() + for(var/obj/effect/landmark/delayed/D in GLOB.landmarks_list) + D.CreateLandmark(D.spawner) diff --git a/ModularTegustation/tegu_items/enkephalin_rush/enkr_spawners.dm b/ModularTegustation/tegu_items/enkephalin_rush/enkr_spawners.dm new file mode 100644 index 000000000000..03e5c5649e5a --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/enkr_spawners.dm @@ -0,0 +1,208 @@ +//Mainly supplies for latejoiners +/obj/effect/landmark/enkritemspawn + name = "site burial requisitions" + desc = "It spawns an item. Notify a coder. Thanks!" + icon = 'icons/effects/landmarks_static.dmi' + icon_state = "x4" + var/list/possible_items = list( + /obj/item/ksyringe, + /obj/item/reagent_containers/hypospray/medipen/salacid, + /obj/item/reagent_containers/hypospray/medipen/mental, + /obj/item/flashlight/flare, + ) + +/obj/effect/landmark/enkritemspawn/Initialize() + ..() + var/spawning = pick(possible_items) + new spawning(get_turf(src)) + var/timeradd = rand(1200, 1800) + addtimer(CALLBACK(src, PROC_REF(spawnagain)), timeradd) + +/obj/effect/landmark/enkritemspawn/proc/spawnagain() + var/timeradd = rand(1200, 1800) + addtimer(CALLBACK(src, PROC_REF(spawnagain)), timeradd) + + if(prob(50)) //50% to spawn + return + + var/spawning = pick(possible_items) + new spawning(get_turf(src)) + + +//map-based enemy faction selection +/obj/effect/spawner/map_enemy + var/risk_multiplier = 1 + var/level = 1//risk level + var/obj/effect/spawner/scatter/chosen_spawner//the spawner this copies vars from + var/global/map_enemy//enemy type determined when initialized the first time in a given round + var/list/ordeal_types = list()//the types of ordeals the enemy type can spawn + var/list/spawner_types = list(//TODO: this needs to be determined by specific maps. Default is currently for District 4 + /datum/enemy/gold, + /datum/enemy/brown, + /datum/enemy/steel, + /datum/enemy/abnos, + //TODO: wineberry creek E.G.O corrosion faction + ) + +/obj/effect/spawner/map_enemy/New(loc, risk_level) + if(risk_level) + level = risk_level + ..() + +/obj/effect/spawner/map_enemy/Initialize() + if(!map_enemy) + map_enemy = pick(spawner_types) + var/datum/enemy/myenemy = new map_enemy() + if(istype(myenemy,/datum/enemy)) + ordeal_types = myenemy.ordeal_types + var/i = 0 + for(var/obj/S as anything in ordeal_types) + i++ + if(i == level || i == LAZYLEN(ordeal_types)) + var/bonus_spawns = level - i + chosen_spawner = new S(loc, spawns = (1 + bonus_spawns), range = 1) + break + ..() + qdel(src) + +/datum/enemy + var/ordeal_types = list() + +//amber ordeals +/datum/enemy/amber + ordeal_types = list( + /obj/effect/spawner/scatter/amber_dawn, + ) +//clockwork teeth; green ordeals +/datum/enemy/green + ordeal_types = list( + /obj/effect/spawner/scatter/green_dawn, + /obj/effect/spawner/scatter/green_noon, + ) +//sweepers +/datum/enemy/indigo + ordeal_types = list( + /obj/effect/spawner/scatter/indigo_dawn, + /obj/effect/spawner/scatter/indigo_noon, + ) +//E.G.O corroded LC employees +/datum/enemy/gold + ordeal_types = list( + /obj/effect/spawner/scatter/gold_dawn, + /obj/effect/spawner/scatter/gold_noon, + /obj/effect/spawner/scatter/gold_dusk, + /obj/effect/spawner/scatter/gold_midnight, + ) +//peccatulae +/datum/enemy/brown + ordeal_types = list( + /obj/effect/spawner/scatter/brown_dawn, + ) +//G. corp veterans +/datum/enemy/steel + ordeal_types = list( + /obj/effect/spawner/scatter/steel_dawn, + /obj/effect/spawner/scatter/steel_noon, + ) + +//Abnormality thralls +/datum/enemy/abnos + ordeal_types = list( + /obj/effect/spawner/scatter/teth, + /obj/effect/spawner/scatter/he, + /obj/effect/spawner/scatter/waw, + /obj/effect/spawner/scatter/aleph, + ) + + //Peccatulae +/obj/effect/spawner/scatter/brown_dawn + name = "mixed peccatulae spawn" + max_spawns = 10 + loot_table = list( + /mob/living/simple_animal/hostile/ordeal/sin_sloth = 1, + /mob/living/simple_animal/hostile/ordeal/sin_gluttony = 1, + /mob/living/simple_animal/hostile/ordeal/sin_gloom = 1, + /mob/living/simple_animal/hostile/ordeal/sin_pride = 1, + /mob/living/simple_animal/hostile/ordeal/sin_lust = 1, + /mob/living/simple_animal/hostile/ordeal/sin_wrath = 1, + ) + + //E.G.O Corrosions +/obj/effect/spawner/scatter/gold_dawn + name = "amurdad-beanstalk corrosion spawn" + max_spawns = 5 + loot_table = list( + /mob/living/simple_animal/hostile/ordeal/fallen_amurdad_corrosion = 1, + /mob/living/simple_animal/hostile/ordeal/beanstalk_corrosion = 10, + ) + +/obj/effect/spawner/scatter/gold_noon + name = "silent handmaiden spawn" + max_spawns = 5 + loot_table = list( + /mob/living/simple_animal/hostile/ordeal/silentgirl_corrosion = 10, + /mob/living/simple_animal/hostile/ordeal/white_lake_corrosion = 1, + ) + +/obj/effect/spawner/scatter/gold_dusk + name = "electric gold dusk spawn" + max_spawns = 5 + loot_table = list( + /mob/living/simple_animal/hostile/ordeal/centipede_corrosion = 1 , + /mob/living/simple_animal/hostile/ordeal/thunderbird_corrosion = 1, + /mob/living/simple_animal/hostile/ordeal/KHz_corrosion = 1, + ) + +/obj/effect/spawner/scatter/gold_midnight + name = "corroded inquisition spawn" + max_spawns = 1 + loot_table = list( + /mob/living/simple_animal/hostile/ordeal/snake_corrosion = 10, + /mob/living/simple_animal/hostile/ordeal/dog_corrosion = 10, + /mob/living/simple_animal/hostile/ordeal/dog_corrosion/strong = 3, + /mob/living/simple_animal/hostile/ordeal/snake_corrosion/strong = 3, + /mob/living/simple_animal/hostile/ordeal/NT_corrosion = 3, + /mob/living/simple_animal/hostile/ordeal/tso_corrosion = 1,//bosses + ) + +/obj/effect/spawner/scatter/teth//generally these are supposed to be humans who died in the facility, but there aren't enough for good variety + name = "teth abnormality thrall spawn" + loot_table = list( + /mob/living/simple_animal/hostile/shrimp = 1,//shrimp liquidation intern + /mob/living/simple_animal/hostile/doomsday_doll = 1, + /mob/living/simple_animal/hostile/runawaybird = 1,//judgement bird minion + /mob/living/simple_animal/hostile/azure_stave = 1,//servant of wrath minion + ) + +/obj/effect/spawner/scatter/he + name = "he abnormality thrall spawn" + loot_table = list( + /mob/living/simple_animal/hostile/shrimp_soldier = 1,//shotgun shrimp + /mob/living/simple_animal/hostile/gift = 1,//laetitia spider + /mob/living/simple_animal/hostile/grown_strong = 1, + /mob/living/simple_animal/hostile/nosferatu_mob = 1, + /mob/living/simple_animal/hostile/worker_bee = 1, + /mob/living/simple_animal/hostile/soldier_bee = 1,//identical to above, has a hat + /mob/living/simple_animal/hostile/artillery_bee = 1, + /mob/living/simple_animal/hostile/slime = 1,//ML slime (small) + ) + +/obj/effect/spawner/scatter/waw + name = "waw abnormality thrall spawn" + loot_table = list( + /mob/living/simple_animal/hostile/yagaslave = 1, + /mob/living/simple_animal/hostile/parasite_tree_sapling = 1, + /mob/living/simple_animal/hostile/thunder_zombie = 1, + ) + +/obj/effect/spawner/scatter/aleph + name = "aleph abnormality thrall spawn" + loot_table = list( + /mob/living/simple_animal/hostile/little_prince_1 = 1,//this guy has a wopping 1200 hp + /mob/living/simple_animal/hostile/mini_censored = 1, + /mob/living/simple_animal/hostile/meatblob = 1, + /mob/living/simple_animal/hostile/meatblob/gunner = 1, + /mob/living/simple_animal/hostile/meatblob/gunner/shotgun = 1, + /mob/living/simple_animal/hostile/meatblob/gunner/sniper = 1, + /mob/living/simple_animal/hostile/slime/big = 1//ML's chosen + ) diff --git a/ModularTegustation/tegu_items/enkephalin_rush/enkr_treasure.dm b/ModularTegustation/tegu_items/enkephalin_rush/enkr_treasure.dm new file mode 100644 index 000000000000..a717a5a51530 --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/enkr_treasure.dm @@ -0,0 +1,18 @@ +//These are just toys and reward items, they don't necessarily have to be E.G.O. +/obj/item/onyx_hook + name = "onyx hook" + desc = "An E.G.O gift left by an unknown abnormality. It looks like something you've seen in a dream." + icon = 'ModularTegustation/Teguicons/teguitems.dmi' + icon_state = "onyx_hook" + +/obj/item/onyx_hook/examine_more() + . = list("On closer examination, [src] appears to be an agate fishook.") + +/obj/item/onyx_hook/attack_self(mob/user) + to_chat(user,span_notice("You USE the onyx hook.")) + if(do_after(user, 12, src)) + var/turf/T = get_turf(pick(SSjob.latejoin_trackers)) + playsound(user, 'sound/effects/magic.ogg', 60) + flash_color(user, flash_color="#87CEEB", flash_time=12) + user.forceMove(T) + to_chat(user,span_notice("You've returned to safety!")) diff --git a/ModularTegustation/tegu_items/enkephalin_rush/landmarks.dm b/ModularTegustation/tegu_items/enkephalin_rush/landmarks.dm new file mode 100644 index 000000000000..27819d4d9b35 --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/landmarks.dm @@ -0,0 +1,95 @@ +//Abnormalities that are mapped into enkephalin rush. Generally none should teleport or overall cause inconvenience to people outside the surrounding area +GLOBAL_LIST_INIT(assiyah, list(//HE's and TETHs + /mob/living/simple_animal/hostile/abnormality/puss_in_boots, + /mob/living/simple_animal/hostile/abnormality/woodsman, + /mob/living/simple_animal/hostile/abnormality/redblooded, + /mob/living/simple_animal/hostile/abnormality/funeral, + /mob/living/simple_animal/hostile/abnormality/scarecrow, + /mob/living/simple_animal/hostile/abnormality/golden_apple, + /mob/living/simple_animal/hostile/abnormality/shock_centipede, + /mob/living/simple_animal/hostile/abnormality/ardor_moth, + /mob/living/simple_animal/hostile/abnormality/porccubus, +)) + +GLOBAL_LIST_INIT(briah, list(//WAW + /mob/living/simple_animal/hostile/abnormality/thunder_bird, + /mob/living/simple_animal/hostile/abnormality/big_bird, + /mob/living/simple_animal/hostile/abnormality/nosferatu, + /mob/living/simple_animal/hostile/abnormality/big_wolf, + /mob/living/simple_animal/hostile/abnormality/dreaming_current, +)) + +GLOBAL_LIST_INIT(atziluth, list(//ALEPH + /mob/living/simple_animal/hostile/abnormality/mountain, + /mob/living/simple_animal/hostile/abnormality/melting_love, + /mob/living/simple_animal/hostile/abnormality/censored, + +)) + +//Split into 3 groups, Combat for damaging abnos, Support for ranged, AOE and otherwise support abnos, and tank for abnos that can take a beating reliably +/obj/effect/landmark/abnospawn/assiyah + name = "assiyah abno spawner" + desc = "It spawns an abno. Notify a coder. Thanks!" + icon = 'icons/effects/landmarks_static.dmi' + icon_state = "x4" + +/obj/effect/landmark/abnospawn/assiyah/Initialize()//Use subtypes instead of repeating all this code + ..() + var/spawning = pick_n_take(GLOB.assiyah) + if(spawning) + var/mob/living/simple_animal/hostile/abnormality/A = new spawning(get_turf(src)) + addtimer(CALLBACK(A, TYPE_PROC_REF(/mob/living/simple_animal/hostile/abnormality, BreachEffect), BREACH_PINK), 2 SECONDS) + SSabnormality_queue.possible_abnormalities[HE_LEVEL] -= spawning + return INITIALIZE_HINT_QDEL + +/obj/effect/landmark/abnospawn/briah + name = "briah abno spawner" + desc = "It spawns an abno. Notify a coder. Thanks!" + icon = 'icons/effects/landmarks_static.dmi' + icon_state = "x4" + +/obj/effect/landmark/abnospawn/briah/Initialize() + ..() + var/spawning = pick_n_take(GLOB.briah) + if(spawning) + var/mob/living/simple_animal/hostile/abnormality/A = new spawning(get_turf(src)) + addtimer(CALLBACK(A, TYPE_PROC_REF(/mob/living/simple_animal/hostile/abnormality, BreachEffect), BREACH_PINK), 2 SECONDS) + SSabnormality_queue.possible_abnormalities[WAW_LEVEL] -= spawning + return INITIALIZE_HINT_QDEL + +/obj/effect/landmark/abnospawn/atziluth + name = "atziluth abno spawner" + desc = "It spawns an abno. Notify a coder. Thanks!" + icon = 'icons/effects/landmarks_static.dmi' + icon_state = "x4" + +/obj/effect/landmark/abnospawn/atziluth/Initialize() + ..() + var/spawning = pick_n_take(GLOB.atziluth) + if(spawning) + var/mob/living/simple_animal/hostile/abnormality/A = new spawning(get_turf(src)) + addtimer(CALLBACK(A, TYPE_PROC_REF(/mob/living/simple_animal/hostile/abnormality, BreachEffect), BREACH_PINK), 2 SECONDS) + SSabnormality_queue.possible_abnormalities[ALEPH_LEVEL] -= spawning + return INITIALIZE_HINT_QDEL + +//containment cells and xenospawns +/obj/effect/landmark/delayed + icon_state = "x2" + var/spawner = null + +/obj/effect/landmark/delayed/proc/CreateLandmark(spawner) + if(spawner) + new spawner(get_turf(src)) + qdel(src) + +/obj/effect/landmark/delayed/xeno_spawn + icon_state = "xeno_spawn" + spawner = /obj/effect/landmark/xeno_spawn + +/obj/effect/landmark/delayed/abnormality_room + icon_state = "abno_room" + spawner = /obj/effect/spawner/abnormality_room + +/obj/effect/landmark/delayed/department_center + name = "department_center" + spawner = /obj/effect/landmark/department_center diff --git a/ModularTegustation/tegu_items/enkephalin_rush/ore_turfs.dm b/ModularTegustation/tegu_items/enkephalin_rush/ore_turfs.dm new file mode 100644 index 000000000000..908ef6f4564a --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/ore_turfs.dm @@ -0,0 +1,253 @@ +//path is closed/minerals.dm +//'icons/turf/mining.dmi' +//FIXME: destroys tile decals +/turf/closed/mineral/facility//wall piece + name = "rubble" + icon = 'icons/turf/mining.dmi' + smooth_icon = 'icons/turf/walls/rock_wall.dmi' + icon_state = "rock2" + base_icon_state = "rock_wall" + smoothing_flags = SMOOTH_BITMASK | SMOOTH_BORDER + canSmoothWith = list(SMOOTH_GROUP_CLOSED_TURFS) + baseturfs = /turf/open/floor/plating + initial_gas_mix = OPENTURF_DEFAULT_ATMOS + environment_type = "waste" + turf_type = /turf/open/floor/plating/asteroid + defer_change = TRUE + +/turf/closed/mineral/random/facility + name = "rubble" + icon = 'icons/turf/mining.dmi' + smooth_icon = 'icons/turf/walls/rock_wall.dmi' + icon_state = "rock2" + base_icon_state = "rock_wall" + smoothing_flags = SMOOTH_BITMASK | SMOOTH_BORDER + canSmoothWith = list(SMOOTH_GROUP_CLOSED_TURFS) + defer_change = TRUE + environment_type = "waste" + turf_type = /turf/open/floor/plating + baseturfs = /turf/open/floor/plating + initial_gas_mix = OPENTURF_DEFAULT_ATMOS + var/risk_level = 1 + var/mining_time = 40 + var/list/chem_list + var/event_chance = 20 + var/abnospawner = FALSE + /* + Tool speeds for pickaxes are the following: + improvised pick: 3 + pickaxe: 1 + drill: 0.6 + silver p: 0.5 + diamond p: 0.3 + diamond drill: 0.2 + jackhammer: 0.1 + */ + +/turf/closed/mineral/random/facility/Initialize() + if(prob(30) && (baseturfs == /turf/open/floor/plating)) + baseturfs = /turf/open/floor/plating/rust + if(prob(30)) + risk_level += 1 + ..() + +/turf/closed/mineral/random/facility/Change_Ore(ore_type, random = 0) + . = ..() + if(mineralType) + smooth_icon = 'icons/turf/walls/rock_wall.dmi' + icon = 'icons/turf/walls/rock_wall.dmi' + icon_state = "rock_wall-0" + base_icon_state = "rock_wall" + smoothing_flags = SMOOTH_BITMASK | SMOOTH_BORDER + +/turf/closed/mineral/random/facility//assiyah, ZAYIN-TETH level + mineralChance = 10 + mineralSpawnChanceList = list( + /obj/item/stack/ore/uranium = 1, /obj/item/stack/ore/diamond = 1, /obj/item/stack/ore/gold = 2, /obj/item/stack/ore/silver = 3, + /obj/item/stack/ore/ironscrap = 20, /obj/item/stack/ore/glassrubble = 40, /obj/item/stack/ore/plastic = 40, /obj/item/stack/ore/plasteel = 5) + +/turf/closed/mineral/random/facility/briah//HE-WAW level + mineralChance = 15 + mineralSpawnChanceList = list( + /obj/item/stack/ore/uranium = 3, /obj/item/stack/ore/diamond = 2, /obj/item/stack/ore/gold = 3, /obj/item/stack/ore/silver = 5, + /obj/item/stack/ore/ironscrap = 20, /obj/item/stack/ore/glassrubble = 30, /obj/item/stack/ore/plastic = 30, /obj/item/stack/ore/plasteel = 15) + risk_level = 3 + mining_time = 120 + +/turf/closed/mineral/random/facility/atzliuth//WAW-ALEPH level + mineralChance = 20 + mineralSpawnChanceList = list( + /obj/item/stack/ore/uranium = 5, /obj/item/stack/ore/diamond = 10, /obj/item/stack/ore/gold = 5, /obj/item/stack/ore/silver = 5, + /obj/item/stack/ore/ironscrap = 10, /obj/item/stack/ore/glassrubble = 5, /obj/item/stack/ore/plastic = 15, /obj/item/stack/ore/plasteel = 30) + risk_level = 4 + mining_time = 400 + +/turf/closed/mineral/random/facility/attackby(obj/item/I, mob/user, params) + if (!ISADVANCEDTOOLUSER(user)) + to_chat(usr, "You don't have the dexterity to do this!") + return + + if(I.tool_behaviour == TOOL_MINING) + var/turf/T = user.loc + if (!isturf(T)) + return + if(ishuman(user))//fortitude lowers the initial mining time by a bit over half at 130 + var/userfort = (get_modified_attribute_level(user, FORTITUDE_ATTRIBUTE)) + var/fortmod = 1 + userfort/100 + mining_time /= fortmod + if(mining_time * I.toolspeed >= 100) + to_chat(user, "Your [I] barely chips the rock!") + return + + if(last_act + (mining_time * I.toolspeed) > world.time)//prevents message spam + return + last_act = world.time + to_chat(user, "You start picking...") + if(I.use_tool(src, user, mining_time, volume=50)) + if(ismineralturf(src)) + to_chat(user, "You finish cutting into the rock.") + gets_drilled(user, TRUE) + SSblackbox.record_feedback("tally", "pick_used_mining", 1, I.type) + else + return attack_hand(user) + +/turf/closed/mineral/random/facility/gets_drilled(user)//no experience + if(mineralType && (mineralAmt > 0)) + new mineralType(src, mineralAmt) + SSblackbox.record_feedback("tally", "ore_mined", mineralAmt, mineralType) + + for(var/obj/effect/temp_visual/mining_overlay/M in src) + qdel(M) + var/flags = NONE + if(defer_change) // TODO: make the defer change var a var for any changeturf flag + flags = CHANGETURF_DEFER_CHANGE + if(abnospawner) + AbnoEvent() + if(prob(event_chance)) + PickEvents(user) + ScrapeAway(null, flags) + addtimer(CALLBACK(src, PROC_REF(AfterChange)), 1, TIMER_UNIQUE) + playsound(get_turf(src), 'sound/effects/break_stone.ogg', 50, TRUE) //beautiful destruction + +/turf/closed/mineral/random/facility/proc/PickEvents(user) + if(prob(70)) + MiningEvent() + return + if(prob(20)) + SummonMobs() + return + else + AbnoEvent() + +/turf/closed/mineral/random/facility/proc/MiningEvent(user) + if(prob(20))//explosion + var/explosion_damage = (risk_level * 20) + if(prob(risk_level * 10))//explode + visible_message(span_danger("[src] suddenly explodes!")) + new /obj/effect/temp_visual/explosion(get_turf(src)) + playsound(get_turf(src), 'sound/effects/ordeals/steel/gcorp_boom.ogg', 60, TRUE) + for(var/mob/living/L in view(3, src)) + L.apply_damage(explosion_damage, RED_DAMAGE, null, L.run_armor_check(null, RED_DAMAGE)) + return + else + visible_message(span_danger("You feel a sudden rush of air as [src] crumbles!")) + var/datum/effect_system/smoke_spread/chem/S = new + var/turf/location = get_turf(src) + // Create the reagents to put into the air + create_reagents(100) + PickChems(risk_level) + S.attach(location) + S.set_up(reagents, 2, location, silent = FALSE) + S.start() + +/turf/closed/mineral/random/facility/proc/PickChems(risk_level)//TODO: make sure these are actually dangerous + switch(risk_level) + if(1) + chem_list = list( + /datum/reagent/toxin/mutagen = 1, + /datum/reagent/toxin/minttoxin = 10,//fatties get ownzoned + /datum/reagent/drug/space_drugs = 30, + /datum/reagent/toxin/chloralhydrate = 30, + /datum/reagent/toxin/staminatoxin = 50, + ) + if(2) + chem_list = list( + /datum/reagent/toxin/acid = 5, + /datum/reagent/toxin/minttoxin = 10, + /datum/reagent/drug/space_drugs = 15, + /datum/reagent/toxin/chloralhydrate = 20, + /datum/reagent/toxin/staminatoxin = 30, + ) + if(3) + chem_list = list( + /datum/reagent/toxin/cyanide = 1, + /datum/reagent/toxin = 10, + /datum/reagent/toxin/mutagen = 5, + /datum/reagent/toxin/acid = 10, + /datum/reagent/toxin/minttoxin = 10, + /datum/reagent/toxin/mindbreaker = 10, + /datum/reagent/toxin/chloralhydrate = 10, + /datum/reagent/toxin/staminatoxin = 10, + ) + if(4) + chem_list = list( + /datum/reagent/toxin/cyanide = 1, + /datum/reagent/toxin = 20, + /datum/reagent/toxin/mutagen = 10, + /datum/reagent/toxin/acid = 20, + /datum/reagent/toxin/minttoxin = 5, + /datum/reagent/toxin/mindbreaker = 15, + /datum/reagent/toxin/chloralhydrate = 20, + /datum/reagent/toxin/staminatoxin = 5, + ) + else//5, or 6 if it somehow appears + chem_list = list( + /datum/reagent/toxin/cyanide = 1, + /datum/reagent/toxin = 30, + /datum/reagent/toxin/mutagen = 10, + /datum/reagent/toxin/acid = 30, + /datum/reagent/toxin/minttoxin = 1, + /datum/reagent/toxin/mindbreaker = 10, + /datum/reagent/toxin/chloralhydrate = 30, + /datum/reagent/toxin/staminatoxin = 1, + ) + + var/chosen_reagent = pickweight(chem_list) + reagents.add_reagent(chosen_reagent, (risk_level * 20)) + +/turf/closed/mineral/random/facility/proc/SummonMobs(user) + visible_message(span_danger("Something violently emerges from [src]!")) + var/threat_level = clamp((risk_level - 1), 1, 4)//ZAYIN and TETHs will spawn dawns, while only ALEPH will spawn midnights + new /obj/effect/spawner/map_enemy(get_turf(src), threat_level) + +/turf/closed/mineral/random/facility/proc/AbnoEvent(user) + visible_message(span_danger("spawning abnormality!")) + var/list/abnolevels = list( + ZAYIN_LEVEL = 1, + TETH_LEVEL = 2, + HE_LEVEL = 3, + WAW_LEVEL = 4, + ALEPH_LEVEL = 5, + ) + var/abno_level = abnolevels[risk_level] + SSabnormality_queue.SelectAvailableLevels() + var/mob/living/simple_animal/hostile/abnormality/abno + if(LAZYLEN(SSabnormality_queue.possible_abnormalities[abno_level])) + abno = pick(SSabnormality_queue.possible_abnormalities[abno_level]) + SSabnormality_queue.possible_abnormalities[abno_level] -= abno + if(abno) + var/mob/living/simple_animal/hostile/abnormality/A = new abno(get_turf(src)) + if(prob(1)) + qdel(A) + visible_message(span_nicegreen("The rubble reveals an abnormality core.")) + return + visible_message(span_danger("[A] emerges from the rubble!")) + //addtimer(CALLBACK(A, TYPE_PROC_REF(/mob/living/simple_animal/hostile/abnormality, PostSpawn)), 1 SECONDS) + //The above causes issues with specific abnos like amurdad, but fixes it for others like One Sin. Needs a better solution + addtimer(CALLBACK(A, TYPE_PROC_REF(/mob/living/simple_animal/hostile/abnormality, BreachEffect), user, BREACH_PINK), 2 SECONDS)//In a separate PR: Add BREACH_MINING. Use this to prevent abnos from teleporting and to nerf pink midnights + +/turf/closed/mineral/random/facility/abnormality + name = "shifty rubble"//you need to varedit the threat levels + desc = "This rubble produces strong enkephalin readings." + abnospawner = TRUE + event_chance = 0 diff --git a/ModularTegustation/tegu_items/enkephalin_rush/ores.dm b/ModularTegustation/tegu_items/enkephalin_rush/ores.dm new file mode 100644 index 000000000000..4772fb20f75d --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/ores.dm @@ -0,0 +1,49 @@ +//refer to ores_coins.dm for the base type +//use mining.dmi for icons +/obj/item/stack/ore/ironscrap + name = "scrap" + icon_state = "Iron ore" + inhand_icon_state = "Iron ore" + singular_name = "iron ore chunk" + points = 1 + mats_per_unit = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT) + refined_type = /obj/item/stack/sheet/metal + mine_experience = 0 + scan_state = "rock_Iron" + spreadChance = 20 + merge_type = /obj/item/stack/ore/ironscrap + +/obj/item/stack/ore/glassrubble + name = "broken glass" + icon = 'icons/obj/shards.dmi' + icon_state = "large" + inhand_icon_state = "Glass ore"//TODO: find these + points = 1 + mats_per_unit = list(/datum/material/glass=MINERAL_MATERIAL_AMOUNT) + refined_type = /obj/item/stack/sheet/glass + mine_experience = 0 + spreadChance = 20 + merge_type = /obj/item/stack/ore/glassrubble + +/obj/item/stack/ore/plastic + name = "plastic waste" + icon_state = "Bananium ore" + inhand_icon_state = "Bananium ore" + points = 1 + mats_per_unit = list(/datum/material/plastic=MINERAL_MATERIAL_AMOUNT) + refined_type = /obj/item/stack/sheet/plastic + mine_experience = 0 + spreadChance = 20 + merge_type = /obj/item/stack/ore/plastic + +/obj/item/stack/ore/plasteel + name = "X corp scrap alloy" + icon_state = "Adamantine ore" + inhand_icon_state = "Adamantine ore" + points = 15 + mats_per_unit = list(/datum/material/plasma=MINERAL_MATERIAL_AMOUNT, /datum/material/iron=MINERAL_MATERIAL_AMOUNT) + refined_type = /obj/item/stack/sheet/plasteel + mine_experience = 0 + scan_state = "rock_Plasma" + spreadChance = 8 + merge_type = /obj/item/stack/ore/plasteel diff --git a/ModularTegustation/tegu_items/enkephalin_rush/vending.dm b/ModularTegustation/tegu_items/enkephalin_rush/vending.dm new file mode 100644 index 000000000000..7d13366b5a31 --- /dev/null +++ b/ModularTegustation/tegu_items/enkephalin_rush/vending.dm @@ -0,0 +1,27 @@ +/obj/machinery/vending/lobotomy_mining + name = "\improper Site Recovery Equipment vendor" + desc = "A machine used by wings to explore the ruins of L corp" + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | FREEZE_PROOF + product_slogans = "It's dangerous to go alone! Take this!" + product_ads = "Buy my axe!" + icon_state = "robotics" + icon_deny = null + products = list( + /obj/item/safety_kit = 100, + /obj/item/pickaxe/rusted = 10, + /obj/item/pickaxe = 25, + /obj/item/pickaxe/mini = 100, + /obj/item/pickaxe/drill = 100, + + //advanced stuff + /obj/item/storage/firstaid/regular = 100, + /obj/item/flashlight/lantern = 10, + /obj/item/pickaxe/silver = 100, + /obj/item/pickaxe/diamond = 100, + /obj/item/pickaxe/drill/diamonddrill = 15, + /obj/item/pickaxe/drill/jackhammer = 5, + + ) + + default_price = 100 + input_display_header = "Mining Equipment" diff --git a/ModularTegustation/tegu_items/gadgets/unpowered.dm b/ModularTegustation/tegu_items/gadgets/unpowered.dm index 182b84ee8d69..bdb5955dac60 100644 --- a/ModularTegustation/tegu_items/gadgets/unpowered.dm +++ b/ModularTegustation/tegu_items/gadgets/unpowered.dm @@ -415,6 +415,7 @@ attack_verb_simple = list("attack", "bash", "batter", "bludgeon", "whack") toolspeed = 1 armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, BIO = 0, RAD = 0, FIRE = 100, ACID = 100) + custom_price = 300 var/mode = RAK_HP_MODE /obj/item/safety_kit/attack_self(mob/user) diff --git a/_maps/district_4.json b/_maps/district_4.json new file mode 100644 index 000000000000..cb7abd907b30 --- /dev/null +++ b/_maps/district_4.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "map_name": "District 4", + "map_path": "map_files/Enkephalin_Rush", + "map_file": [ + "district_4.dmm" + ], + "traits": [ + { + "Baseturf": "/turf/open/floor/plating/asteroid" + } + ], + "space_ruin_levels": 0, + "space_empty_levels": 0, + "minetype": "none", + "maptype": "enkephalin_rush" +} diff --git a/_maps/map_files/Enkephalin_Rush/district_4.dmm b/_maps/map_files/Enkephalin_Rush/district_4.dmm new file mode 100644 index 000000000000..df79d1ae6854 --- /dev/null +++ b/_maps/map_files/Enkephalin_Rush/district_4.dmm @@ -0,0 +1,77941 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/distortion/another_day, +/area/city/backstreets_room) +"ac" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/machinery/computer/shuttle/mining{ + name = "elevator Console"; + possible_destinations = "ER1;ER2"; + resistance_flags = 115; + shuttleId = "district4"; + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/department_main/command) +"ae" = ( +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-22" + }, +/turf/open/floor/plating/grass, +/area/department_main/safety) +"af" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"ai" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"ak" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"al" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"am" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/command) +"ao" = ( +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"aq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"ar" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"as" = ( +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"at" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "fronttire" + }, +/turf/open/floor/wood, +/area/city/house) +"aw" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/plastic, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"ax" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"az" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating/grass, +/area/department_main/command) +"aC" = ( +/mob/living/simple_animal/hostile/humanoid/rat/zippy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"aD" = ( +/obj/machinery/smartfridge, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"aE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "morgue" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"aG" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/plating/rust, +/area/department_main/command) +"aH" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"aI" = ( +/obj/machinery/smartfridge/extraction_storage/ego_armor, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"aJ" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"aK" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/machinery/computer/security, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"aO" = ( +/obj/structure/sign/departments/command, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/information) +"aP" = ( +/obj/structure/sign/departments/restroom{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"aS" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/command) +"aT" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 17 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/city/shop) +"aU" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"aW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"aX" = ( +/turf/open/floor/wood, +/area/city/shop) +"aY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/facility/dark, +/area/department_main/training) +"aZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"bb" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"bc" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"bd" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"be" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"bf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"bg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/department_main/training) +"bh" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/city/shop) +"bj" = ( +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"bk" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"bn" = ( +/obj/effect/mob_spawn/human/corpse, +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"bo" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"bp" = ( +/obj/structure/rack, +/obj/item/rawpe, +/obj/item/rawpe, +/obj/item/rawpe, +/turf/open/floor/pod, +/area/city/shop) +"bq" = ( +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"br" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"bs" = ( +/obj/structure/rack, +/obj/item/ego_weapon/ranged/clerk, +/obj/item/ego_weapon/ranged/clerk, +/turf/open/floor/plating, +/area/department_main/extraction) +"bt" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"bu" = ( +/obj/structure/flora/rock/pile, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"bv" = ( +/obj/machinery/button/door{ + id = 55 + }, +/turf/closed/indestructible/reinforced, +/area/city/house) +"bw" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/hatch, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"bx" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -32 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/item/kirbyplants/photosynthetic{ + anchored = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"by" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"bB" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/department_main/discipline) +"bC" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/facility_hallway/manager) +"bE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"bF" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"bG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/training) +"bH" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/city/shop) +"bI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/rollingpin, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/city/shop) +"bJ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"bK" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"bM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/item/choice_beacon/ingredient, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/city/shop) +"bO" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plating, +/area/department_main/safety) +"bP" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "guy" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"bQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/city) +"bR" = ( +/turf/open/floor/carpet, +/area/department_main/manager) +"bS" = ( +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"bT" = ( +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"bU" = ( +/obj/item/storage/backpack/duffelbag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"bV" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/city) +"bW" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"bX" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/plasteel/dark, +/area/city) +"bY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"cc" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"cd" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/facility/white, +/area/city) +"ce" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC12" + }, +/turf/open/floor/plating, +/area/department_main/command) +"cg" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"ci" = ( +/obj/structure/rack, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"cj" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"cl" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/mixed, +/obj/item/mop/advanced, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"cm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"co" = ( +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"cq" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"cr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"cs" = ( +/obj/effect/decal/cleanable/plastic, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"ct" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"cu" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"cv" = ( +/obj/structure/sign/departments/info{ + pixel_x = -32 + }, +/obj/structure/table/glass, +/obj/item/paper/guides/jobs/zayin/lore/wellcheers{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"cw" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"cx" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"cy" = ( +/obj/structure/sink/kitchen{ + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"cz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/refinery, +/turf/open/floor/pod, +/area/city/shop) +"cC" = ( +/obj/structure/sign/poster/contraband/space_cube, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/safety) +"cD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/control) +"cF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/department_main/training) +"cH" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"cI" = ( +/obj/structure/sign/departments/command{ + pixel_y = 32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"cJ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plating/rust, +/area/department_main/information) +"cK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"cO" = ( +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"cR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"cS" = ( +/turf/closed/indestructible/opsglass, +/area/city/shop) +"cU" = ( +/obj/structure/rack, +/obj/effect/landmark/enkritemspawn, +/turf/open/floor/pod, +/area/city/shop) +"cV" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"cW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass, +/area/city) +"cX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"cY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/reinforced, +/area/department_main/manager) +"cZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/rock, +/area/facility_hallway/command) +"da" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"db" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/turf/open/floor/plating, +/area/department_main/control) +"dd" = ( +/obj/machinery/aug_manipulator, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"df" = ( +/obj/structure/sign/warning/nosmoking/circle, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"dg" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/city/shop) +"dh" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"di" = ( +/obj/structure/sign/poster/lobotomycorp/suckmyenegy, +/turf/closed/wall/mineral/wood, +/area/city/shop) +"dk" = ( +/obj/item/chair, +/turf/open/floor/pod, +/area/facility_hallway/manager) +"dl" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"do" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"dr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC15" + }, +/turf/open/floor/wood, +/area/department_main/command) +"ds" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Disciplinary Department" + }, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"du" = ( +/obj/effect/turf_decal/siding/white, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"dv" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"dw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"dx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"dy" = ( +/obj/structure/chair/office, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"dz" = ( +/obj/structure/bodycontainer/crematorium{ + id = "cremawheat" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"dB" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/item/shard, +/turf/open/floor/plating, +/area/department_main/training) +"dC" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"dE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"dG" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"dH" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"dI" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"dK" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"dM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/structure/rack{ + pixel_x = -1 + }, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/suit/apron, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"dN" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -32 + }, +/obj/item/kirbyplants/photosynthetic{ + anchored = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"dR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"dS" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/chair/comfy/teal, +/turf/open/floor/plating/rust, +/area/department_main/command) +"dT" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/safety) +"dU" = ( +/obj/structure/railing, +/obj/structure/fluff/arc/angela{ + pixel_y = 11 + }, +/turf/open/floor/plating/grass, +/area/department_main/command) +"dV" = ( +/mob/living/simple_animal/hostile/humanoid/rat/hammer{ + name = "sobbing rat" + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"dW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/lobotomycorp/bearbeer, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"dX" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"dZ" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"ea" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"eb" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/white, +/area/department_main/safety) +"ed" = ( +/obj/structure/chair/stool, +/obj/machinery/navbeacon/wayfinding/trainingdepartment, +/turf/open/floor/plating, +/area/department_main/training) +"ef" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"eg" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/plating, +/area/department_main/training) +"eh" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"ei" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ek" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"em" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC26" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"eo" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"ep" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/pod, +/area/city/shop) +"er" = ( +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/safety) +"es" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/indestructible/rock, +/area/city) +"et" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"eu" = ( +/obj/structure/sign/ordealmonitor{ + pixel_x = 32 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"ew" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/pod, +/area/facility_hallway/manager) +"ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/department_main/discipline) +"ey" = ( +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ez" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/item/toy/plush/yuri, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"eB" = ( +/turf/open/floor/plasteel/dark, +/area/city) +"eE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/facility_hallway/control) +"eF" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"eG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/broken_regenerator, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"eK" = ( +/obj/machinery/door/airlock/wood{ + name = "hydroponics" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"eL" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"eM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"eN" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/machinery/light/built, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/department_main/command) +"eO" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/curtain, +/turf/open/floor/wood, +/area/city/shop) +"eP" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"eS" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/turf/open/floor/pod, +/area/city/shop) +"eT" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"eU" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"eX" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"eY" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "garbage"; + name = "disposal conveyor" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"eZ" = ( +/obj/docking_port/stationary{ + dheight = 10; + dir = 2; + dwidth = 1; + height = 23; + id = "emergency_home"; + name = "Alphacorp emergency evac bay"; + width = 8 + }, +/turf/open/floor/plating, +/area/city) +"fa" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/paper/guides/jobs/teth/guide{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper/guides/jobs/zayin/guide{ + pixel_x = -5 + }, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"fb" = ( +/turf/closed/indestructible/reinforced, +/area/city/backstreets_alley) +"fc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/conveyor{ + id = "smelting" + }, +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + output_dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"fd" = ( +/obj/item/book/granter/action/skill/confusion, +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"fe" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"ff" = ( +/obj/machinery/door/airlock/hatch{ + name = "disposals" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/city) +"fg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/food/plumphelmetbiscuit, +/turf/open/floor/plasteel/elevatorshaft, +/area/city/shop) +"fh" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/facility_hallway/manager) +"fk" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/discipline) +"fl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"fn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"fo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"fq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/frame/computer{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/manager) +"fr" = ( +/obj/structure/statue/diamond/ai1{ + anchored = 1 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"fs" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ft" = ( +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"fw" = ( +/obj/structure/sign/departments/welfare, +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"fx" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = list() + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"fy" = ( +/obj/structure/rack, +/obj/item/training_toolbox, +/obj/item/toy/plush/gregor, +/turf/open/floor/wood, +/area/city/house) +"fz" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"fA" = ( +/obj/machinery/light/broken, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"fB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"fC" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"fD" = ( +/obj/machinery/smartfridge/organ, +/turf/closed/indestructible/reinforced, +/area/city) +"fE" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"fG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/highsecurity{ + name = "Welfare Department" + }, +/turf/open/floor/plating, +/area/department_main/welfare) +"fI" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/structure/sign/departments/command{ + pixel_x = -32 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"fJ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"fK" = ( +/obj/structure/fluff/bus/passable/seat, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/limbusvest, +/turf/open/floor/carpet/black, +/area/city/house) +"fL" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 7 + }, +/obj/structure/sign/poster/lobotomycorp/suckmyenegy{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"fM" = ( +/obj/structure/sign/poster/official/cleanliness, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"fN" = ( +/obj/structure/sign/poster/lobotomycorp/clerk_lives_matter, +/turf/closed/indestructible/reinforced, +/area/mine/hydroponics) +"fP" = ( +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"fS" = ( +/obj/structure/rack, +/obj/item/rawpe, +/obj/item/rawpe, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"fV" = ( +/obj/structure/sign/departments/l_corp, +/turf/closed/indestructible/reinforced, +/area/city) +"fX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/departments/evac{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"fY" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"fZ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"gb" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/command) +"gc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/shop) +"gd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"ge" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"gh" = ( +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"gi" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plating, +/area/department_main/command) +"gj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/department_main/command) +"gk" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"gn" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"gp" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"gq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/wood{ + name = "mining recieving" + }, +/turf/open/floor/plasteel, +/area/city) +"gt" = ( +/obj/machinery/smartfridge/extraction_storage/ego_weapon, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"gu" = ( +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"gv" = ( +/obj/structure/bookcase/random, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"gz" = ( +/turf/open/floor/carpet/green, +/area/department_main/safety) +"gA" = ( +/obj/item/storage/backpack/duffelbag, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"gC" = ( +/obj/structure/railing, +/obj/structure/flora/tree/jungle/small, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass, +/area/department_main/command) +"gD" = ( +/turf/closed/mineral/random/facility/briah, +/area/department_main/command) +"gE" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"gF" = ( +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/white, +/area/department_main/safety) +"gG" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"gI" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"gJ" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/indestructible/reinforced, +/area/city/backstreets_room) +"gK" = ( +/mob/living/simple_animal/hostile/humanoid/rat/pipe{ + name = "hysterical rat" + }, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"gL" = ( +/obj/effect/turf_decal/siding/blue, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"gO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 7 + }, +/obj/machinery/facility_holomap{ + dir = 1; + forced_zLevel = 2 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"gS" = ( +/obj/effect/turf_decal/siding/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/white, +/area/department_main/safety) +"gT" = ( +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-22" + }, +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/decal/cleanable/cobweb, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"gU" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"gV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"gW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"gX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/pcorp, +/obj/item/trash/candy, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"gY" = ( +/obj/structure/rack, +/obj/machinery/light, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/stack/sheet/plastic/fifty, +/turf/open/floor/pod, +/area/city/shop) +"hb" = ( +/obj/structure/sign/poster/contraband/space_up, +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"hc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/command) +"hd" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"he" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"hf" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"hh" = ( +/obj/structure/rack, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/obj/item/rawpe, +/obj/item/rawpe, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"hi" = ( +/turf/open/floor/pod, +/area/facility_hallway/manager) +"hl" = ( +/obj/structure/curtain, +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/wood, +/area/city/shop) +"hm" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/jukebox{ + req_access = list() + }, +/turf/open/floor/plating, +/area/department_main/command) +"hn" = ( +/obj/effect/spawner/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/training) +"ho" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/safety) +"hr" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"hs" = ( +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/structure/rack, +/turf/open/floor/pod, +/area/city/shop) +"ht" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"hv" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"hw" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/light, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"hx" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC28" + }, +/obj/structure/chair/office, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"hA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"hB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"hC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"hD" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"hE" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"hF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"hG" = ( +/obj/machinery/photocopier, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"hH" = ( +/obj/machinery/libraryscanner, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"hI" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + icon_state = "LC1" + }, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"hJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 17 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/elevatorshaft, +/area/city/shop) +"hK" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"hL" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"hO" = ( +/obj/machinery/regenerator/safety, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"hP" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "LC33" + }, +/obj/structure/table/glass, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"hT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"hV" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"hX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + id = "welfaregarbage" + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"hY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/distortion/another_day, +/area/city/backstreets_room) +"hZ" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"ic" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"id" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"ie" = ( +/obj/structure/sign/poster/lobotomycorp/gobald, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"ih" = ( +/obj/structure/sign/departments/discipline, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"ii" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/white, +/area/department_main/safety) +"il" = ( +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"im" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/structure/sign/departments/command{ + pixel_x = 32 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"in" = ( +/obj/structure/rack, +/turf/open/floor/pod, +/area/city/shop) +"io" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"ip" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"iq" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/extraction) +"is" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/turf/open/floor/wood, +/area/department_main/command) +"it" = ( +/obj/structure/table/glass, +/obj/machinery/computer/camera_advanced{ + dir = 8; + pixel_x = 3; + resistance_flags = 115 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"iu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"iw" = ( +/obj/effect/landmark/department_center, +/obj/machinery/navbeacon/wayfinding/controldepartment, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"ix" = ( +/turf/open/floor/distortion/another_day, +/area/city/backstreets_room) +"iy" = ( +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"iz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"iA" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"iB" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"iC" = ( +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "ER2"; + name = "briah floor"; + width = 6; + dir = 2 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/department_main/command) +"iE" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/safety) +"iG" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/grass, +/area/department_main/command) +"iH" = ( +/obj/machinery/door/airlock/public/glass{ + normalspeed = 0 + }, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/pod/light, +/area/facility_hallway/manager) +"iI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"iJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"iK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/plush/gebura, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"iM" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/refiner_filter/blue, +/obj/item/refiner_filter/blue, +/obj/item/refiner_filter/blue, +/obj/item/refiner_filter/blue, +/obj/item/refiner_filter/blue, +/turf/open/floor/pod, +/area/city/shop) +"iN" = ( +/obj/effect/mob_spawn/human/corpse, +/obj/item/clothing/neck/tie/blue, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"iO" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/decal/cleanable/glass, +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/plating, +/area/department_main/safety) +"iP" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC9" + }, +/obj/structure/chair/office{ + anchored = 1; + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"iQ" = ( +/obj/structure/rack, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/turf/open/floor/wood, +/area/city/house) +"iR" = ( +/turf/open/floor/plating, +/area/facility_hallway/command) +"iS" = ( +/obj/structure/pe_sales/l_corp, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"iU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"iV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 4; + id = "controlgarbage" + }, +/obj/machinery/recycler, +/turf/open/floor/plating, +/area/facility_hallway/control) +"iX" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/white, +/area/city/shop) +"iY" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/closed/indestructible/rock, +/area/city) +"ja" = ( +/obj/effect/landmark/salesspawn, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"jb" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"je" = ( +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"jg" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/wood, +/area/city/house) +"ji" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/research{ + name = "information department console" + }, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"jk" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/item/paper/guides/jobs/zayin{ + pixel_x = -5 + }, +/obj/item/paper/guides/jobs/teth{ + pixel_y = 5 + }, +/obj/item/paper/guides/jobs/he{ + pixel_x = 5 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"jl" = ( +/turf/open/floor/plasteel/white, +/area/city) +"jn" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"jo" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"jp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"jq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"jt" = ( +/obj/item/reagent_containers/syringe/contraband/fentanyl, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"jv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 7 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"jw" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"jx" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"jz" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "LC29" + }, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"jC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/command) +"jD" = ( +/obj/structure/table/glass, +/obj/machinery/computer/camera_advanced{ + dir = 1; + resistance_flags = 115 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"jE" = ( +/obj/machinery/light/broken, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"jG" = ( +/obj/machinery/vending/boozeomat/all_access{ + default_price = 1; + extra_price = 1; + fair_market_price = 1 + }, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"jH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"jI" = ( +/obj/machinery/vending/custom/unbreakable, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"jJ" = ( +/obj/machinery/light/small, +/obj/machinery/regenerator, +/turf/open/floor/wood, +/area/city/house) +"jK" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"jL" = ( +/obj/structure/rack, +/obj/machinery/light, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/pod, +/area/city/shop) +"jN" = ( +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/structure/sign/poster/official/twelve_gauge{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"jP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 4; + id = "welfaregarbage" + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"jQ" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/city/shop) +"jR" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Welfare Department" + }, +/turf/open/floor/plating, +/area/department_main/welfare) +"jS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"jT" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"jU" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "bottomdoor"; + layer = 3 + }, +/turf/open/floor/wood, +/area/city/house) +"jV" = ( +/turf/closed/indestructible/opsglass, +/area/city/backstreets_room) +"jX" = ( +/obj/structure/table/wood, +/obj/item/clothing/accessory/armband/lobotomy/training, +/obj/item/encryptionkey/headset_training, +/obj/item/encryptionkey/headset_training, +/obj/item/encryptionkey/headset_training, +/obj/item/clothing/accessory/armband/lobotomy/training, +/obj/item/clothing/accessory/armband/lobotomy/training, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"jY" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"ka" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"kb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"kc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/opsglass, +/area/city/shop) +"kd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/departments/evac{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"ke" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"ki" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"kj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/crematorium{ + id = "trainingfurnace" + }, +/obj/machinery/button/crematorium{ + id = "trainingfurnace"; + pixel_x = 31 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"kk" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/pod, +/area/city/shop) +"kl" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/reagent_containers/food/drinks/flask, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"kn" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"ko" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"kp" = ( +/obj/structure/sign/poster/lobotomycorp/cleancorpses, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"kq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"kr" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ks" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC4" + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"kt" = ( +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"ku" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"kw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"kx" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ky" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"kC" = ( +/obj/structure/disposalpipe/junction/yjunction, +/turf/closed/indestructible/rock, +/area/space) +"kE" = ( +/turf/open/floor/plating, +/area/facility_hallway/control) +"kF" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC21" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"kG" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodbottom" + }, +/turf/open/floor/wood, +/area/city/house) +"kJ" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/department_main/information) +"kK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"kL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"kM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/command) +"kN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/bundlenatural{ + pixel_y = 17 + }, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/paper_bin/carbon{ + pixel_x = 7 + }, +/obj/item/pen{ + pixel_x = 7 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"kO" = ( +/turf/open/floor/plating, +/area/department_main/command) +"kP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -7 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"kR" = ( +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/training) +"kT" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"kU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/pcorp, +/obj/item/trash/candy, +/obj/effect/mob_spawn/human/agent, +/obj/item/ego_weapon/support/dragon_staff, +/obj/item/clothing/suit/armor/ego_gear/zayin/dragon_staff, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"kV" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/welfare) +"kX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"kZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/city/house) +"la" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/training) +"lb" = ( +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"ld" = ( +/turf/open/floor/plating, +/area/department_main/welfare) +"le" = ( +/obj/machinery/computer/abnormality_logs{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"li" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"lk" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"ll" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"lm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"ln" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"lp" = ( +/obj/structure/sign/departments/l_corp, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"lq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_x = -32 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"lr" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"ls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "welfaregarbage" + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"lt" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/command) +"lu" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"lv" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/plating/rust, +/area/department_main/training) +"lw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"lx" = ( +/obj/effect/mob_spawn/human/corpse, +/obj/item/clothing/neck/tie/red, +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"lz" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/wood, +/area/city/house) +"lA" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"lD" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"lH" = ( +/obj/structure/toilet{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"lI" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/department_main/command) +"lJ" = ( +/obj/machinery/computer/abnormality_logs{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"lL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/city/shop) +"lM" = ( +/obj/structure/rack, +/obj/item/refiner_filter/yellow, +/obj/item/refiner_filter/yellow, +/obj/item/refiner_filter/yellow, +/obj/item/refiner_filter/yellow, +/obj/item/refiner_filter/yellow, +/turf/open/floor/pod, +/area/city/shop) +"lN" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"lO" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/conveyor{ + dir = 10; + id = "smelting" + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"lP" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/training) +"lQ" = ( +/obj/structure/sign/poster/lobotomycorp/random, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"lR" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"lT" = ( +/obj/effect/landmark/delayed/xeno_spawn, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"lU" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/sink/kitchen, +/turf/open/floor/plasteel/white, +/area/city/shop) +"lW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/fence/door, +/turf/open/floor/plating/grass, +/area/city) +"lX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/toy/plush/angela, +/turf/open/floor/wood, +/area/department_main/manager) +"lZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"mb" = ( +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"mc" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"md" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/command) +"mf" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"mg" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/department_main/manager) +"mh" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating, +/area/facility_hallway/training) +"mk" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "controlgarbage" + }, +/obj/item/toy/plush/fumo, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/control) +"ml" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"mm" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/city/shop) +"mn" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"mq" = ( +/obj/structure/table/glass, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"ms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"mt" = ( +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"mu" = ( +/obj/structure/rack, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/turf/open/floor/pod, +/area/city/shop) +"mv" = ( +/obj/structure/bodycontainer/crematorium{ + id = "trainingfurnace" + }, +/obj/machinery/button/crematorium{ + id = "trainingfurnace"; + pixel_x = 31 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"my" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -14 + }, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"mA" = ( +/turf/open/floor/plating, +/area/facility_hallway/safety) +"mB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Site Burial" + }, +/turf/open/floor/plasteel, +/area/facility_hallway/control) +"mC" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -7 + }, +/obj/item/folder/red{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_x = 7 + }, +/obj/item/folder/blue{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"mF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/wood, +/area/department_main/manager) +"mG" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"mH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/seed_extractor, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"mJ" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"mK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/department_main/training) +"mL" = ( +/obj/machinery/door/window, +/turf/open/floor/plasteel/white, +/area/city/shop) +"mM" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"mN" = ( +/obj/structure/sign/poster/lobotomycorp/rabbit_team, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"mO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/training) +"mQ" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"mR" = ( +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"mU" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/turf/open/floor/pod, +/area/city/shop) +"mW" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"mX" = ( +/obj/broken_regenerator, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"mY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"mZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"nc" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ng" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"nh" = ( +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"ni" = ( +/obj/machinery/conveyor{ + id = "smelting" + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/pod, +/area/city/shop) +"no" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/trashcart, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"nq" = ( +/obj/machinery/camera/autoname, +/turf/open/floor/plating/grass, +/area/department_main/safety) +"nr" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"ns" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/fluff/broken_flooring{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"nt" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"nw" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"nB" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"nC" = ( +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"nE" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"nF" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"nG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"nH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/department_main/training) +"nI" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"nJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"nK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"nP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"nQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"nS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/wood, +/area/department_main/command) +"nT" = ( +/obj/machinery/door/airlock/vault{ + locked = 1 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"nU" = ( +/obj/machinery/button/door/indestructible{ + id = "traininglockdown"; + name = "Assiyah Lockdown button"; + pixel_y = -25 + }, +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/plating/rust, +/area/department_main/training) +"nV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"nW" = ( +/obj/effect/turf_decal/siding/red/corner, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"nX" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/dark, +/area/department_main/discipline) +"nY" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"nZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"oa" = ( +/obj/structure/pe_sales/limbus, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"ob" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"oc" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"od" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"oe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"oi" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Central Command Department" + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"oj" = ( +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-21" + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"ok" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"om" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating, +/area/facility_hallway/command) +"on" = ( +/obj/effect/landmark/refinerspawn, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"oo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"op" = ( +/obj/machinery/recharger{ + pixel_x = 6 + }, +/obj/machinery/recharger{ + pixel_x = -6 + }, +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"oq" = ( +/obj/item/reagent_containers/syringe, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"os" = ( +/obj/machinery/door/airlock/wood{ + name = "arcade" + }, +/turf/open/floor/wood, +/area/city/shop) +"ot" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"ou" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"ov" = ( +/obj/structure/sign/departments/command{ + pixel_y = 32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"ox" = ( +/obj/machinery/button/crematorium{ + id = "trainingfurnace"; + pixel_x = 31 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"oy" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"oz" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/item/toy/plush/binah, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"oA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC19" + }, +/turf/open/floor/wood, +/area/department_main/command) +"oB" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/white, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"oD" = ( +/obj/structure/table/wood, +/obj/item/food/grown/star_cactus, +/obj/structure/sign/poster/official/high_class_martini{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"oF" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"oG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/department_main/training) +"oJ" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plating, +/area/facility_hallway/training) +"oK" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/facility_hallway/control) +"oN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"oP" = ( +/obj/structure/fluff/bus/dense, +/turf/open/floor/wood, +/area/city/house) +"oQ" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"oR" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/pizzabox/meat, +/turf/open/floor/plasteel/white, +/area/city/shop) +"oS" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/city) +"oT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"oU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"oV" = ( +/obj/structure/showcase/machinery{ + desc = "A server for the information department. Stores information."; + icon_state = "blackbox"; + name = "Information Server" + }, +/obj/structure/sign/departments/info{ + pixel_x = 32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"oW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/machinery/computer/security, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"oX" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/suit/apron/surgical, +/obj/item/toy/plush/samjo, +/turf/open/floor/facility/white, +/area/city) +"oY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/control) +"pa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"pc" = ( +/obj/machinery/vending/cola/shamblers, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/department_main/safety) +"pe" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"pf" = ( +/obj/structure/table/glass, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"pg" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = list() + }, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/obj/item/food/meat/crab, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"ph" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"pi" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"pj" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"pk" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "LC30" + }, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"pl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"pm" = ( +/obj/structure/sign/poster/lobotomycorp/bearbeer, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"pn" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"pq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table_frame/wood, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"pr" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_y = -32 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"pt" = ( +/obj/structure/chair/office{ + anchored = 1; + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"pu" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"pv" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/item/clothing/accessory/armband/lobotomy, +/obj/item/clothing/accessory/armband/lobotomy, +/obj/item/clothing/accessory/armband/lobotomy, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"pE" = ( +/obj/effect/landmark/abnospawn/assiyah, +/turf/open/floor/plating/rust, +/area/department_main/training) +"pF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC14" + }, +/turf/open/floor/plating, +/area/department_main/command) +"pG" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "smelting" + }, +/turf/open/floor/plasteel, +/area/city/shop) +"pH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"pI" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"pJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"pK" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"pM" = ( +/obj/structure/rack, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/pod, +/area/city/shop) +"pN" = ( +/obj/effect/spawner/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/safety) +"pP" = ( +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"pT" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"pU" = ( +/obj/structure/sign/ordealmonitor{ + pixel_x = 32 + }, +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"pW" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/floor/plating, +/area/department_main/safety) +"pY" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"pZ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/command) +"qa" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"qb" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC21" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"qc" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"qd" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"qe" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/turf/open/floor/plasteel, +/area/department_main/control) +"qg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/abnospawn/atziluth, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"qk" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Extraction Office" + }, +/turf/open/floor/plating, +/area/department_main/extraction) +"ql" = ( +/obj/structure/sign/departments/command, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"qm" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/carpet/donk, +/area/city/shop) +"qn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/wood{ + name = "bar" + }, +/turf/open/floor/wood, +/area/city/shop) +"qo" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/obj/item/screwdriver, +/obj/item/crowbar/large, +/obj/item/crowbar/large, +/obj/item/weldingtool/experimental, +/obj/item/weldingtool/experimental, +/obj/item/wirecutters, +/obj/item/wirecutters, +/obj/item/wrench, +/obj/item/wrench, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"qr" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"qt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"qv" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Records Office Secure Area" + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"qw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"qz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/welfare) +"qA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"qB" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"qC" = ( +/mob/living/simple_animal/hostile/distortion/another_day_work, +/turf/open/floor/distortion/another_day, +/area/city/backstreets_room) +"qE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/rock, +/area/city) +"qF" = ( +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"qG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"qJ" = ( +/obj/structure/sign/departments/welfare, +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"qK" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"qM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating, +/area/facility_hallway/command) +"qO" = ( +/turf/open/floor/carpet/orange, +/area/department_main/training) +"qP" = ( +/turf/open/space/basic, +/area/space) +"qR" = ( +/obj/machinery/vending/cola/shamblers, +/obj/structure/sign/ordealmonitor{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"qT" = ( +/turf/open/floor/plasteel, +/area/city/shop) +"qV" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife/butcher, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"qX" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "smelting"; + name = "smelting conveyor" + }, +/turf/open/floor/plasteel, +/area/city/shop) +"qY" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/structure/barricade/wooden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/department_main/control) +"ra" = ( +/obj/effect/mob_spawn/human/corpse, +/obj/item/clothing/neck/tie/horrible, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"rc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/city) +"rd" = ( +/obj/structure/rack, +/obj/item/airlock_painter/decal, +/obj/item/airlock_painter/decal, +/obj/item/airlock_painter/decal, +/obj/item/airlock_painter/decal, +/obj/item/airlock_painter/decal, +/turf/open/floor/pod, +/area/city/shop) +"re" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/command) +"rf" = ( +/turf/open/floor/plasteel, +/area/city) +"rg" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"rj" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"rk" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/medical, +/obj/item/storage/firstaid/medical, +/turf/open/floor/pod, +/area/city/shop) +"ro" = ( +/obj/machinery/door/airlock/wood{ + name = "arrivals" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/city/house) +"rq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"rr" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/city) +"rs" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/command) +"rt" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/department_main/training) +"ru" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"rv" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"rx" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "s" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"ry" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"rz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"rA" = ( +/obj/machinery/door/airlock/wood{ + name = "dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/house) +"rB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/pcorp, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"rD" = ( +/obj/structure/sink/kitchen{ + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/city) +"rE" = ( +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel, +/area/department_main/discipline) +"rI" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "u" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"rJ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"rL" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/chair/comfy/teal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"rM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"rN" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass, +/area/city) +"rP" = ( +/obj/effect/landmark/latejoin, +/turf/open/floor/wood, +/area/city/house) +"rQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"rR" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/vending/lobotomyheadset, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"rS" = ( +/obj/machinery/camera/autoname, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"rU" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"rV" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"rX" = ( +/obj/structure/sign/poster/lobotomycorp/bearbeer, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"rY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/chefhat, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/city/shop) +"rZ" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"sa" = ( +/obj/machinery/computer/secure_data{ + dir = 4; + req_one_access = "0" + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"sb" = ( +/obj/effect/landmark/xeno_spawn, +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"sc" = ( +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"sd" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/city) +"se" = ( +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"sf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/control) +"si" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"sj" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"sk" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/department_main/welfare) +"sl" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/crematorium{ + id = "cremawheat"; + pixel_y = 32 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/dark, +/area/city) +"sm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "LC30" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"sn" = ( +/obj/machinery/regenerator, +/turf/open/floor/pod, +/area/city/shop) +"sp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"sq" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/information) +"ss" = ( +/turf/open/floor/plasteel, +/area/city/backstreets_alley) +"su" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"sv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"sw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/control) +"sx" = ( +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/shop) +"sy" = ( +/obj/structure/table/wood/bar, +/obj/item/candle, +/turf/open/floor/wood, +/area/city/shop) +"sz" = ( +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"sA" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"sB" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"sC" = ( +/obj/structure/sign/poster/official/cleanliness, +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/city) +"sD" = ( +/obj/structure/sign/departments/command, +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"sE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"sF" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife/hunting, +/obj/item/kitchen/knife/hunting, +/obj/item/kitchen/knife/hunting, +/obj/item/toy/plush/pierre, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"sG" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/training) +"sH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"sJ" = ( +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"sL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/rock, +/area/space) +"sM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/toy/plush/bongy, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"sN" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/window, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"sO" = ( +/turf/closed/indestructible/reinforced, +/area/city/house) +"sP" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"sR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-04" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"sT" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/facility/dark, +/area/department_main/discipline) +"sU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/broken_flooring{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"sV" = ( +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"sW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"sX" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Control Department" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"sZ" = ( +/obj/structure/sign/warning/nosmoking/circle, +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"tc" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"th" = ( +/obj/machinery/accounting, +/obj/structure/table/reinforced, +/obj/item/soapstone, +/obj/item/key/displaycase, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"ti" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"tj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"tn" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"tp" = ( +/obj/broken_regenerator, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"tr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"ts" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"tu" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/city/shop) +"tv" = ( +/obj/machinery/abno_core_seller, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"tw" = ( +/obj/structure/showcase/machinery{ + desc = "A server for the information department. Stores information."; + icon_state = "blackbox"; + name = "Information Server" + }, +/obj/structure/sign/departments/info{ + pixel_x = -32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"tx" = ( +/obj/machinery/door/airlock/wood{ + name = "mining recieving" + }, +/turf/open/floor/plasteel, +/area/city) +"ty" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"tA" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/department_main/information) +"tB" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"tC" = ( +/turf/open/floor/plasteel/stairs, +/area/city/backstreets_alley) +"tE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"tG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/training) +"tJ" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/fluff/broken_flooring{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"tN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "controlgarbage"; + name = "disposal conveyor" + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"tO" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Records Office" + }, +/obj/structure/fans/tiny, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel/elevatorshaft, +/area/department_main/training) +"tP" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/pod, +/area/city/shop) +"tQ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/pod, +/area/city/shop) +"tS" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"tT" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"tV" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/fluff/hedge, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/command) +"tW" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"tX" = ( +/obj/effect/mine/stun, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"tY" = ( +/obj/item/clothing/accessory/armband/lobotomy/info, +/obj/item/clothing/accessory/armband/lobotomy/info, +/obj/item/clothing/accessory/armband/lobotomy/info, +/obj/structure/table_frame, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"tZ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/fluff/broken_flooring{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"ua" = ( +/obj/structure/fluff/broken_flooring{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"ud" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"ue" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC23" + }, +/turf/open/floor/plating, +/area/department_main/command) +"uf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"ug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"uj" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"uk" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"ul" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/city/house) +"un" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"uo" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"up" = ( +/obj/item/folder/blue{ + pixel_x = -6 + }, +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"uq" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "LC31" + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"us" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"ut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"uu" = ( +/obj/structure/sign/poster/lobotomycorp/cleancorpses, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"uw" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"uy" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 13 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"uz" = ( +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"uA" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC20" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"uC" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/clothing/accessory/armband/lobotomy/command, +/obj/item/clothing/accessory/armband/lobotomy/command, +/obj/item/clothing/accessory/armband/lobotomy/command, +/obj/item/encryptionkey/headset_command, +/obj/item/encryptionkey/headset_command, +/obj/item/encryptionkey/headset_command, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"uE" = ( +/turf/open/floor/plating, +/area/city) +"uF" = ( +/turf/open/floor/plating/grass, +/area/city) +"uH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"uI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 7 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/head/beret/tegu/captain, +/obj/item/clothing/mask/gas/atmos/captain, +/obj/item/clothing/suit/space/hardsuit/swat/captain, +/obj/item/clothing/under/rank/captain, +/obj/item/gun/energy/laser/captain, +/obj/item/storage/backpack/captain, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/obj/item/clothing/under/rank/captain/parade, +/turf/open/floor/wood, +/area/department_main/manager) +"uJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"uK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"uL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/department_main/training) +"uM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"uN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"uO" = ( +/obj/machinery/computer/ego_purchase, +/obj/effect/decal/cleanable/cobweb, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"uP" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/information) +"uQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/abnormality_archive{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"uU" = ( +/obj/structure/sign/poster/lobotomycorp/attributes, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"uW" = ( +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"uX" = ( +/obj/item/reagent_containers/syringe, +/obj/effect/landmark/cratespawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"uY" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/autoname, +/obj/item/folder/yellow{ + pixel_x = -11 + }, +/obj/item/folder/yellow{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/folder{ + pixel_x = 3 + }, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"uZ" = ( +/obj/machinery/light, +/turf/open/floor/carpet/donk, +/area/city/shop) +"va" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"vb" = ( +/obj/structure/sign/departments/safety, +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"vc" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"ve" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"vf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"vg" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/command) +"vh" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"vk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"vl" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/plasteel/white, +/area/city/shop) +"vm" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"vq" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/vending/lobotomyuniform, +/obj/machinery/camera/autoname, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"vr" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/department_main/training) +"vs" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"vt" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"vu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"vw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/training) +"vx" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/closed/indestructible/reinforced, +/area/city/house) +"vA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"vD" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"vG" = ( +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"vH" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/training) +"vI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/item/storage/box/papersack, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"vJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/city/shop) +"vM" = ( +/obj/structure/rack, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"vN" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"vO" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + icon_state = "LC2" + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"vP" = ( +/obj/machinery/button/door/indestructible{ + id = "managerlockdown"; + name = "Adminstrative Offices Lockdown button"; + pixel_y = -25; + req_access = list(19) + }, +/obj/item/kirbyplants{ + icon_state = "plant-04" + }, +/obj/machinery/light, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"vR" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "mining" + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"vS" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/mental, +/obj/item/reagent_containers/hypospray/medipen/mental, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"vT" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/discipline) +"vW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"vX" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"vY" = ( +/obj/structure/sign/poster/lobotomycorp/egoinfo{ + pixel_x = 32 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/ego_gear/he/security_ego, +/obj/item/ego_weapon/security_ego, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"vZ" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"wb" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"wg" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/griddle, +/turf/open/floor/plasteel/white, +/area/city/shop) +"wh" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/fluff/hedge, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"wi" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/facility/white, +/area/city) +"wj" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/white, +/area/city/shop) +"wk" = ( +/obj/structure/table/wood/bar, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"wl" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"wm" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/structure/table/wood/fancy/blue, +/obj/item/statuebust{ + pixel_y = 12 + }, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"wp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"wq" = ( +/obj/structure/sign/departments/command{ + pixel_x = -32 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"ws" = ( +/obj/structure/sign/poster/contraband/revolver, +/turf/closed/indestructible/reinforced/old, +/area/department_main/information) +"wt" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC8" + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"wv" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/refiner_filter/red, +/obj/item/refiner_filter/red, +/obj/item/refiner_filter/red, +/obj/item/refiner_filter/red, +/obj/item/refiner_filter/red, +/turf/open/floor/pod, +/area/city/shop) +"ww" = ( +/obj/structure/table/glass, +/obj/item/camera, +/obj/item/storage/photo_album/library, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"wy" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"wz" = ( +/obj/structure/extraction_belt, +/turf/open/floor/plating/rust, +/area/department_main/extraction) +"wA" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC23" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC23" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC23" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC18" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"wD" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/information) +"wE" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"wF" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Extraction Office" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/rust, +/area/department_main/extraction) +"wG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/information) +"wH" = ( +/obj/item/toy/plush/malkuth, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"wI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"wJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"wK" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"wL" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/department_main/training) +"wO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"wP" = ( +/obj/machinery/door/poddoor{ + name = "site burial lockdown"; + id = "safetylockdown" + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/information) +"wR" = ( +/obj/structure/rack, +/obj/item/flashlight/lantern, +/turf/open/floor/pod, +/area/city/shop) +"wT" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"wU" = ( +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/cityloot, +/obj/structure/table_frame, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"wV" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"wW" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"wY" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"wZ" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/vending/lobotomyarmband, +/obj/structure/sign/button_counter/directional/north, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"xa" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/effect/mob_spawn/human/corpse, +/turf/open/floor/plating, +/area/department_main/training) +"xc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"xe" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"xk" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/command) +"xl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/pod, +/area/city/shop) +"xm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"xn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"xo" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/safety) +"xp" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/training) +"xq" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"xs" = ( +/obj/structure/flora/rock, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"xu" = ( +/obj/broken_regenerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"xv" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/pod, +/area/city/shop) +"xw" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC6" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"xx" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"xz" = ( +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"xC" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"xE" = ( +/obj/machinery/conveyor{ + id = "smelting" + }, +/turf/open/floor/pod, +/area/city/shop) +"xF" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"xG" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"xI" = ( +/obj/structure/sign/departments/welfare, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"xM" = ( +/obj/machinery/door/airlock/freezer, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"xN" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"xO" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"xP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"xQ" = ( +/obj/structure/sign/poster/contraband/hacking_guide, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"xR" = ( +/obj/machinery/camera/autoname, +/obj/item/shard, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"xS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/department_main/training) +"xT" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"xV" = ( +/obj/machinery/vending/lobotomy_mining, +/turf/open/floor/pod, +/area/city/shop) +"xW" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"xY" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/sign/ordealmonitor{ + pixel_x = -32 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"xZ" = ( +/obj/item/toy/plush/enoch, +/turf/closed/mineral/random/facility/briah, +/area/department_main/command) +"ya" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters{ + id = 55 + }, +/turf/open/floor/pod, +/area/city/house) +"yb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"yc" = ( +/obj/machinery/light, +/obj/item/kirbyplants{ + anchored = 1 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"ye" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/city/shop) +"yg" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/broken_regenerator, +/turf/open/floor/plating, +/area/department_main/command) +"yh" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/elevatorshaft, +/area/department_main/training) +"yi" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"yl" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/pod, +/area/city/shop) +"ym" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"yo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/randomsnackvend, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"yp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"yr" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/ego_gear/zayin/dragon_staff, +/obj/item/ego_weapon/support/dragon_staff, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"ys" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"yt" = ( +/turf/closed/indestructible/fakeglass, +/area/department_main/records) +"yu" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"yv" = ( +/obj/structure/sign/departments/l_corp, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/information) +"yy" = ( +/obj/machinery/computer/libraryconsole{ + pixel_y = 10 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plating, +/area/department_main/information) +"yA" = ( +/obj/structure/table/wood/bar, +/obj/item/food/burger/superbite, +/turf/open/floor/wood, +/area/city/shop) +"yB" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/landmark/toolspawn, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"yC" = ( +/obj/structure/fluff/bus/passable/seat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/black, +/area/city/house) +"yF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"yG" = ( +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"yJ" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/department_main/extraction) +"yL" = ( +/obj/effect/spawner/xmastree, +/turf/open/floor/plating, +/area/department_main/training) +"yN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"yO" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/control) +"yP" = ( +/obj/structure/filingcabinet/zayininfo{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/tethinfo, +/obj/structure/filingcabinet/heinfo{ + pixel_x = 10 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"yQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"yR" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/multiver{ + pixel_y = 10 + }, +/obj/item/reagent_containers/syringe/penacid, +/turf/open/floor/plasteel/white, +/area/city) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"yT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"yV" = ( +/obj/structure/fluff/bus/passable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/black, +/area/city/house) +"yW" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"yX" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"yZ" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/camera/autoname, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"zc" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"zd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"ze" = ( +/obj/item/storage/backpack/duffelbag, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"zg" = ( +/turf/closed/indestructible/reinforced, +/area/city/backstreets_room) +"zh" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/table/optable, +/turf/open/floor/facility/white, +/area/city) +"zi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"zj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"zm" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"zn" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/safety) +"zo" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/command) +"zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/facility_holomap, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"zr" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"zs" = ( +/obj/effect/light_emitter{ + light_power = 4; + light_range = 25; + set_cap = 3; + set_luminosity = 24 + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"zt" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"zu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/indestructible/rock, +/area/facility_hallway/welfare) +"zv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/grass, +/area/department_main/safety) +"zw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "welfaregarbage"; + name = "disposal conveyor" + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"zx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"zy" = ( +/turf/open/floor/plating/rust, +/area/department_main/safety) +"zz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/knife, +/obj/item/kitchen/knife, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/city/shop) +"zA" = ( +/turf/open/floor/pod/light, +/area/facility_hallway/manager) +"zB" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"zC" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"zD" = ( +/turf/open/floor/plasteel/dark, +/area/city/shop) +"zG" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/conveyor{ + id = "smelting" + }, +/obj/machinery/mineral/processing_unit, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"zK" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"zL" = ( +/obj/effect/landmark/department_center, +/obj/machinery/navbeacon/wayfinding/informationdepartment, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/department_main/information) +"zM" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/city/shop) +"zN" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"zO" = ( +/obj/structure/filingcabinet/wawinfo{ + pixel_x = -11 + }, +/obj/structure/filingcabinet/alephinfo{ + pixel_x = -1 + }, +/obj/structure/filingcabinet/toolinfo{ + pixel_x = 9 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"zP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken, +/obj/machinery/conveyor{ + dir = 4; + id = "controlgarbage" + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/control) +"zR" = ( +/obj/structure/chair/office, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"zS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"zT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/vending/hydroseeds, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"zV" = ( +/mob/living/simple_animal/hostile/humanoid/rat/knife, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"zW" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/training) +"zX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"zY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/computer/shuttle/mining{ + name = "elevator Console"; + possible_destinations = "ER1;ER2"; + resistance_flags = 115; + shuttleId = "enkephalin_rush"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/department_main/command) +"zZ" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/chair/comfy/teal, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/item/toy/plush/enoch, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Aa" = ( +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Ac" = ( +/obj/machinery/monolith, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Ae" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced, +/area/facility_hallway/discipline) +"Af" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Safety Department" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/department_main/safety) +"Ag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Ah" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"Ai" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"Aj" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Ak" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/conveyor{ + id = "smelting" + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"Am" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC22" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"An" = ( +/obj/machinery/abno_core_extractor, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"Ao" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/department_main/training) +"Ar" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"At" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"Au" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Aw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"Ax" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Ay" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"AA" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/training) +"AB" = ( +/obj/structure/table/wood/bar, +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"AC" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/closed/mineral/random/facility/briah, +/area/department_main/command) +"AD" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"AF" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/mixed, +/obj/item/mop/advanced, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/control) +"AG" = ( +/obj/machinery/computer/extraction_cargo, +/turf/open/floor/pod, +/area/city/shop) +"AH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "welfaregarbage" + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"AI" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"AJ" = ( +/obj/effect/turf_decal/siding/green{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"AN" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"AS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"AT" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"AU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblack, +/area/department_main/extraction) +"AV" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"AW" = ( +/obj/structure/table/wood/bar, +/obj/item/food/plumphelmetbiscuit, +/turf/open/floor/wood, +/area/city/shop) +"AX" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/department_main/control) +"AY" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"AZ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/facility/white, +/area/city) +"Bb" = ( +/obj/effect/landmark/abnospawn/assiyah, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"Bc" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"Be" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/crate, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"Bg" = ( +/obj/machinery/door/airlock/wood{ + name = "forward base" + }, +/turf/open/floor/pod, +/area/city/shop) +"Bh" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC5" + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Bi" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/curtain, +/turf/open/floor/wood, +/area/city/shop) +"Bj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"Bl" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"Bm" = ( +/obj/effect/landmark/cratespawn, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"Bo" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/reinforced, +/area/city) +"Bq" = ( +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Br" = ( +/obj/structure/rack, +/obj/item/instrument/accordion, +/obj/item/instrument/banjo, +/obj/item/instrument/eguitar, +/obj/item/instrument/glockenspiel, +/obj/item/instrument/guitar, +/obj/item/instrument/harmonica, +/obj/item/instrument/piano_synth, +/obj/item/instrument/recorder, +/obj/item/instrument/saxophone, +/obj/item/instrument/trombone, +/obj/item/instrument/trumpet, +/obj/item/instrument/violin, +/turf/open/floor/wood, +/area/city/shop) +"Bs" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Bt" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/plasteel/dark, +/area/city) +"Bw" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Bx" = ( +/obj/item/trash/can/food/pcorp, +/obj/item/trash/tray, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"By" = ( +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"Bz" = ( +/obj/item/trash/can, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"BB" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/city/shop) +"BC" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"BD" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/obj/item/encryptionkey/headset_safety, +/turf/open/floor/plating, +/area/department_main/safety) +"BE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC17" + }, +/turf/open/floor/plating, +/area/department_main/command) +"BG" = ( +/obj/structure/sign/departments/training, +/turf/closed/indestructible/reinforced/old, +/area/department_main/training) +"BH" = ( +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"BI" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC12" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC16" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"BK" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"BM" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"BN" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"BR" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC19" + }, +/obj/structure/chair/office{ + anchored = 1; + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"BS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"BT" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/window/spawner/north, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"BX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/department_main/welfare) +"BY" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/closed/indestructible/rock, +/area/space) +"BZ" = ( +/obj/structure/rack, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/machinery/light, +/turf/open/floor/pod, +/area/city/shop) +"Cb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/department_main/training) +"Cc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/mineral/processing_unit_console, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"Ce" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Site Burial" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Cg" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"Ch" = ( +/obj/structure/closet/cabinet, +/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/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/item/clothing/shoes/laceup, +/turf/open/floor/wood, +/area/city/house) +"Ci" = ( +/obj/machinery/door/airlock/vault{ + name = "Wishing Well containment zone" + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"Ck" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"Cl" = ( +/obj/effect/turf_decal/box/white, +/obj/structure/toolabnormality/touch, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"Cn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Cp" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + icon_state = "LC3" + }, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Cq" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"Cs" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/city/shop) +"Cu" = ( +/obj/effect/spawner/randomsnackvend, +/turf/open/floor/plating, +/area/department_main/command) +"Cx" = ( +/obj/structure/sign/poster/ripped, +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"Cy" = ( +/obj/structure/fluff/bus/passable, +/turf/open/floor/carpet/black, +/area/city/house) +"Cz" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/welfare) +"CA" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/paper/guides/jobs/waw{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/paper/guides/jobs/aleph{ + pixel_x = 5 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"CB" = ( +/obj/structure/sign/poster/lobotomycorp/hhpp, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"CC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Central Command Department" + }, +/turf/open/floor/plasteel, +/area/department_main/command) +"CD" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/chair/comfy/teal, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"CF" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/indestructible/reinforced, +/area/city) +"CG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"CI" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"CK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"CL" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"CN" = ( +/obj/structure/railing, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/grass, +/area/department_main/command) +"CO" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"CP" = ( +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"CS" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"CT" = ( +/obj/effect/portal{ + name = "entrance to the Wineberry Creek"; + desc = "A path leading to the backstreets of D corp. The foliage is not native to this region." + }, +/turf/open/floor/plating/grass, +/area/city) +"CU" = ( +/obj/machinery/computer/abnormality_logs, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"CV" = ( +/obj/effect/landmark/cityloot, +/turf/open/floor/facility/dark, +/area/department_main/training) +"CW" = ( +/obj/item/kitchen/knife/bloodletter, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"CY" = ( +/obj/structure/fence/door/opened, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"CZ" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/reinforced/old, +/area/department_main/training) +"Da" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"Dc" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"Df" = ( +/mob/living/simple_animal/hostile/abnormality/training_rabbit, +/turf/open/floor/facility/dark, +/area/department_main/training) +"Dg" = ( +/obj/structure/sign/ordealmonitor{ + pixel_x = -32 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/broken_regenerator, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Dh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/abnospawn/atziluth, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Dj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"Dk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Dl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"Dm" = ( +/obj/machinery/door/poddoor{ + name = "cogito production cell"; + id = "goldenbough" + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"Dn" = ( +/obj/structure/closet, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_arm/robot, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"Do" = ( +/obj/machinery/door/window/eastright, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"Dp" = ( +/obj/structure/bodycontainer/extraction{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/city) +"Dq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Dr" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC23" + }, +/obj/structure/chair/office{ + anchored = 1; + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Dt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"Dv" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"Dx" = ( +/turf/open/floor/pod, +/area/city/shop) +"Dy" = ( +/obj/structure/curtain, +/obj/structure/urinal, +/turf/open/floor/wood, +/area/city/shop) +"DA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"DB" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/pdapainter, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"DC" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"DD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/plush/mosb, +/turf/open/floor/plasteel/dark, +/area/city) +"DF" = ( +/obj/effect/turf_decal/siding/red, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"DG" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/rock, +/area/facility_hallway/command) +"DH" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"DL" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"DM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"DN" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"DO" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/white, +/area/city/shop) +"DP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"DQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/discipline) +"DR" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open{ + anchored = 1 + }, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"DU" = ( +/obj/machinery/light/broken, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"DV" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"DX" = ( +/obj/item/encryptionkey/headset_information, +/obj/item/encryptionkey/headset_information, +/obj/item/encryptionkey/headset_information, +/obj/structure/table/glass, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"DY" = ( +/turf/open/floor/plating/grass, +/area/department_main/safety) +"DZ" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Disciplinary Department" + }, +/turf/open/floor/plating, +/area/department_main/discipline) +"Ec" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Ee" = ( +/obj/machinery/computer/shuttle/mining{ + name = "elevator console"; + shuttleId = "manager"; + possible_destinations = "elevator_home;elevator_away"; + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/pod, +/area/facility_hallway/manager) +"Ei" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/indestructible/reinforced, +/area/department_main/manager) +"Ej" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + name = "cogito production cell"; + id = "goldenbough2" + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"En" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"Eo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Ep" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC13" + }, +/obj/structure/chair/office{ + anchored = 1; + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Eq" = ( +/obj/structure/toolabnormality/wishwell, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"Er" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Eu" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"Ex" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"EA" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"EB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"ED" = ( +/obj/structure/sign/poster/official/bless_this_spess, +/turf/closed/indestructible/reinforced, +/area/city/backstreets_alley) +"EF" = ( +/obj/item/chair, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/mob_spawn/human/manager, +/turf/open/floor/pod, +/area/facility_hallway/manager) +"EH" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/zayininfo{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/tethinfo, +/obj/structure/filingcabinet/heinfo{ + pixel_x = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"EI" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/upgradedsurgery{ + pixel_y = 10 + }, +/obj/item/storage/backpack/duffelbag/med/upgradedsurgery, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/turf/open/floor/facility/white, +/area/city) +"EL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"EM" = ( +/obj/machinery/cryopod, +/turf/open/floor/wood, +/area/city/house) +"EP" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/shop) +"EQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"ER" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/ego_gear/zayin/dragon_staff, +/obj/item/ego_weapon/support/dragon_staff, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"ES" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"ET" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"EU" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/reinforced, +/area/city/house) +"EW" = ( +/obj/effect/turf_decal/siding/green, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"EY" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"EZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door/indestructible{ + id = "safetylockdown"; + name = "Assiyah Lockdown button"; + pixel_y = -25 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/safety) +"Fc" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Fe" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Ff" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/city) +"Fi" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"Fj" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/pod, +/area/city/shop) +"Fk" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/reinforced, +/area/facility_hallway/control) +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/broken_flooring, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"Fn" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"Fp" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining" + }, +/obj/machinery/mineral/unloading_machine, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"Fr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/closed/indestructible/rock, +/area/space) +"Ft" = ( +/obj/effect/turf_decal/siding/yellow/end{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Fu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/item/toy/plush/kog, +/turf/open/floor/wood, +/area/city/shop) +"Fv" = ( +/obj/structure/toilet{ + pixel_y = 15 + }, +/obj/structure/curtain, +/turf/open/floor/wood, +/area/city/shop) +"Fx" = ( +/turf/open/floor/plating/rust, +/area/department_main/training) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC10" + }, +/turf/open/floor/wood, +/area/department_main/command) +"FA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"FD" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/pod, +/area/city/shop) +"FF" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/city) +"FG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"FH" = ( +/obj/machinery/button/door/indestructible{ + id = "goldenbough2"; + name = "Briah Lockdown button"; + pixel_y = -25 + }, +/turf/closed/mineral/random/facility/abnormality{ + risk_level = 4 + }, +/area/department_main/welfare) +"FJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/department_main/discipline) +"FK" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"FL" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC13" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"FM" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"FN" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"FO" = ( +/obj/structure/sign/poster/contraband/shamblers_juice{ + pixel_x = 32 + }, +/turf/closed/indestructible/rock, +/area/space) +"FP" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/training) +"FV" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC15" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"FW" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/city/shop) +"FX" = ( +/obj/structure/window/reinforced/fulltile/indestructable, +/obj/structure/grille, +/turf/open/floor/plating, +/area/department_main/safety) +"FZ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/department_main/extraction) +"Ge" = ( +/obj/item/rawpe, +/obj/item/rawpe, +/obj/item/rawpe, +/obj/item/rawpe, +/obj/item/rawpe, +/obj/structure/closet/crate, +/obj/machinery/light/broken, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Gg" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"Gh" = ( +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"Gj" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/turf/open/floor/plasteel, +/area/department_main/command) +"Gp" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"Gs" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/city/shop) +"Gt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Gu" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"Gv" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Gw" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Gx" = ( +/turf/closed/indestructible/reinforced, +/area/facility_hallway/discipline) +"Gy" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/safety) +"Gz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/white, +/area/city/shop) +"GB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"GC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"GD" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"GE" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"GF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"GG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"GI" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"GJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"GK" = ( +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"GM" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/shop) +"GQ" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/training) +"GR" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/closed/indestructible/rock, +/area/space) +"GS" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/mine/hydroponics) +"GT" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/broken, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"GU" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Central Command Department" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/rust, +/area/department_main/command) +"GV" = ( +/obj/structure/sign/poster/lobotomycorp/hhpp, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"GW" = ( +/obj/structure/sign/departments/discipline, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"GY" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"GZ" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"Hb" = ( +/obj/item/reagent_containers/syringe/contraband/fentanyl, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"Hd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/item/ego_weapon/mining/furrows, +/turf/closed/mineral/random/facility/abnormality{ + risk_level = 5 + }, +/area/facility_hallway/discipline) +"Hf" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/soap, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/welfare) +"Hh" = ( +/obj/effect/landmark/start, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + icon_state = "LC2" + }, +/turf/open/floor/wood, +/area/department_main/command) +"Hk" = ( +/obj/machinery/navbeacon/wayfinding/extractiondepartment, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Hl" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"Hm" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Information Department" + }, +/turf/open/floor/plating/rust, +/area/department_main/information) +"Ho" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/department_main/command) +"Hq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Hr" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/dark, +/area/department_main/discipline) +"Hv" = ( +/turf/closed/indestructible/reinforced, +/area/facility_hallway/welfare) +"Hx" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/turf/open/floor/wood, +/area/city/house) +"Hy" = ( +/obj/machinery/door/airlock/vault{ + name = "UNDER CONSTRUCTION" + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Hz" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/structure/closet/secure_closet/record, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"HB" = ( +/obj/structure/table/wood/bar, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"HC" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/rock, +/area/space) +"HG" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"HH" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/rock, +/area/city) +"HI" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"HJ" = ( +/obj/effect/landmark/toolspawn, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"HK" = ( +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"HL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/city) +"HM" = ( +/obj/machinery/door/airlock/wood{ + name = "Manager's Office" + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/facility_hallway/manager) +"HN" = ( +/obj/machinery/door/airlock/vault{ + name = "CONDEMNED" + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city/backstreets_alley) +"HO" = ( +/obj/structure/sign/departments/command{ + pixel_x = -32 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"HP" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"HQ" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC26" + }, +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating/rust, +/area/department_main/command) +"HR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"HS" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC27" + }, +/obj/structure/chair/office, +/obj/structure/chair/office, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"HU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"HV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"HW" = ( +/obj/effect/mob_spawn/human/corpse, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"HX" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Ib" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating, +/area/department_main/command) +"Ic" = ( +/obj/structure/rack, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/turf/open/floor/pod, +/area/city/shop) +"Id" = ( +/obj/structure/fluff/broken_flooring{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"Ie" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/command) +"If" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/reagent_containers/spray/chemsprayer/janitor, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/mixed, +/obj/item/mop/advanced, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Ig" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plating, +/area/department_main/safety) +"Ii" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Ij" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"Ik" = ( +/obj/machinery/vending/snack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Il" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Ip" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC5" + }, +/turf/open/floor/plating, +/area/department_main/command) +"Iq" = ( +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/records) +"Is" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"It" = ( +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"Iu" = ( +/obj/structure/sign/departments/welfare, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"Iw" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Iz" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/pod, +/area/city/shop) +"IC" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ID" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"IF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"IH" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"II" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"IJ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"IK" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/safety_kit, +/turf/open/floor/pod, +/area/city/shop) +"IL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"IM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/plush/hod, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"IO" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"IQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/training) +"IR" = ( +/obj/structure/table/wood/bar, +/obj/item/candle, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/city/shop) +"IV" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"IX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"IY" = ( +/obj/machinery/telecomms/server/presets/medical{ + name = "Safety Server" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/department_main/safety) +"IZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"Jc" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"Jd" = ( +/turf/closed/indestructible/reinforced, +/area/department_main/manager) +"Ji" = ( +/turf/closed/mineral/iron, +/area/facility_hallway/control) +"Jj" = ( +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/plating/rust, +/area/facility_hallway/information) +"Jk" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "smelting" + }, +/turf/open/floor/plasteel, +/area/city/shop) +"Jl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Jm" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/safety) +"Jn" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "mining"; + name = "mining conveyor" + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"Jo" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"Jq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Jr" = ( +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/facility/white, +/area/department_main/safety) +"Js" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/facility_holomap, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Jt" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/light/built, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/command) +"Jv" = ( +/obj/structure/sign/departments/command{ + pixel_x = 32 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Jy" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC7" + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Jz" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/manager) +"JB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/manager) +"JC" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"JD" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"JF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/pcorp, +/turf/open/floor/plating, +/area/facility_hallway/control) +"JG" = ( +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating, +/area/facility_hallway/command) +"JH" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC25" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"JI" = ( +/turf/open/floor/plating, +/area/facility_hallway/training) +"JJ" = ( +/obj/machinery/light/broken, +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"JK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"JL" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"JP" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"JQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"JR" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/vending/custom/unbreakable, +/obj/structure/sign/ordealmonitor{ + pixel_y = -32 + }, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"JS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/department_main/command) +"JT" = ( +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plating, +/area/department_main/safety) +"JU" = ( +/obj/machinery/telecomms/message_server/preset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/department_main/records) +"JX" = ( +/obj/machinery/modular_computer/console/preset/research{ + name = "information department console" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"JY" = ( +/obj/structure/rack, +/obj/machinery/light, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/turf/open/floor/pod, +/area/city/shop) +"Kb" = ( +/turf/open/floor/plating, +/area/department_main/training) +"Kc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"Ki" = ( +/obj/machinery/button/door/landmarkspawner{ + id = "spawners"; + name = "central command lockdown" + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/information) +"Kk" = ( +/obj/machinery/light/small, +/turf/open/floor/distortion/another_day, +/area/city/backstreets_room) +"Kl" = ( +/obj/structure/table/wood/bar, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"Kn" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"Ko" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "wheredahoodat" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/city/house) +"Kp" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"Kq" = ( +/obj/broken_regenerator, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Ks" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Central Command Department" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Kt" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Kw" = ( +/obj/effect/decal/cleanable/plastic, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"Ky" = ( +/obj/machinery/facility_holomap{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Kz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/landmark/start, +/turf/open/floor/plasteel, +/area/department_main/training) +"KB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"KC" = ( +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"KD" = ( +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"KF" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/training) +"KG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"KI" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Records Office Secure Area" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/department_main/information) +"KJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"KK" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"KL" = ( +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"KO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/pod, +/area/city/shop) +"KP" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"KQ" = ( +/obj/effect/turf_decal/box/white, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"KR" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/mental, +/obj/item/reagent_containers/hypospray/medipen/mental, +/turf/open/floor/wood, +/area/city/house) +"KS" = ( +/obj/effect/turf_decal/box/white, +/obj/structure/toolabnormality/realization, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"KT" = ( +/obj/structure/chair/sofa/corp, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/city) +"KW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/turf/open/floor/pod, +/area/city/shop) +"KX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/mental, +/obj/item/reagent_containers/hypospray/medipen/mental, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/department_main/command) +"KY" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/department_main/discipline) +"KZ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/department_main/discipline) +"Lc" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Ld" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Le" = ( +/obj/structure/fluff/broken_flooring{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Lh" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/department_main/training) +"Lk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/reinforced, +/area/city) +"Ll" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/grass, +/area/city) +"Lm" = ( +/obj/effect/landmark/toolspawn, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/training) +"Ln" = ( +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "ER1"; + name = "assiyah floor"; + width = 6; + roundstart_template = /datum/map_template/shuttle/district4/elevator + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/department_main/command) +"Lo" = ( +/obj/effect/turf_decal/trimline/blue/arrow_cw{ + dir = 10 + }, +/turf/open/floor/wood, +/area/city/shop) +"Lq" = ( +/obj/structure/table/glass, +/obj/structure/sign/ordealmonitor{ + pixel_y = -32 + }, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/safety) +"Lr" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/item/kirbyplants{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"Ls" = ( +/turf/closed/indestructible/rock, +/area/facility_hallway/safety) +"Lt" = ( +/obj/structure/sign/departments/info{ + pixel_x = 32 + }, +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"Lu" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Lw" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"Lx" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Ly" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"LB" = ( +/obj/effect/turf_decal/siding/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/safety) +"LC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"LD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/city) +"LE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/soap, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"LF" = ( +/obj/item/papercutter, +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"LG" = ( +/obj/machinery/chem_master, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"LH" = ( +/obj/structure/bodycontainer/crematorium{ + id = "trainingfurnace" + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/control) +"LL" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"LN" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC15" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC17" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"LO" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"LQ" = ( +/turf/open/floor/wood, +/area/city/house) +"LS" = ( +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"LT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/manager) +"LU" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"LV" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"LW" = ( +/obj/effect/turf_decal/siding/green{ + dir = 5 + }, +/obj/item/toy/plush/netzach, +/turf/closed/mineral/random/facility, +/area/department_main/safety) +"LX" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/information) +"LZ" = ( +/obj/structure/sign/departments/control, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"Ma" = ( +/obj/machinery/door/poddoor{ + name = "site burial lockdown"; + id = "traininglockdown" + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/information) +"Mb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken, +/obj/machinery/conveyor{ + dir = 4; + id = "welfaregarbage" + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Mc" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "reartire" + }, +/turf/open/floor/wood, +/area/city/house) +"Md" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"Me" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining" + }, +/turf/open/floor/plating/ashplanet/rocky, +/area/city) +"Mf" = ( +/obj/item/statuebust, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Mg" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Mh" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"Mj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/safety) +"Mk" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "LC30" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/command) +"Mm" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/city/shop) +"Mo" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Mq" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC11" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Mr" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/plasteel/dark, +/area/city) +"Ms" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/rock, +/area/space) +"Mt" = ( +/obj/structure/bodycontainer/extraction{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/city) +"Mu" = ( +/obj/machinery/bookbinder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"Mv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Mw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/control) +"My" = ( +/obj/structure/table/glass, +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"MA" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"MC" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ME" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"MF" = ( +/obj/structure/sign/departments/discipline, +/turf/closed/indestructible/reinforced, +/area/facility_hallway/discipline) +"MG" = ( +/obj/item/trash/can/food/pcorp, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"MH" = ( +/obj/machinery/door/airlock/wood{ + name = "kitchen" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/city/shop) +"MJ" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"ML" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/indestructible/rock, +/area/space) +"MM" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"MN" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"MO" = ( +/obj/structure/sign/warning/electricshock, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"MQ" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC18" + }, +/turf/open/floor/plating, +/area/department_main/command) +"MR" = ( +/obj/item/book/granter/action/skill/assault, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"MS" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/griddle, +/turf/open/floor/plasteel/white, +/area/city/shop) +"MT" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"MV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/indestructible/rock, +/area/space) +"Na" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/information) +"Nb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/welfare) +"Nc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Nd" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/encryptionkey/headset_control, +/obj/item/encryptionkey/headset_control, +/obj/item/encryptionkey/headset_control, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Ne" = ( +/obj/structure/sign/poster/lobotomycorp/bearbeer, +/turf/closed/indestructible/reinforced/old, +/area/department_main/training) +"Nf" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Ng" = ( +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"Ni" = ( +/obj/effect/landmark/toolspawn, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/safety) +"Nk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Nl" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC4" + }, +/turf/open/floor/wood, +/area/department_main/command) +"Nm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 7 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/department_main/manager) +"Nn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"No" = ( +/obj/item/toy/plush/yesod, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Nr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/facility/dark, +/area/department_main/training) +"Ns" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"Nt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"Nu" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC16" + }, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC11" + }, +/turf/open/floor/wood, +/area/department_main/command) +"Nw" = ( +/obj/structure/bodycontainer/extraction{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/city) +"Nx" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "topdoor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/black, +/area/city/house) +"Ny" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"ND" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"NE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"NG" = ( +/obj/structure/rack, +/obj/item/melee/classic_baton, +/obj/item/melee/classic_baton, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/extraction) +"NH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/item/toy/plush/dante, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"NI" = ( +/obj/structure/sign/ordealmonitor{ + pixel_x = -32 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"NL" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"NM" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"NN" = ( +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/safety) +"NO" = ( +/obj/effect/landmark/delayed/xeno_spawn, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"NQ" = ( +/turf/closed/wall/mineral/wood, +/area/city/shop) +"NR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"NS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"NT" = ( +/obj/machinery/door/airlock/medical, +/turf/open/floor/facility/white, +/area/city) +"NU" = ( +/obj/structure/table/wood/bar, +/obj/item/toy/plush/netzach, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"NV" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/caution, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"NW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"NX" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"NY" = ( +/obj/structure/sign/ordealmonitor{ + pixel_x = 32 + }, +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-21" + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC8" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Oe" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Of" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Disposals" + }, +/obj/structure/sign/departments/custodian{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/facility_hallway/control) +"Og" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/department_main/manager) +"Oi" = ( +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"Oj" = ( +/obj/structure/sign/departments/command, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"Ok" = ( +/mob/living/simple_animal/hostile/humanoid/rat/zippy{ + name = "twitching rat" + }, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"On" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Oo" = ( +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Op" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/safety) +"Oq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Os" = ( +/obj/machinery/jukebox{ + req_access = list() + }, +/turf/open/floor/wood, +/area/city/shop) +"Ot" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Ou" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = list() + }, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/obj/item/food/carpmeat, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"Ov" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Ow" = ( +/obj/machinery/light/small/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/command) +"Ox" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"Oz" = ( +/obj/machinery/smartfridge/food, +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"OC" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/artistic, +/obj/machinery/light, +/turf/open/floor/wood, +/area/city/house) +"OD" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/facility/white, +/area/department_main/safety) +"OE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"OF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"OG" = ( +/obj/item/onyx_hook, +/obj/effect/mob_spawn/human/agent, +/turf/closed/mineral/random/facility{ + baseturfs = /turf/open/floor/plating/asteroid; + name = "rocky rubble" + }, +/area/facility_hallway/training) +"OJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"OL" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"OM" = ( +/obj/structure/chair/comfy/black, +/obj/item/toy/plush/hokma, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"ON" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/machinery/light/broken, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"OP" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"OQ" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"OT" = ( +/obj/effect/landmark/start, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"OU" = ( +/turf/closed/indestructible/rock, +/area/department_main/control) +"OV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/effect/mob_spawn/human/agent, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"OW" = ( +/obj/structure/sign/poster/official/walk{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"OX" = ( +/obj/item/deepscanner, +/obj/item/deepscanner, +/obj/item/deepscanner, +/obj/item/deepscanner, +/obj/item/deepscanner, +/obj/structure/table_frame, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"OY" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"OZ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/department_main/information) +"Pa" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/landmark/start, +/turf/open/floor/plating, +/area/department_main/training) +"Pc" = ( +/obj/structure/rack, +/obj/item/refiner_filter/green, +/obj/item/refiner_filter/green, +/obj/item/refiner_filter/green, +/obj/item/refiner_filter/green, +/obj/item/refiner_filter/green, +/turf/open/floor/pod, +/area/city/shop) +"Pd" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Pf" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"Pg" = ( +/obj/machinery/door/airlock/wood{ + name = "bar" + }, +/turf/open/floor/pod, +/area/city) +"Ph" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/closed/indestructible/reinforced, +/area/city/house) +"Pi" = ( +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Pj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"Pl" = ( +/obj/structure/fluff/bus/passable/seat/driver, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/limbus/prison, +/turf/open/floor/carpet/black, +/area/city/house) +"Pm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/highsecurity{ + name = "Disposals" + }, +/turf/open/floor/plating, +/area/department_main/welfare) +"Pn" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/control) +"Po" = ( +/obj/machinery/navbeacon/wayfinding/recorddepartment, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"Pq" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/rock, +/area/department_main/control) +"Ps" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Pt" = ( +/obj/structure/sign/departments/custodian{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Pv" = ( +/turf/closed/indestructible/syndicate, +/area/city/outskirts) +"Pw" = ( +/obj/structure/table/glass, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"Px" = ( +/turf/closed/indestructible/rock, +/area/city) +"Pz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 4; + id = "controlgarbage" + }, +/turf/open/floor/plating, +/area/facility_hallway/control) +"PA" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/modular_computer/console/preset/research{ + name = "information department console" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"PB" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"PC" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"PD" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"PF" = ( +/obj/structure/table/glass, +/obj/item/documents, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"PG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"PH" = ( +/obj/machinery/computer/extraction_cargo, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"PI" = ( +/obj/machinery/computer/operating, +/turf/open/floor/facility/white, +/area/city) +"PJ" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"PM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"PN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"PP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"PR" = ( +/obj/structure/sign/poster/lobotomycorp/clerk_lives_matter, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"PT" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottomrear" + }, +/turf/open/floor/wood, +/area/city/house) +"PU" = ( +/obj/effect/turf_decal/siding/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/facility/white, +/area/department_main/safety) +"PV" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC10" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"PW" = ( +/obj/machinery/door/airlock/centcom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/facility_hallway/command) +"PZ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/city/house) +"Qb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/indestructible/rock, +/area/space) +"Qc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/department_main/command) +"Qd" = ( +/obj/structure/fluff/big_chain, +/turf/open/floor/fakepit{ + density = 1; + desc = "An anomalous field of inky blackness caused by a wing's singularity, not even the bravest dares to delve into."; + name = "Void" + }, +/area/city) +"Qe" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/information) +"Qg" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/landmark/start{ + pixel_x = 3 + }, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Qh" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/city/shop) +"Qi" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-02" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"Qj" = ( +/obj/structure/sign/button_counter/directional/north, +/turf/closed/indestructible/reinforced/old, +/area/department_main/records) +"Qo" = ( +/turf/closed/indestructible/reinforced, +/area/city/shop) +"Qp" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/clipboard{ + pixel_x = 6 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"Qq" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Qs" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Qv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"Qw" = ( +/obj/effect/landmark/department_center, +/obj/machinery/navbeacon/wayfinding/safetydepartment, +/turf/open/floor/plating, +/area/department_main/safety) +"Qx" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/item/lightreplacer, +/turf/closed/mineral/random/facility, +/area/facility_hallway/control) +"Qy" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"QA" = ( +/obj/structure/sign/poster/contraband/fun_police, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"QB" = ( +/obj/structure/chair/office{ + anchored = 1; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"QC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"QD" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"QE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/welfare) +"QF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/delayed/department_center, +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"QG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 8; + id = "smelting" + }, +/turf/open/floor/plasteel/dark, +/area/city/shop) +"QJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"QO" = ( +/obj/machinery/facility_holomap{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"QP" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"QR" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"QT" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/records) +"QU" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC25" + }, +/obj/structure/chair/office, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"QX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/facility_holomap, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"QY" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"QZ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Ra" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"Rb" = ( +/obj/structure/rack, +/obj/item/toy/crayon/spraycan, +/obj/item/storage/crayons, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Rc" = ( +/obj/structure/rack, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/pod, +/area/city/shop) +"Re" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/department_main/discipline) +"Rf" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Rg" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/reinforced, +/area/city) +"Rh" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Ri" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/reinforced, +/area/city/backstreets_alley) +"Rk" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/item/shard/plasma, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"Rl" = ( +/obj/effect/decal/cleanable/glass, +/obj/machinery/door/airlock/vault{ + name = "Dragon's Skull containment zone" + }, +/turf/closed/mineral/random/facility/abnormality{ + risk_level = 2 + }, +/area/facility_hallway/training) +"Rm" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced, +/area/city/shop) +"Rn" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/structure/sign/departments/command{ + pixel_x = -32 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Rr" = ( +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced, +/area/facility_hallway/discipline) +"Rs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"Rt" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/city) +"Rv" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"Rw" = ( +/turf/open/water, +/area/city) +"Rx" = ( +/obj/structure/sign/departments/info, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"Ry" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Rz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/city/shop) +"RA" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"RC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/item/shard/plasma, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"RF" = ( +/obj/structure/rack, +/obj/item/bot_assembly/floorbot, +/turf/open/floor/pod, +/area/city/shop) +"RH" = ( +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"RI" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"RJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"RM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"RO" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"RP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"RQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/training) +"RR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"RS" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"RT" = ( +/obj/machinery/door/airlock/wood{ + name = "Manager's Office"; + req_access = list(19) + }, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/turf/open/floor/wood, +/area/city/house) +"RU" = ( +/obj/structure/sign/departments/discipline, +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/discipline) +"RV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"RW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"RX" = ( +/obj/effect/mob_spawn/human/corpse, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Sc" = ( +/obj/structure/sign/warning/explosives, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"Se" = ( +/turf/closed/indestructible/reinforced/old, +/area/department_main/discipline) +"Sg" = ( +/obj/machinery/facility_holomap, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Sh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Sk" = ( +/obj/effect/turf_decal/trimline/red/arrow_ccw{ + dir = 9 + }, +/turf/open/floor/wood, +/area/city/shop) +"Sl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Sn" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/city/shop) +"Sp" = ( +/obj/machinery/text_adventure_console, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Sq" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"Ss" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/structure/sign/departments/command{ + pixel_x = 32 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"St" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "managerlockdown"; + name = "Manager's Office Lockdown Blast Door" + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/manager) +"Su" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Sv" = ( +/obj/structure/sign/departments/info, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"Sw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"Sy" = ( +/obj/item/shard, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Sz" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/glass, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/department_main/training) +"SA" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/welfare) +"SB" = ( +/obj/machinery/vending/fixer, +/turf/open/floor/pod, +/area/city/shop) +"SC" = ( +/obj/item/paper/guides/jobs/teth/guide/spiderbud, +/obj/item/paper/guides/jobs/teth/lore/spiderbud{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"SE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/delayed/department_center, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"SF" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"SG" = ( +/obj/structure/rack, +/obj/item/toy/crayon/spraycan/infinite, +/obj/item/toy/crayon/spraycan/infinite, +/obj/item/toy/crayon/spraycan/infinite, +/obj/item/toner/extreme, +/obj/effect/turf_decal/box/white, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"SH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"SI" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"SJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/city/house) +"SL" = ( +/obj/structure/chair/office{ + anchored = 1; + dir = 4 + }, +/turf/open/floor/carpet, +/area/department_main/manager) +"SM" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"SN" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"SP" = ( +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"SQ" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"SR" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = list() + }, +/obj/item/food/meatclown, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"SS" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"ST" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"SU" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/safety) +"SV" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"SW" = ( +/obj/machinery/door/airlock/public/glass{ + normalspeed = 0 + }, +/turf/open/floor/pod/light, +/area/facility_hallway/manager) +"SY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/city) +"Ta" = ( +/obj/item/shard, +/turf/open/floor/plating/rust, +/area/department_main/training) +"Tb" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table_frame/wood, +/turf/open/floor/plating, +/area/department_main/welfare) +"Tc" = ( +/turf/open/floor/carpet/donk, +/area/city/shop) +"Td" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Te" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"Tg" = ( +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"Th" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/chair/comfy/teal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Tj" = ( +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"Tk" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"Tm" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"To" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"Tr" = ( +/obj/machinery/door/airlock/vault, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Tu" = ( +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Tw" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/indestructible/rock, +/area/space) +"Ty" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"Tz" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"TA" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"TB" = ( +/obj/structure/filingcabinet/wawinfo{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/alephinfo, +/obj/structure/filingcabinet/toolinfo{ + pixel_x = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"TC" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"TD" = ( +/turf/closed/mineral/random/facility, +/area/department_main/information) +"TE" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC20" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"TF" = ( +/obj/item/reagent_containers/syringe/contraband/fentanyl, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"TG" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"TI" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/rock, +/area/facility_hallway/command) +"TK" = ( +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/plating/rust, +/area/city/backstreets_alley) +"TM" = ( +/turf/closed/indestructible/reinforced, +/area/mine/hydroponics) +"TN" = ( +/obj/structure/closet/cabinet, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/turf/open/floor/wood, +/area/city/house) +"TP" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility, +/area/department_main/information) +"TS" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/item/shard/plasma, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/command) +"TV" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/storage/bag/trash/bluespace, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/soap, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"TW" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"TX" = ( +/obj/structure/sign/departments/command{ + pixel_x = 32 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"TY" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/plaque{ + icon_state = "LC29" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"TZ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "LC1" + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/command) +"Uc" = ( +/obj/machinery/door/airlock/wood{ + name = "Manager's Quarters"; + req_access = list(19) + }, +/turf/open/floor/wood, +/area/department_main/manager) +"Ud" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"Uf" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"Ug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Uh" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Ui" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/chair/comfy/teal, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Uj" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"Up" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Uq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"Ut" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"Uu" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/door/airlock/vault, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"Uv" = ( +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/closed/indestructible/rock, +/area/space) +"Uw" = ( +/obj/machinery/door/airlock/centcom, +/turf/open/floor/wood, +/area/city/shop) +"Uy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/plating/grass, +/area/city) +"Uz" = ( +/obj/structure/curtain/bounty, +/turf/closed/indestructible/reinforced/old, +/area/department_main/command) +"UA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/pod, +/area/city/shop) +"UB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/rock, +/area/city) +"UC" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/turf/open/floor/wood, +/area/city/house) +"UE" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/agent, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"UG" = ( +/obj/structure/sign/poster/official/cleanliness, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/control) +"UI" = ( +/obj/effect/landmark/start, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/plating, +/area/department_main/training) +"UK" = ( +/obj/structure/table, +/obj/structure/lootcrate/l_corp, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"UL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/city/shop) +"UM" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"UP" = ( +/obj/structure/easel, +/obj/item/canvas/nineteen_nineteen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/command) +"UQ" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC16" + }, +/turf/open/floor/wood, +/area/department_main/command) +"US" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"UT" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plating, +/area/department_main/command) +"UV" = ( +/obj/structure/sign/departments/control, +/turf/closed/indestructible/reinforced/old, +/area/department_main/control) +"UX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"UZ" = ( +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"Vb" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/fat_sucker, +/turf/open/floor/facility/white, +/area/city) +"Vd" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"Ve" = ( +/obj/structure/flora/tree/jungle, +/turf/open/floor/plating/grass, +/area/city) +"Vg" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"Vh" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC12" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"Vi" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plasteel/dark, +/area/city) +"Vk" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/city/shop) +"Vl" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Vn" = ( +/obj/broken_regenerator, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Vo" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Vp" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"Vs" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"Vu" = ( +/turf/open/floor/carpet/red, +/area/department_main/discipline) +"Vv" = ( +/obj/item/kirbyplants{ + anchored = 1; + icon_state = "plant-22" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/grass, +/area/department_main/safety) +"Vw" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"VA" = ( +/obj/machinery/computer/med_data{ + dir = 8; + req_one_access = "0" + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"VB" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"VC" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/sign/poster/lobotomycorp/hhpp{ + pixel_x = 32 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"VD" = ( +/turf/closed/indestructible/reinforced, +/area/city) +"VF" = ( +/obj/structure/urinal, +/obj/structure/curtain, +/turf/open/floor/wood, +/area/city/shop) +"VH" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/papercutter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"VI" = ( +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/item/clothing/accessory/armband/lobotomy/safety, +/obj/structure/table/wood/fancy/green, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"VJ" = ( +/obj/effect/spawner/randomcolavend, +/turf/open/floor/plating, +/area/department_main/command) +"VK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/city/outskirts) +"VL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + icon_state = "LC3" + }, +/turf/open/floor/plating, +/area/department_main/command) +"VQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/facility_hallway/training) +"VR" = ( +/obj/effect/landmark/abnospawn/briah, +/turf/open/floor/plating/rust, +/area/department_main/extraction) +"VS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC7" + }, +/turf/open/floor/plating, +/area/department_main/command) +"VT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/fridge/open{ + anchored = 1 + }, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/plasteel/white, +/area/city/shop) +"VU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"VW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/spawner/lootdrop/garbage_spawner, +/turf/open/floor/plating, +/area/facility_hallway/training) +"VX" = ( +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"VY" = ( +/obj/structure/table/glass, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/department_main/safety) +"Wa" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "controlgarbage" + }, +/turf/open/floor/plasteel/dark, +/area/facility_hallway/control) +"Wb" = ( +/obj/machinery/modular_computer/console/preset/research{ + name = "information department console" + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/department_main/information) +"Wc" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Wd" = ( +/obj/effect/landmark/department_center, +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"We" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/reinforced, +/area/city/backstreets_room) +"Wi" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/indestructible/reinforced/old, +/area/department_main/welfare) +"Wl" = ( +/obj/structure/rack, +/obj/item/clothing/accessory/armband/lobotomy/extraction, +/obj/item/clothing/accessory/armband/lobotomy/extraction, +/obj/item/clothing/accessory/armband/lobotomy/extraction, +/obj/effect/decal/cleanable/dirt, +/turf/closed/mineral/random/facility/briah, +/area/department_main/extraction) +"Wn" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/facility/dark, +/area/department_main/training) +"Wp" = ( +/obj/effect/turf_decal/siding/yellow/end{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Wu" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Ww" = ( +/turf/open/water/deep, +/area/city) +"Wy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"WA" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/plastic, +/turf/closed/mineral/facility, +/area/facility_hallway/training) +"WB" = ( +/obj/item/trash/can/food/pcorp, +/turf/open/floor/plating, +/area/department_main/extraction) +"WC" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/control) +"WD" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"WE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/department_main/training) +"WF" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plasteel/grimy, +/area/city/shop) +"WG" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"WI" = ( +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"WJ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"WK" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"WL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/city/shop) +"WM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/city/shop) +"WN" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/royalblue, +/area/department_main/welfare) +"WP" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodtop" + }, +/turf/open/floor/wood, +/area/city/house) +"WQ" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/hatch{ + name = "disposals" + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/city) +"WR" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/city) +"WS" = ( +/obj/effect/turf_decal/siding/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"WT" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"WU" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"WV" = ( +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"WW" = ( +/turf/open/floor/wood, +/area/department_main/command) +"WZ" = ( +/turf/open/floor/plating/ashplanet/rocky, +/area/city/backstreets_alley) +"Xa" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/item/toy/plush/lisa, +/turf/closed/mineral/random/facility/briah, +/area/facility_hallway/command) +"Xb" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Xd" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC27" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Xf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/freezer, +/area/city/shop) +"Xg" = ( +/obj/effect/landmark/delayed/abnormality_room, +/turf/closed/indestructible/reinforced/old, +/area/facility_hallway/command) +"Xh" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Xi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/control) +"Xk" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/welfare) +"Xl" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet/orange, +/area/department_main/training) +"Xm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC22" + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Xo" = ( +/obj/machinery/navbeacon/wayfinding/centralcommanddepartment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC6" + }, +/obj/effect/landmark/delayed/department_center, +/turf/open/floor/plating, +/area/department_main/command) +"Xr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/department_main/safety) +"Xt" = ( +/obj/structure/sign/poster/lobotomycorp/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"Xu" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/carpet/royalblue, +/area/department_main/command) +"Xv" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "LC31" + }, +/turf/open/floor/plating, +/area/department_main/command) +"Xw" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/command) +"Xx" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Xy" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Xz" = ( +/obj/structure/bodycontainer/extraction{ + dir = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/city) +"XB" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/grimy, +/area/city/backstreets_room) +"XC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"XE" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/icecream_vat, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"XF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/indestructible/opshuttle, +/area/city/shop) +"XH" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"XJ" = ( +/obj/machinery/door/poddoor{ + name = "central command lockdown"; + id = "spawners" + }, +/turf/open/floor/plating, +/area/facility_hallway/information) +"XK" = ( +/obj/structure/rack, +/obj/item/screwdriver, +/obj/item/screwdriver, +/obj/item/crowbar/large, +/obj/item/crowbar/large, +/obj/item/weldingtool/experimental, +/obj/item/weldingtool/experimental, +/obj/item/wirecutters, +/obj/item/wirecutters, +/obj/item/wrench, +/obj/item/wrench, +/turf/open/floor/wood, +/area/city/house) +"XL" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/ordealmonitor{ + pixel_y = 32 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"XN" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"XO" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"XP" = ( +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC14" + }, +/turf/open/floor/carpet/red, +/area/facility_hallway/control) +"XR" = ( +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"XS" = ( +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/obj/effect/turf_decal/bot, +/turf/open/floor/facility/white, +/area/city) +"XW" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Yb" = ( +/obj/machinery/light, +/obj/machinery/light, +/obj/item/kirbyplants{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/facility_hallway/control) +"Yc" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/white, +/area/city/shop) +"Yg" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/elevatorshaft, +/area/facility_hallway/welfare) +"Yh" = ( +/obj/structure/sign/poster/contraband/fun_police, +/turf/closed/indestructible/reinforced, +/area/city/backstreets_room) +"Yj" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/facility/white, +/area/city) +"Yk" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Yl" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/discipline) +"Ym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/pcorp, +/obj/item/trash/popcorn, +/turf/open/floor/plating, +/area/department_main/extraction) +"Yn" = ( +/obj/structure/rack, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/turf/open/floor/pod, +/area/city/shop) +"Yo" = ( +/obj/machinery/button/door/indestructible{ + id = "goldenbough"; + name = "Briah Lockdown button"; + pixel_y = -25 + }, +/turf/closed/mineral/random/facility/abnormality{ + risk_level = 4 + }, +/area/department_main/discipline) +"Yp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/indestructible/rock, +/area/facility_hallway/welfare) +"Yq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plating, +/area/department_main/command) +"Yr" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/welfare) +"Yt" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/toolspawn, +/turf/open/floor/wood, +/area/department_main/command) +"Yu" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/city) +"Yv" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"Yw" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/facility_hallway/control) +"Yx" = ( +/turf/open/floor/fakepit{ + density = 1; + desc = "An anomalous field of inky blackness caused by a wing's singularity, not even the bravest dares to delve into."; + name = "Void" + }, +/area/city) +"Yz" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"YA" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"YB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 17 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/toy/figure/captain, +/turf/open/floor/wood, +/area/department_main/manager) +"YC" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plating/rust, +/area/facility_hallway/training) +"YD" = ( +/turf/open/floor/carpet/donk, +/area/city/backstreets_alley) +"YF" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"YG" = ( +/obj/effect/landmark/cityloot, +/obj/structure/table_frame, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"YJ" = ( +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/department_main/safety) +"YK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"YL" = ( +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/glass, +/turf/closed/mineral/random/facility/atzliuth, +/area/department_main/discipline) +"YN" = ( +/obj/machinery/conveyor/inverted{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plasteel/dark, +/area/city) +"YO" = ( +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"YP" = ( +/obj/item/toy/plush/chesed, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/welfare) +"YQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/structure/fluff/broken_flooring{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"YS" = ( +/obj/item/trash/can/food/pcorp, +/turf/open/floor/plating, +/area/facility_hallway/control) +"YT" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"YV" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/rack{ + pixel_x = -1 + }, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"YW" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/city) +"YX" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/facility_hallway/safety) +"YY" = ( +/obj/structure/chair/office, +/obj/effect/mob_spawn/human/agent, +/turf/closed/mineral/random/facility, +/area/department_main/control) +"YZ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"Zb" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Zc" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/hypospray/medipen/salacid, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"Zd" = ( +/obj/structure/sign/poster/official/hang_in_there{ + pixel_x = 32 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/department_main/safety) +"Ze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/plaque{ + alpha = 230; + icon_state = "LC9" + }, +/turf/open/floor/plating, +/area/department_main/command) +"Zf" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest/alt, +/obj/item/clothing/suit/armor/vest/alt, +/turf/open/floor/plating, +/area/department_main/extraction) +"Zg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/chem_dispenser/drinks{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/contraband/city_cola{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/city/shop) +"Zj" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"Zl" = ( +/obj/structure/fluff/bus/passable/seat, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/neck/limbus_tie, +/turf/open/floor/carpet/black, +/area/city/house) +"Zm" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plating, +/area/facility_hallway/training) +"Zq" = ( +/obj/structure/sign/departments/custodian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/city) +"Zr" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/department_main/discipline) +"Zs" = ( +/obj/structure/sign/barsign, +/turf/closed/indestructible/reinforced, +/area/city) +"Zt" = ( +/turf/closed/wall/mineral/plastitanium, +/area/facility_hallway/manager) +"Zv" = ( +/obj/machinery/vending/medical{ + req_access = list() + }, +/turf/open/floor/plating, +/area/department_main/safety) +"Zw" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plating, +/area/facility_hallway/welfare) +"Zx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/department_main/command) +"Zy" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/turf/closed/mineral/random/facility/atzliuth, +/area/facility_hallway/discipline) +"Zz" = ( +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/city) +"ZA" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/facility/dark, +/area/department_main/training) +"ZD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/white, +/area/mine/hydroponics) +"ZE" = ( +/obj/machinery/computer/communications, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/department_main/manager) +"ZG" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/indestructible/reinforced/old, +/area/department_main/extraction) +"ZH" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/department_main/discipline) +"ZJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/facility_hallway/safety) +"ZK" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/facility_hallway/discipline) +"ZL" = ( +/turf/closed/indestructible/rock, +/area/space) +"ZM" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/table/wood/fancy/blue, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/plating/rust, +/area/department_main/command) +"ZN" = ( +/obj/effect/mob_spawn/human/corpse, +/obj/item/clothing/neck/tie/black, +/turf/open/floor/plasteel, +/area/city/backstreets_room) +"ZO" = ( +/turf/open/floor/plating/rust, +/area/department_main/command) +"ZP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/item/food/plumphelmetbiscuit, +/turf/open/floor/plasteel/elevatorshaft, +/area/city/shop) +"ZU" = ( +/obj/machinery/gateway, +/turf/open/floor/shelter, +/area/facility_hallway/command) +"ZW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/closed/mineral/random/facility/briah, +/area/department_main/records) +"ZX" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera, +/turf/open/floor/plating/rust, +/area/facility_hallway/command) +"ZZ" = ( +/obj/structure/chair/office, +/turf/open/floor/plating, +/area/department_main/safety) + +(1,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(2,1,1) = {" +ZL +ZL +ZL +qP +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(3,1,1) = {" +ZL +ZL +qP +qP +qP +qP +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(4,1,1) = {" +ZL +qP +qP +ZL +ZL +qP +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(5,1,1) = {" +ZL +qP +qP +ZL +ZL +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(6,1,1) = {" +ZL +qP +qP +ZL +ZL +qP +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(7,1,1) = {" +ZL +ZL +qP +qP +qP +qP +qP +qP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(8,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(9,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(10,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(11,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(12,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(13,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(14,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(15,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(16,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(17,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(18,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(19,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(20,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(21,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(22,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(23,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(24,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(25,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(26,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(27,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(28,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(29,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(30,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(31,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(32,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(33,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(34,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(35,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(36,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(37,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(38,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(39,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(40,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(41,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(42,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(43,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(44,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(45,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(46,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(47,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(48,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(49,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(50,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(51,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(52,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(53,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(54,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(55,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(56,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(57,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(58,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(59,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(60,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(61,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(62,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(63,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(64,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(65,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(66,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(67,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(68,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(69,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(70,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(71,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(72,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(73,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(74,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(75,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(76,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(77,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(78,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(79,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(80,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(81,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(82,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(83,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(84,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(85,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(86,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(87,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(88,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(89,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(90,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(91,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(92,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(93,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(94,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(95,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(96,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(97,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(98,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(99,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(100,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(101,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(102,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(103,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(104,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(105,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(106,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(107,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(108,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(109,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(110,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +fb +fb +fb +fb +fb +fb +fb +fb +fb +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(111,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +fb +YD +dV +ug +AS +YD +bt +oq +Hb +fE +fb +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(112,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +aC +AS +AS +YD +rz +uW +uW +gA +ou +jt +Tg +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +MV +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(113,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +jb +rz +rz +uW +Ok +rz +rz +MR +KL +bU +Rv +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +BY +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Fr +BY +ZL +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(114,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +zV +Bj +YD +YD +lD +uW +cq +fP +TF +uw +uX +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Qo +Qo +Qo +Qo +ZL +ZL +ZL +ZL +Qo +Qo +Qo +Qo +VD +dz +rc +rc +rc +Nw +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(115,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +zg +zg +zg +zg +zg +zg +ZL +ZL +ZL +ZL +fb +fb +TK +gK +lR +YD +YD +YD +ze +nh +oq +fb +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +VF +aX +Bi +Qo +ZL +ZL +ZL +ZL +Qo +eO +aX +Bi +VD +sl +DD +rc +rc +Nw +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(116,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +pj +sJ +sJ +sJ +Ac +zg +ZL +ZL +ZL +ZL +ZL +fb +fb +fb +fb +ED +HN +fb +fb +fb +fb +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Dy +aX +hl +Qo +ZL +ZL +ZL +ZL +Qo +Fv +aX +Bi +VD +Xz +rc +rc +rc +Dp +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(117,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +zg +zg +zg +zg +zg +Ay +zg +zg +jV +jV +zg +zg +zg +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Cs +aX +aX +Qo +Qo +Ra +Qo +Qo +Qo +jQ +aX +Bi +VD +Mt +rc +rc +rc +Nw +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(118,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +sJ +ax +fr +zg +tX +sJ +tX +jV +ix +ix +hY +ix +ix +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +jQ +UL +aX +Uw +Lo +aX +Sk +Uw +aX +aX +UL +aX +VD +Mt +rc +rc +rc +Nw +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(119,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +KF +KF +KF +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +Ax +zg +pt +PF +tX +jV +ix +ix +ix +ix +ix +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +pm +Qo +Qo +Qo +aX +aX +aX +Qo +Qo +Qo +Qo +Qo +Qo +Qo +VD +aE +VD +VD +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(120,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +KF +sz +sz +sz +sz +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +HW +Ps +Ps +Uu +Ps +PF +tX +nT +ix +ix +ix +qC +Kk +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Qo +dh +ek +mW +lL +aX +GM +FW +NQ +qm +Tc +qm +Tc +qm +Tc +VD +rf +VD +rD +eB +TV +If +bf +WR +eB +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(121,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +sz +sz +sz +sz +sz +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +CW +zg +pt +PF +tX +jV +ix +ix +ix +ix +ix +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Qo +Qo +CS +GV +Qo +Qo +Qo +Qo +wk +ft +cX +mW +Mm +Vk +IR +BB +WL +qm +Tc +Tc +Tc +Tc +uZ +VD +rf +WQ +eB +bP +rx +rI +rx +eY +eB +VD +Px +Px +Px +VD +VD +VD +VD +VD +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(122,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +sz +sz +sz +sz +sz +sz +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +Er +sJ +fr +zg +tX +sJ +tX +jV +aa +ix +ix +ix +ix +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +Ou +Tj +Qv +Tj +Tj +Tj +Qo +AB +Kl +ft +cX +mW +Mm +aX +Qh +aX +NQ +Tc +Tc +qm +Tc +qm +Tc +VD +Zq +VD +mv +wJ +by +uN +IF +Kt +bV +sC +HH +qE +VD +VD +sd +rM +Su +VD +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(123,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +sz +OG +sz +sz +sz +sz +Bm +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +sJ +zg +zg +zg +zg +zg +We +We +We +zg +zg +zg +fb +fb +fb +fb +fb +fb +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +pg +Tj +Tj +Tj +Tj +Tj +pm +pi +ft +ft +cX +vc +Mm +aX +aX +aX +os +Tc +Tc +Tc +Tc +Tc +uZ +VD +rf +VD +VD +VD +VD +YN +vt +VD +VD +VD +Px +UB +VD +Mr +eB +eB +eB +fX +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(124,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +sz +sz +sz +sz +sz +sz +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +sJ +Ax +ZN +ax +sJ +RX +CK +gJ +ss +tC +tC +tC +tC +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +fx +Tj +Tj +Tj +qV +Xf +Qo +NU +ft +ft +cX +mW +Mm +aX +GM +aX +NQ +Tc +Tc +qm +Tc +qm +Tc +VD +rf +VD +es +HH +rr +kq +zi +rr +HH +HH +HH +iY +rr +KT +hK +eB +eB +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(125,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +sz +Kw +sz +sz +sz +KF +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +sJ +sJ +CK +Ax +sJ +Hy +ss +tC +tC +tC +tC +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +DR +Tj +Tj +Tj +qV +Tj +Qo +kl +ft +WF +cX +mW +Mm +Vk +IR +BB +WL +qm +Tc +Tc +Tc +Tc +Tc +VD +rf +VD +UB +Px +VD +VD +VD +VD +Px +Px +Px +Px +VD +Bt +GB +oU +Ff +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(126,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +KF +sz +aw +Kw +cs +sz +sz +KF +KF +KF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +sJ +sJ +hd +Td +iN +CK +sJ +Yh +ss +tC +tC +tC +tC +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +fb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Qo +SR +Tj +qB +gE +sF +Tj +Qo +HB +ft +ft +cX +mW +Mm +aX +Qh +FW +NQ +di +WL +WL +WL +NQ +NQ +VD +rf +VD +UB +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +Mv +oU +Ff +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(127,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +lP +lP +lP +lP +hn +lP +Rl +lP +lP +lP +lP +lP +lP +lP +lP +lP +lP +lP +lP +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +zg +Tr +zg +zg +zg +zg +zg +zg +Ri +Ri +Ri +fb +fb +fb +fb +fb +fb +fb +fb +fb +WZ +WZ +WZ +fb +ZL +TM +TM +TM +fN +TM +TM +Qo +Qo +xM +Qo +Qo +Qo +Qo +Qo +Qo +jG +Do +tc +mW +Mm +aX +aX +aX +Br +aX +GM +aX +aX +GM +Sn +VD +rf +VD +UB +VD +It +It +It +It +It +It +It +It +It +VD +yZ +oU +Dk +SY +uE +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(128,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +lP +JI +JI +JI +lP +QJ +WA +mf +lA +ns +ty +vW +vW +ge +RQ +RQ +RQ +Vs +zW +zW +zW +zW +zW +BG +zW +zW +zW +zW +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +sJ +sJ +sJ +sJ +ZN +pt +jD +zg +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +TM +Ai +my +Dl +ZD +yp +Qo +MS +bY +Yc +oR +vI +Zg +Tm +XE +Qo +aX +sx +Mm +aX +aX +aX +aX +aX +Vk +IR +BB +Vk +bh +dg +VD +rf +VD +UB +VD +It +It +It +It +It +It +It +zs +It +Vi +AT +HL +cm +SY +uE +eZ +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(129,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +cg +uu +dZ +rX +cg +ZL +ZL +ZL +ZL +lP +JI +JI +JI +lP +Kp +sb +Oi +JI +mJ +mJ +mJ +mJ +IZ +IZ +kw +kw +GQ +zW +lq +LF +Dg +qO +qO +qO +uo +Vo +ke +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +sJ +sJ +sJ +sJ +sJ +sJ +xq +zg +zg +zg +zg +zg +zg +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +TM +zT +Ah +Ah +Ah +zd +CS +wg +Gz +Gz +Gz +Gz +Bl +Bl +vl +yA +Mm +gc +Vk +IR +BB +aX +aX +aX +Vk +IR +BB +Vk +Fu +BB +VD +rf +VD +UB +VD +It +It +It +It +It +It +It +It +It +VD +Ty +oU +Ff +SY +uE +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(130,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +NG +WB +kU +gX +cg +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +Ud +mJ +YC +tG +vh +vh +vh +vh +tG +Zm +Pf +IZ +DN +zW +ot +qO +Kb +Kb +qO +Fx +Fx +lv +QD +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +sJ +sJ +sJ +pt +jD +zg +XB +KC +XB +lx +fd +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ZL +TM +YV +Ah +Ah +yN +cr +Qo +wj +Bl +Bl +bM +kP +iX +Bl +vl +aT +Mm +gc +aX +aX +aX +aX +aX +aX +aX +Qh +aX +aX +Qh +aX +Pg +rf +VD +UB +VD +It +It +It +VD +VD +VD +VD +VD +VD +VD +Mv +oU +Ff +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(131,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +Zf +Ym +gX +gX +MG +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +Zj +mJ +aJ +lP +lP +lP +lP +lP +lP +hn +Zj +IZ +DN +zW +Tz +bg +dB +oG +Lh +oG +WE +Fx +Vo +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +Er +RX +QB +sJ +QB +sJ +sJ +Tr +KC +KC +KC +KC +SI +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +ML +GS +pH +Ah +sM +Ah +zd +mL +rv +Bl +Bl +zz +ET +bI +Bl +VT +AW +Mm +gc +Vk +IR +BB +aX +aX +aX +aX +GM +aX +aX +GM +aX +Pg +rf +VD +UB +VD +It +It +It +VD +Px +Px +Px +Px +VD +Mr +GB +oU +Ff +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(132,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +bs +rB +rB +rB +MG +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +Zj +mJ +mh +lP +ZL +lP +JI +JI +JI +lP +bG +IQ +DN +BG +FP +Cb +Pa +Fx +pE +Fx +UI +Fx +EY +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +My +af +it +sJ +it +sJ +ra +zg +XB +bn +XB +KC +KC +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +Ms +TM +UX +Ah +Ah +yN +cr +aD +DO +Bl +Bl +Bl +Bl +Bl +Bl +zM +Rm +vJ +EP +Vk +sy +BB +aX +aX +aX +Vk +IR +BB +Vk +bH +BB +VD +rf +VD +UB +VD +It +It +It +VD +Px +Px +Px +Px +VD +bX +GB +eB +eB +SY +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(133,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +cg +Bx +rB +rB +cg +cg +ZL +ZL +ZL +lP +lP +lP +lP +hn +Zj +mJ +mh +lP +ZL +lP +JI +JI +JI +lP +dl +IZ +vZ +tO +Kb +vf +vH +mK +mK +Kb +vH +Ta +Fx +Ne +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +Ms +TM +mH +Ah +Ah +Ah +zd +Qo +fL +Gz +Gz +Gz +Gz +Bl +Bl +rY +Qo +Gs +gc +Vk +IR +BB +aX +aX +aX +Vk +IR +BB +Vk +bH +BB +Zs +rf +VD +UB +VD +It +It +It +VD +Px +Px +Px +Px +VD +Bt +GB +eB +eB +kd +LD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(134,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +cg +cg +ZG +cg +cg +cg +FZ +fo +FZ +cg +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +Zj +mJ +pr +lP +ZL +lP +JI +JI +JI +lP +fZ +nZ +aJ +BG +IJ +Cb +vH +up +Vo +mK +uL +qO +nU +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fb +WZ +WZ +WZ +fb +Ms +TM +dM +jS +jS +ok +zS +Qo +lU +Gg +Gg +Mh +VC +dx +Bl +uy +Qo +Os +gc +aX +ye +WM +aX +aX +aX +WM +Qh +UL +aX +Qh +mm +VD +rf +VD +UB +VD +It +It +It +VD +Px +Px +Px +Px +VD +VD +Ik +wJ +Su +VD +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(135,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +uO +oz +AU +AU +ir +wF +fo +fo +sU +tp +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +Zj +mJ +aJ +lP +ZL +lP +JI +JI +JI +lP +dl +CP +qr +zW +hZ +cF +wL +pu +Wd +ed +uL +qO +Ky +zW +zW +zW +zW +zW +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +VD +VD +VD +VD +fV +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +It +It +It +VD +Lk +GS +GS +GS +eK +GS +GS +Rm +Oz +MH +Rz +Rz +Rm +fg +hJ +ZP +Rm +Rm +kt +Rm +Rm +dW +Rm +qn +Rm +dW +Rm +Rm +Rm +Rm +Rm +rr +ff +rr +CF +VD +It +It +It +VD +Px +Px +Px +Px +Px +VD +bQ +VD +VD +VD +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(136,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +CU +OV +Hk +ir +ir +yJ +fo +fo +HJ +hh +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +la +mJ +mh +lP +ZL +lP +JI +JI +JI +lP +bG +aW +qr +nH +Vo +cF +uL +jX +eg +mK +uL +qO +qO +Sz +ZA +Wn +CV +zW +ZL +ZL +ZL +yO +SQ +SQ +SQ +yO +ZL +ZL +ZL +VD +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +VD +Px +Px +Px +Px +Px +Px +UB +Px +Px +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(137,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +Sp +uz +Wl +VR +AU +aI +uz +fo +fo +fS +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +gp +mJ +mh +lP +ZL +lP +lP +lP +lP +hn +YQ +aW +sj +nH +Ao +cF +uL +Xl +mK +qO +uL +qO +iq +nH +ZA +Df +ZA +zW +ZL +ZL +ZL +yO +no +Qx +SQ +SQ +ZL +ZL +ZL +VD +It +It +It +zs +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +zs +It +It +It +It +It +It +It +It +It +It +It +It +It +It +zs +It +It +It +It +It +It +VD +ZL +ZL +ZL +ZL +ZL +ZL +Ms +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(138,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +PH +fo +ER +fo +fo +gt +No +uz +fo +Ge +cg +ZL +ZL +ZL +lP +JI +JI +JI +lP +gp +mJ +mh +lP +ZL +lP +JI +JI +JI +lP +Zj +aW +sj +nH +oj +vf +Kz +Fx +yL +Kb +UI +Kb +Qs +Sz +ZA +CV +ZA +zW +ZL +ZL +ZL +yO +li +tN +sf +Pj +ZL +ZL +ZL +VD +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +VD +ZL +ZL +ZL +ZL +ZL +ZL +Ms +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(139,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +on +jN +yr +vY +ci +cg +cg +kK +fo +uz +Cg +ZL +ZL +ZL +lP +lP +lP +lP +lP +Zj +JI +mh +lP +ZL +lP +JI +JI +JI +lP +VQ +IM +qr +nH +IV +Cb +rt +vr +vr +vr +xS +Kb +BN +zW +Nr +Nr +aY +zW +ZL +ZL +ZL +yO +AF +fn +zP +UG +ZL +ZL +ZL +VD +It +It +It +VD +VD +fV +It +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +NT +VD +VD +VD +VD +VD +VD +tx +VD +gh +rV +gh +gh +df +Bg +gh +gh +rV +gh +XF +rr +gq +rr +rr +ul +ul +ya +ya +ya +ul +ro +ul +ul +Ph +ul +ul +ul +rr +HC +HC +HC +HC +HC +HC +Qb +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(140,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +cg +cg +cg +cg +cg +ZL +cg +fo +fo +uz +cg +ZL +ZL +KF +KF +AA +xp +xp +ty +ht +JI +mh +lP +ZL +lP +JI +JI +JI +lP +hC +aW +ln +nH +eg +Cb +Kb +qO +qO +qO +Kb +Kb +qO +yh +ZA +ZA +ZA +zW +ZL +SQ +yO +SQ +LE +fn +Pz +yF +ZL +ZL +ZL +VD +It +It +It +VD +ZL +VD +It +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +AZ +EI +jl +oX +VD +oS +oS +Uj +It +It +It +oa +Dx +cz +AG +tP +Dx +xV +SB +ep +Yn +oe +It +It +It +Uj +sO +oP +fK +Cy +PT +Hx +LQ +rP +OC +kZ +SJ +EM +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(141,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +Le +fo +fo +cg +ZL +ZL +KF +KF +Lm +kR +kR +kR +kR +mJ +eX +lP +ZL +lP +JI +JI +JI +lP +GJ +xn +TW +CZ +xa +vf +Kb +Kb +Kb +Kb +Kb +qO +NY +zW +zW +zW +zW +zW +ZL +SQ +sc +bw +Da +as +Pz +yF +ZL +ZL +ZL +VD +VD +Rg +It +VD +ZL +VD +It +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +cd +jl +jl +zh +VD +uF +Uy +Uj +It +It +It +iS +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Yn +oe +It +It +It +Uj +sO +oP +yC +yV +Mc +iQ +rP +LQ +fy +kZ +LQ +EM +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(142,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +uz +uz +wz +cg +ZL +ZL +KF +KF +kR +kR +Zm +Zm +Zm +oJ +br +lP +ZL +lP +JI +JI +JI +lP +GJ +Ng +IO +lP +zW +mO +zW +zW +BG +zW +zW +zW +zW +BG +ZL +ZL +ZL +ZL +ZL +SQ +as +ox +KB +fn +iV +yF +ZL +ZL +ZL +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +PI +jl +yR +wi +VD +uF +uF +Uj +It +It +hr +ja +KO +Dx +Dx +Dx +Dx +Dx +Dx +Dx +BZ +oe +It +It +It +dX +sO +oP +Zl +Cy +UC +XK +LQ +rP +lz +kZ +LQ +EM +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +uE +uE +uE +uE +uE +uE +uE +uE +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(143,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +ce +ce +ce +ce +ce +ce +ce +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +cg +qk +cg +cg +ZL +ZL +ML +Pq +TA +TA +TA +TA +TA +qY +TA +TA +TA +TA +TA +sG +vw +lP +eF +LV +VW +lP +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +FO +ZL +SQ +as +SQ +LH +mk +Wa +yF +ZL +ZL +ZL +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +fD +XS +jl +jl +XS +VD +Uy +uF +XH +It +It +hr +cS +bp +Dx +Dx +Dx +Dx +Dx +Dx +Dx +RF +kc +It +It +It +Uj +sO +oP +Pl +Nx +jU +LQ +rP +LQ +rP +rA +LQ +jg +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Px +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(144,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +lI +lI +lI +lI +lI +ac +ce +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +cg +uz +cg +ZL +ZL +ZL +Ms +rg +UV +rg +pe +NI +cK +KP +wO +lk +wO +Pi +rg +rg +Ms +lP +lP +lP +lP +lP +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +SQ +SQ +SQ +SQ +SQ +lp +Of +SQ +BC +SQ +lp +Ms +ZL +ZL +ZL +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Yj +Yj +Yj +Vb +VD +uF +oS +Uj +It +It +hr +cS +eS +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Rc +kc +It +It +It +gU +sO +Ko +WP +kG +at +rP +LQ +rP +jJ +kZ +TN +Ch +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(145,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +lI +lI +lI +lI +lI +gj +ce +wD +aO +Ki +aO +ZL +ZL +ZL +ZL +ZL +cg +uz +cg +ZL +ZL +ZL +Ms +rg +Pi +wU +SC +wO +wO +Bw +Pi +YY +wO +Pi +Mf +UV +NR +ZL +ZL +ZL +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +SQ +lp +zN +cO +cO +cO +Aw +cO +cO +cO +cO +SQ +yF +ZL +ZL +ZL +VD +It +CY +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +VD +VD +VD +VD +uF +uF +Uj +It +It +hr +cS +eS +Dx +qT +qT +qT +qT +qT +Dx +Ic +kc +It +It +It +Uj +sO +sO +sO +sO +bv +KR +KR +LQ +PZ +kZ +sO +sO +sO +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(146,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +lI +lI +lI +lI +Ln +Gj +CC +XJ +sq +Qe +wD +ZL +ZL +ZL +LX +LX +LX +Hm +ws +LX +LX +ZL +Ms +rg +rS +UE +op +Mg +wO +KP +Pi +dK +Pi +Pi +Sy +qo +NR +ZL +ZL +ZL +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +SQ +By +Lx +vs +vs +jH +jH +jH +jH +jH +Ec +UK +yF +yO +yO +yO +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +oS +Uy +gU +It +It +hr +gh +KW +qT +ky +OE +OE +OE +fY +qT +JY +oe +It +It +It +YW +Ve +uF +uF +uF +sO +sO +sO +RT +EU +vx +cY +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(147,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +lI +lI +lI +lI +lI +gj +ce +wD +aO +Jj +wD +ZL +ZL +LX +LX +JX +ww +hV +Dn +ON +LX +LX +Ms +CB +Pi +wO +op +Pi +Pi +KP +wO +wO +wO +wO +Pi +vM +lm +HC +HC +HC +HC +HC +HC +GR +ZL +ZL +ZL +ZL +ZL +ZL +ZL +SQ +ry +yX +MJ +jk +CA +Ii +SV +SV +jT +rZ +JR +yF +bu +bu +yO +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +Yu +Uj +It +It +hr +cS +yl +qT +nK +zD +An +zD +iU +qT +rd +kc +It +It +It +Uj +Uy +Uy +Uy +Rt +VD +sR +ph +mZ +ph +vP +Og +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(148,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +lI +lI +lI +lI +lI +JS +ce +ZL +wD +wP +wD +ZL +ZL +LX +tw +VH +qt +qt +qt +gk +cv +LX +wG +rg +Sg +wO +wO +Pi +aq +xG +SH +oW +Pi +Pi +Pi +dN +rg +SQ +SQ +SQ +SQ +SQ +SQ +QA +SQ +SQ +SQ +SQ +SQ +SQ +SQ +SQ +Lr +eU +TC +ks +iP +XP +BR +zR +jz +rZ +yc +yF +xs +bu +yO +VD +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +rN +Rt +Uj +zs +It +Me +cS +hs +qT +nK +zD +uK +zD +iU +qT +xv +kc +It +It +zs +Uj +Uy +cW +oS +uF +VD +EH +bR +bR +bR +Nm +Ei +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(149,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ce +ce +ce +ce +ce +ce +ce +ce +ZL +wD +Ma +wD +wD +wD +LX +Wb +TP +TD +kJ +kJ +Fn +hV +ND +cJ +Sv +Up +SH +ea +SH +fz +Pi +Pi +dH +SH +SH +SH +Xx +UV +mM +oY +Fm +jK +sw +Mw +Xi +gd +YS +sw +WC +Pn +mM +mM +LZ +gd +Iw +hI +Bh +PV +FV +TE +QU +pk +rZ +mQ +MO +sc +sc +bu +Fk +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +Uj +It +It +Me +gh +xl +qT +nK +zD +tv +zD +iU +qT +jL +oe +It +It +It +Uj +uF +uF +FF +uF +Bo +TB +bR +bR +bR +gO +Jd +Jd +Jd +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(150,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +wD +dG +il +il +il +tA +TD +qt +TD +zL +kJ +TD +TD +TD +TD +db +Wc +Pi +Pi +Pi +Pi +iw +Pi +Pi +Pi +Pi +wO +Qq +qe +gd +gd +mM +sw +sw +xP +RV +gd +gd +gd +gd +gd +gd +kE +sX +RP +Iw +vO +xw +Mq +BI +kF +em +uq +wE +RP +Ce +eE +oK +eE +mB +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +Uy +gU +It +It +Me +cS +wR +qT +nK +zD +zD +zD +iU +qT +in +kc +It +It +It +Uj +Uy +uF +Rt +Ve +VD +ZE +mg +bR +bR +uI +Jd +iJ +mF +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(151,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +Jz +Jz +Jz +Jz +Jz +Jz +Jz +ZL +wD +Na +wD +wD +wD +LX +PA +ti +uP +OZ +NX +Fi +hH +yy +zB +Sv +KJ +vX +vX +vX +tS +Pi +wH +Xb +GG +GG +vX +ku +UV +sw +JF +RM +Ar +ua +wW +cD +oY +RM +gd +Vd +gd +Bz +kE +LZ +gd +yX +Cp +Jy +Vh +LN +Am +HS +pk +rZ +RP +Sc +sc +sc +bu +Fk +It +xF +It +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +Uj +It +Jn +Fp +gh +in +qX +nK +zD +zD +zD +Be +qT +tQ +kc +It +It +It +Uj +uF +rN +oS +uF +Bo +YB +bR +bR +bR +KK +Uc +QR +uJ +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(152,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +bC +Zt +Zt +Zt +bC +fq +Jz +ZL +wD +Na +wD +ZL +ZL +LX +oV +qt +qt +TD +TD +Qy +Lt +LX +LX +rg +PM +wO +wO +Pi +Yv +eh +GG +aK +wO +wO +wO +bx +rg +SQ +SQ +SQ +SQ +SQ +SQ +xQ +SQ +SQ +SQ +SQ +SQ +SQ +SQ +SQ +Qi +yX +TC +wt +Ep +wA +Dr +hx +hP +rZ +Yb +yF +bu +bu +yO +VD +VD +Rg +VD +VD +ZL +VD +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Uy +Rt +YW +It +It +vR +ni +xE +Jk +Cc +zD +mq +zD +QG +qT +pM +kc +It +It +It +Uj +FF +uF +uF +uF +VD +Qp +bR +SL +bR +jv +Jd +HR +lX +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(153,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +Zt +hi +Ee +ew +Zt +LT +Jz +wD +yv +Na +wD +ZL +ZL +LX +LX +mX +pf +Mu +ji +Qy +LX +LX +ZL +rg +wO +Pi +DX +Pi +wO +KP +wO +wO +wO +dK +Pi +GT +rg +ZL +ZL +ZL +ZL +ZL +ML +GR +ZL +ZL +ZL +ZL +ZL +ZL +ZL +SQ +qR +Iw +Ns +bJ +pv +yi +Nd +nB +ll +wE +jI +yF +Ji +Ji +yO +ZL +ZL +ZL +ZL +VD +VD +VD +uF +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +XH +It +It +hr +gh +Fj +pG +zG +Ak +fc +Ak +lO +qT +gY +oe +It +It +It +XH +uF +rN +Uy +uF +VD +oD +lJ +uQ +vN +pP +Jd +Jd +Jd +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(154,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +SW +hi +zA +hi +iH +fh +HM +xe +MN +GZ +wD +ZL +ZL +ZL +LX +LX +LX +LX +LX +KI +LX +ZL +ZL +rg +xR +dy +tY +Mg +wO +KP +wO +wO +Pi +Pi +Pi +gv +rg +ZL +ZL +ZL +ZL +ZL +Ms +Tw +HC +sL +ZL +ZL +ZL +ZL +ZL +SQ +xu +CG +Yw +Yw +Yw +Yw +GC +GC +GC +Qg +UK +yF +yO +yO +yO +ZL +ZL +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ve +oS +Uj +It +It +hr +gh +kk +Dx +qT +qT +tu +qT +qT +Dx +mu +oe +It +It +It +Uj +FF +uF +Uy +Rt +VD +Jd +Jd +Jd +Jd +Jd +Jd +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(155,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +Zt +dk +EF +dk +Zt +St +Jz +wD +yv +wD +yv +ZL +ZL +ZL +QT +hG +OM +le +DH +sV +QT +ZL +ZL +rg +Vn +YG +OX +wO +wO +KP +wO +Pi +Pi +EL +ar +TA +TA +HC +HC +HC +HC +HC +Qb +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +SQ +lp +uf +eM +RP +cO +Dt +uj +cO +cO +cO +SQ +yF +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Uy +rN +NL +It +It +hr +gh +mU +Dx +Dx +Dx +UA +Dx +Dx +Dx +Iz +oe +It +It +It +Uj +oS +Rt +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(156,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +bC +Zt +Zt +Zt +bC +JB +Jz +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +kN +sV +VA +sa +fA +QT +ZL +ZL +rg +rg +UV +XW +eu +Pi +yu +Pi +Vl +Pi +rQ +UV +rg +ZL +ho +ho +ho +ho +ho +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +SQ +SQ +yF +SQ +SQ +lp +SQ +SQ +SQ +SQ +lp +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +Rt +Uj +It +It +hr +gh +rk +cU +iM +Pc +wv +lM +IK +sn +FD +oe +It +It +It +Uj +uF +uF +uF +oS +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(157,1,1) = {" +ZL +ZL +ZL +ZL +ZL +Jz +Jz +Jz +Jz +Jz +Jz +Jz +Jz +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +th +sV +Po +sV +sV +Iq +ZL +ZL +OU +rg +rg +rg +rg +rg +AX +rg +rg +rg +rg +rg +ho +ho +pN +GI +yB +OL +ho +ZL +ZL +ZL +kC +HC +HC +HC +HC +HC +HC +HC +HC +Uv +HC +HC +HC +HC +HC +HC +HC +HC +Qb +Pv +Pv +Pv +Pv +Pv +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +Uy +Uj +It +It +hr +gh +gh +gh +gh +gh +RJ +AD +AD +AD +AD +wp +It +It +It +dX +uF +rN +Uy +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(158,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +mC +uY +sV +yP +zO +QT +ZL +Ls +Ls +zn +zn +zn +zn +zn +SS +ve +ho +ZL +ho +mA +mA +mA +ho +hv +tT +qc +ho +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +iA +wy +ak +Pv +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +Uj +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +Uj +FF +uF +Rt +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(159,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +QT +QT +qv +QT +QT +QT +ZL +Ls +Ls +Ni +er +er +er +mA +Vg +HP +ho +ZL +ho +mA +mA +mA +ho +hv +tT +qc +ho +ZL +cu +vb +EZ +cu +cu +cu +cu +cu +cu +cu +cu +cu +vb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +kb +VK +Ij +Pv +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +oS +rN +lW +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +It +Ll +uF +uF +rN +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(160,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +QT +gT +ZW +Hz +QT +QT +ZL +Ls +Ls +Gy +Gy +Gy +Gy +XN +ef +AI +ho +ZL +ho +mA +mA +mA +ho +qd +tT +qc +ho +ZL +sZ +pc +QO +mb +HG +Ig +Zv +iO +Jm +Jm +AN +dd +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +FG +yW +FA +kL +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +rN +Uj +It +It +It +It +It +It +It +It +It +zs +It +It +It +It +It +It +It +Uj +rN +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(161,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +SG +du +sV +YT +DB +QT +ZL +ZL +ho +ho +ho +ho +pN +ZJ +ef +hf +ho +ZL +ho +mA +mA +mA +ho +hv +tT +ng +cu +cu +cu +dT +LS +nr +ii +ii +ii +Op +Op +bW +AJ +Lq +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +dw +mc +FK +Md +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +Rt +Kn +Zz +Zz +Nt +Zz +ym +Zz +Zz +xN +Zz +Vp +Zz +gn +Zz +zr +Zz +Zz +Zz +Ex +uF +Uy +oS +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(162,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +zK +oB +rJ +Uq +JP +QT +ZL +ZL +ho +mA +mA +mA +ho +ZJ +tT +hf +ho +ZL +ho +mA +mA +mA +ho +nI +tT +ng +cu +nq +gz +XC +he +Jr +gF +YJ +YJ +YJ +NN +aU +LB +gz +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +LU +qw +wV +JK +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +rN +uF +oS +uF +Rt +FF +uF +uF +Rt +rN +uF +Uy +uF +uF +rN +FF +Rt +oS +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(163,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +KQ +sN +Cl +BT +KS +QT +ZL +ZL +ho +mA +mA +mA +ho +ts +tT +qc +cC +ZL +ho +ho +ho +ho +pN +FN +tT +qc +vb +Vv +sv +RR +xo +EW +kT +pW +gz +fa +BD +lr +PU +Xr +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +PP +vu +Ut +Pv +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ve +Uy +uF +FF +uF +Rt +oS +Ve +rN +uF +uF +Uy +uF +uF +oS +uF +uF +Ve +uF +uF +Uy +uF +uF +oS +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(164,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +zK +QY +At +wb +JP +QT +ZL +ZL +ho +mA +mA +mA +ho +YX +mA +qc +ho +ZL +ho +mA +mA +mA +ho +hv +tT +EA +Af +zv +sv +YK +xo +Gh +bO +Tk +Qw +ZZ +iE +lr +JT +SF +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +ki +Lw +cx +Pv +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +VD +VD +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +Rw +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(165,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +wZ +rR +vq +QT +Qj +QT +ZL +ZL +ho +mA +mA +mA +ho +ts +ef +tJ +ho +ZL +ho +mA +mA +mA +ho +hv +vG +ng +vb +zv +sv +sv +eb +Gh +gI +VI +Bb +pW +gI +OD +Gh +su +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Pv +Pv +Pv +Pv +Pv +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(166,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +QT +yt +QT +QT +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +nI +mA +hf +ho +ZL +ho +mA +mA +mA +ho +qd +vG +ng +cu +zy +gz +zy +OD +KD +ii +ii +ii +ii +ii +BH +WS +sv +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(167,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +JU +QT +ZL +ZL +ZL +ZL +ZL +ho +ho +ho +ho +pN +nI +tT +qc +ho +ZL +ho +mA +mA +mA +ho +hv +vG +ng +cu +hb +cu +XL +LW +NN +NN +YJ +YJ +YJ +YJ +gu +gS +VY +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(168,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +QT +QT +QT +ZL +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +nI +tT +qc +ho +ZL +ho +mA +mA +mA +ho +hv +Id +ng +ho +ZL +sZ +ae +DY +gz +hO +gI +LG +gI +Zd +Xr +YK +Pw +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(169,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +nI +tT +qc +ho +ho +ho +ho +ho +ho +ho +hv +tT +qc +ho +ZL +cu +vb +DC +cu +cu +cu +FX +cu +cu +cu +cu +cu +vb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Ve +uF +uF +uF +Ve +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(170,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +tZ +vG +Gp +SU +SU +SU +SU +Te +Te +Te +Jc +tT +ng +ho +ZL +ZL +ZL +ZL +ZL +ZL +cu +IY +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(171,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +cc +Dj +vG +vG +vG +vG +vG +tT +Vg +tT +tT +tT +ng +ho +ZL +ZL +ZL +ZL +ZL +ZL +cu +cu +cu +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +uF +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(172,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +mA +mA +mA +ho +uH +bd +bd +bd +bd +bd +bd +bd +JD +JD +JD +JD +MT +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +TG +TG +TG +TG +TG +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(173,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +ho +ho +ho +ho +Mj +Ci +Mj +ho +ho +ho +ho +ho +ho +ho +ho +ho +ho +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Qd +Yx +Yx +Yx +Qd +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(174,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +xz +nC +nC +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Yx +Yx +Yx +Yx +Yx +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(175,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +nC +Eq +En +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +Qd +Yx +Yx +Yx +Qd +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(176,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +nC +nC +nC +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +uF +uF +CT +uF +uF +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(177,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ho +ho +ho +ho +ho +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +VD +VD +VD +VD +VD +VD +VD +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(178,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(179,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(180,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(181,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(182,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(183,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(184,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(185,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(186,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(187,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(188,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(189,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(190,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(191,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(192,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +kV +LL +LL +LL +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(193,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +kV +NE +fB +eL +Hv +LL +ML +sL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(194,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +kV +NE +cl +zw +nJ +Gu +Qb +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(195,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +kV +WU +Hf +nP +Mb +fM +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(196,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +LL +LL +LL +se +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +Dc +LL +cy +nP +jP +LL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(197,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +Xg +UZ +UZ +UZ +UZ +ZL +LL +YO +YO +YO +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +YO +Yg +nP +nP +AH +LL +ML +Qb +ZL +ZL +ZL +LL +LL +LL +LL +LL +ZL +ZL +ZL +LL +Dc +LL +LL +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(198,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +sH +ey +sW +UZ +ZL +LL +YO +YO +YO +LL +Dc +LL +LL +Iu +LL +Dc +LL +LL +LL +LL +LL +se +LL +LL +LL +LL +ZL +ZL +ZL +LL +YO +LL +kj +hX +ls +LL +Ms +LL +LL +LL +LL +se +vk +qA +jp +LL +LL +LL +LL +se +ud +qA +zc +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(199,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +Yk +NO +Rf +Ox +ZL +LL +YO +YO +YO +LL +RO +bk +bk +Xy +Yr +Yr +zc +LL +YO +YO +YO +LL +ud +Yr +zC +LL +ZL +ZL +ZL +LL +Pt +LL +LL +LL +LL +LL +Ms +LL +YO +YO +YO +LL +WI +oo +gW +Dc +YO +YO +YO +LL +WI +oo +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(200,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +oF +Bq +us +UZ +ZL +LL +YO +YO +YO +LL +Uh +lw +qa +HK +dE +dE +wT +LL +YO +YO +YO +LL +MM +lw +pn +LL +kV +kV +kV +LL +YO +LL +kV +kV +kV +kV +Yp +LL +YO +YO +YO +LL +uM +oo +gW +LL +YO +YO +YO +LL +MM +oo +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(201,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +us +UZ +ZL +LL +YO +YO +YO +LL +Hl +zt +zt +zt +fC +HK +JJ +LL +YO +YO +YO +LL +tn +cR +DU +Wi +Wi +Cx +qJ +Wi +Pm +Wi +qJ +Vw +Wi +Wi +zu +LL +YO +YO +YO +LL +uM +oo +CL +LL +YO +YO +YO +LL +uM +oo +Bc +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(202,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +bT +us +UZ +ZL +LL +LL +LL +LL +LL +LL +Dc +LL +Iu +gG +dE +YF +LL +YO +YO +YO +LL +Gw +dE +OY +zm +Aa +sp +WN +Aa +Aa +Aa +Aa +Cn +Kq +OP +kV +LL +YO +YO +YO +Dc +uM +oo +PG +LL +YO +YO +YO +LL +uM +oo +gW +Dc +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(203,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +Xg +Fc +bT +us +UZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +gG +dE +wT +LL +YO +YO +YO +Dc +NM +dE +YF +zm +QX +Xk +Xk +Nb +qz +BX +Xk +Xk +nw +zm +kV +LL +YO +YO +YO +LL +KG +lZ +gL +LL +YO +YO +YO +LL +uM +oo +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(204,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +bT +us +UZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +gG +dE +wT +Iu +LL +LL +LL +LL +vm +eo +YF +xI +Aa +Tb +BX +sp +Cz +Aa +ld +sk +sp +xI +LL +LL +LL +LL +LL +Iu +nV +lZ +PG +LL +LL +LL +LL +Iu +uM +zx +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(205,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +us +UZ +UZ +UZ +UZ +Xg +UZ +Ox +UZ +UZ +ZL +LL +gG +dE +Uf +eT +bk +bk +bk +CO +nF +dE +YF +zm +Aa +Nb +sp +bK +bK +bK +Aa +qz +sp +zm +vk +qA +EB +EB +VU +Zw +Ck +HK +IX +VU +Yr +Zw +qA +qA +oo +zx +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(206,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +Ox +jw +RH +Rf +UZ +iR +iR +iR +UZ +lt +Zb +Wu +UZ +ZL +LL +MM +oo +dE +IL +dE +dE +dE +xm +bE +xm +VX +jR +Aa +BX +qz +bK +SE +Dh +Cz +Nb +Aa +fG +Nk +oo +oo +dE +dE +lZ +lZ +lw +dE +qa +lZ +GF +dE +oo +HK +zx +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(207,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +Rf +UZ +iR +iR +iR +UZ +BM +NO +rs +UZ +ZL +LL +II +oo +bq +jn +io +io +ob +hD +On +dE +DV +zm +Aa +qz +sp +bK +bK +Pd +bK +qz +yd +zm +RW +ut +oT +hF +hF +io +hL +dE +bS +io +oT +jn +ut +hF +HK +oo +gL +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(208,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +bT +us +UZ +iR +iR +iR +UZ +Yk +RH +Rf +UZ +ZL +LL +II +oo +gL +Iu +LL +LL +LL +se +pI +dE +gL +xI +Aa +Xk +Nb +sp +Cz +bK +yd +AV +yd +xI +LL +LL +LL +LL +LL +fw +KG +lZ +zX +LL +LL +LL +LL +fw +uM +oo +gL +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(209,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +UZ +Yk +bT +us +UZ +iR +iR +iR +UZ +xO +RH +OW +UZ +ZL +LL +II +dE +wT +LL +YO +YO +YO +Dc +Gw +gV +gL +zm +qL +Xk +Xk +BX +ld +je +pq +AV +vA +zm +kV +LL +YO +YO +YO +LL +uM +oo +zX +LL +YO +YO +YO +LL +uM +oo +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(210,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +Oj +Yk +bT +Rf +Oj +iR +iR +iR +UZ +xO +bT +us +UZ +ZL +Iu +fJ +YP +YF +LL +YO +YO +YO +LL +bc +US +Xt +zm +yo +Sw +sp +Aa +sp +yd +yd +SA +FH +zm +kV +LL +YO +YO +YO +Dc +uM +oo +PG +LL +YO +YO +YO +LL +uM +oo +gW +Dc +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(211,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +xO +RH +Rf +UZ +UZ +Ox +UZ +Oj +pT +RH +Rf +Oj +ZL +LL +YA +dE +JJ +LL +YO +YO +YO +LL +pI +dE +JJ +zm +OP +Sq +ie +xI +jR +xI +PR +zm +zm +zm +kV +LL +YO +YO +YO +LL +uM +oo +CL +LL +YO +YO +YO +LL +uM +oo +jE +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(212,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +xO +RH +hw +UZ +Zb +Zb +Zb +Zb +AY +RH +Rf +Ox +ZL +LL +eP +zt +dC +LL +YO +YO +YO +LL +pI +bq +mn +LL +ZL +ZL +UZ +pJ +ip +Wu +UZ +ZL +ZL +ZL +ZL +LL +YO +YO +YO +LL +uM +oo +zX +LL +YO +YO +YO +LL +MM +oo +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(213,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +wI +Yk +RH +cH +oi +RH +RH +RH +RH +RH +RH +Rf +UZ +UZ +UZ +Ox +Xg +LL +LL +YO +YO +YO +LL +lu +dC +UZ +UZ +UZ +UZ +Xg +DL +iu +MC +UZ +ZL +ZL +ZL +ZL +LL +YO +YO +YO +LL +WI +oo +gW +Dc +YO +YO +YO +LL +WI +HK +gW +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(214,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +im +UM +Ss +UZ +Hq +Hq +Hq +SN +SN +Hq +Aj +UZ +iR +iR +iR +UZ +Wp +LL +LL +LL +LL +LL +QE +LL +UZ +iR +iR +iR +UZ +gb +RH +MC +UZ +ZL +ZL +ZL +ZL +LL +LL +LL +LL +LL +RW +hF +dC +LL +LL +LL +LL +LL +pa +hF +ms +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(215,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +ce +Ks +ce +ce +ce +ce +ce +ce +UZ +UZ +UZ +UZ +iR +iR +iR +UZ +QC +Ot +sW +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +zo +iu +MC +UZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +LL +LL +LL +LL +LL +ZL +ZL +ZL +LL +Dc +LL +LL +LL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(216,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +ce +ce +ce +ce +ce +ce +Uz +wq +ZO +HO +CD +xY +Yz +kO +ce +ZX +iu +hc +UZ +iR +iR +iR +UZ +gb +DP +us +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +xO +iu +xk +Ox +ZL +ZL +ML +HC +HC +HC +sL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(217,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +CN +Cu +aG +UT +wh +da +yQ +yQ +PB +PB +cV +Yt +gi +ZM +ce +lH +iu +Ow +UZ +iR +iR +iR +Ox +DL +DP +rU +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +DL +iu +us +UZ +ZL +ZL +Ms +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(218,1,1) = {" +ZL +ZL +ce +ce +ce +ce +ce +ce +ce +ce +ce +dU +KX +yg +am +kO +fl +Zx +ce +Js +Zx +OT +am +dS +eN +ce +Zc +iu +hc +UZ +iR +iR +iR +UZ +Yk +DP +rU +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +DL +iu +Rf +UZ +UZ +lQ +be +lQ +UZ +UZ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(219,1,1) = {" +ZL +ZL +ce +lI +lI +lI +lI +lI +zY +Qc +Rx +iG +ID +Ui +am +am +UP +WW +Nl +Ze +pF +oA +ZO +nS +TY +ce +UZ +PW +UZ +UZ +UZ +UZ +UZ +UZ +Xw +iu +rU +Oj +UZ +UZ +be +Ox +UZ +UZ +UZ +UZ +UZ +xO +DA +Aj +Oj +ez +wK +RC +wK +nG +lQ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(220,1,1) = {" +ZL +ZL +ce +lI +lI +lI +lI +lI +gj +Qc +Ho +gD +am +kM +gD +mG +re +TZ +Ip +Fy +dr +uA +JH +Mk +yG +ce +ov +ip +aP +Ot +Ot +dv +dv +dv +ei +iu +IC +rq +VB +Zb +fs +VB +VB +VB +Ie +Ie +Ie +ei +Gt +UZ +UZ +ko +Wy +hT +Kc +Eu +UZ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(221,1,1) = {" +ZL +ZL +ce +iC +lI +lI +lI +lI +Gj +CC +gD +gD +am +aS +ZO +WK +bj +Hh +Xo +Nu +UQ +qb +HQ +Xv +ZO +Ks +GY +bT +DP +DP +bT +DP +DP +DP +DP +qM +hA +RH +iu +iu +iu +iu +iu +iu +iu +iu +iu +iu +om +Ej +Dm +nE +LC +ZU +HU +NV +Rs +GR +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(222,1,1) = {" +ZL +ZL +ce +lI +lI +lI +lI +lI +gj +Qc +AC +xZ +gD +md +Zx +uC +re +VL +VS +cf +BE +Xm +Xd +sm +ZO +ce +cI +SN +SN +OJ +OJ +OJ +OJ +pZ +kn +hc +QP +cj +cj +pZ +RS +Jq +Jq +Jq +Jq +pZ +pZ +kr +ml +yS +UZ +ko +EQ +va +ES +Eu +UZ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(223,1,1) = {" +ZL +ZL +ce +lI +lI +lI +lI +lI +JS +Qc +Rx +az +vS +Th +am +am +Rb +al +Od +FL +MQ +ue +kO +Ib +sA +ce +UZ +Ox +UZ +UZ +UZ +UZ +UZ +Xg +zo +hc +us +Oj +UZ +Ox +be +UZ +UZ +UZ +UZ +UZ +Xg +Yk +Sl +xc +Oj +NH +TS +sP +wl +Rk +lQ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(224,1,1) = {" +ZL +ZL +ce +ce +ce +ce +ce +ce +ce +ce +ce +dU +is +hm +am +kO +am +Zx +FM +al +Zx +OT +Zx +rL +Jt +ce +vg +vg +vg +UZ +iR +iR +iR +UZ +zo +iu +rU +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +Yk +DP +us +UZ +UZ +lQ +be +lQ +UZ +UZ +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(225,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +gC +VJ +wm +PD +tV +Yq +BK +BK +Ov +fe +fe +fe +WD +OQ +uk +TI +TI +DG +UZ +iR +iR +iR +UZ +Yk +DP +rU +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +Ox +DL +iu +us +UZ +ZL +ZL +Ms +ZL +ZL +ZL +Ms +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(226,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +ce +ce +ce +uU +ce +ce +Uz +Jv +ZO +TX +zZ +pU +lN +Xu +ce +vg +vg +cZ +UZ +iR +iR +iR +UZ +gb +DP +rU +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +DL +iu +Rf +UZ +ZL +ZL +Tw +HC +HC +HC +Qb +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(227,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ce +ce +GU +ce +ce +ce +ce +ce +ce +UZ +UZ +be +UZ +iR +iR +iR +Ox +NW +OJ +HI +UZ +ZL +ZL +Ms +ZL +UZ +iR +iR +iR +UZ +DL +iu +Rf +UZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +nt +nt +nt +jo +nt +ZL +ZL +ZL +nt +nt +jo +nt +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(228,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +fI +ip +Rn +UZ +sH +Zb +Zb +Zb +jC +Zb +nQ +UZ +iR +iR +iR +UZ +Ft +nt +nt +nt +nt +ao +NS +nt +UZ +iR +iR +iR +UZ +Lu +iu +xk +UZ +ZL +ZL +ZL +ZL +nt +nt +nt +nt +ao +qG +Lf +zj +nt +nt +nt +nt +ao +tE +yT +Oo +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(229,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +wI +Yk +bT +ST +oi +GY +RH +RH +RH +RH +RH +nc +UZ +UZ +UZ +UZ +UZ +nt +nt +qF +qF +qF +nt +Au +mt +UZ +UZ +UZ +UZ +UZ +Yk +iu +MC +UZ +ZL +ZL +ZL +ZL +nt +qF +qF +qF +nt +iy +OF +BS +nt +qF +qF +qF +nt +Tu +WV +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(230,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +Yk +bT +pK +UZ +QZ +Hq +SN +SN +WG +RH +Is +aZ +ZL +nt +XR +Ny +mt +nt +qF +qF +qF +nt +rj +JC +Ld +nt +ZL +ZL +UZ +JQ +kx +Dv +UZ +ZL +ZL +ZL +ZL +nt +qF +qF +qF +nt +ME +OF +et +nt +qF +qF +qF +nt +Oe +WV +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(231,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +xO +RH +Rf +UZ +UZ +UZ +UZ +sD +Fe +RH +Rf +ql +ZL +nt +do +Il +LO +nt +qF +qF +qF +nt +ct +Nc +PC +Se +Se +mN +Se +ih +DZ +ih +Se +Se +oQ +Se +fk +nt +qF +qF +qF +jo +oN +OF +Lc +nt +qF +qF +qF +nt +DM +OF +GD +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(232,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +xO +bT +Rf +UZ +iR +iR +iR +UZ +Yk +RH +Rf +be +ZL +nt +cw +Il +jY +nt +qF +qF +qF +nt +Yl +ka +Zy +Ly +kX +Vu +wY +Vu +Vu +Vu +Vu +bb +Yo +Se +fk +nt +qF +qF +qF +nt +oN +OF +BS +nt +qF +qF +qF +nt +DM +OF +DF +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(233,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +Xg +oF +bT +Rf +UZ +iR +iR +iR +UZ +Yk +RH +Rf +be +ZL +jo +IH +Il +lb +nt +qF +qF +qF +jo +oy +Il +SM +Se +hB +Re +Cq +tW +nX +vT +jx +WT +YL +Se +fk +nt +qF +qF +qF +nt +Oe +OF +BS +nt +qF +qF +qF +nt +DM +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(234,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +Rf +Ox +iR +iR +iR +UZ +xO +bT +MA +be +ZL +nt +IH +Il +lb +GW +nt +nt +nt +nt +GE +Nc +SM +ih +zp +To +DQ +Nn +FJ +Nn +tj +dI +tj +ih +nt +nt +nt +nt +nt +GW +Oe +OF +Ug +nt +nt +nt +jo +GW +DM +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(235,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +Xa +RH +us +UZ +iR +iR +iR +UZ +Fc +lT +us +be +ZL +nt +cw +Il +JC +ys +si +HX +HX +HX +aH +aM +DF +Se +Vu +Hr +Nn +Nn +Nn +Nn +Vu +hE +mR +Se +RI +Lf +Lf +ru +xT +iI +ps +tr +yb +Lf +Lf +Lf +xT +xT +bm +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(236,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +pK +UZ +iR +iR +iR +UZ +JQ +Hq +Aj +PN +HC +sB +Xh +gB +Nc +Il +HV +Nc +sE +od +dR +Il +ZK +DZ +Nn +ic +ex +Nn +QF +qg +DQ +KY +Nn +ds +pY +Il +Nf +Il +aM +WV +aM +mY +Nf +iK +Il +Sh +OF +WV +OF +Oq +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(237,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +Ox +xO +RH +us +UZ +UZ +UZ +UZ +UZ +UZ +UZ +UZ +UZ +ZL +nt +cw +Il +Rh +WJ +CI +xx +iB +Gv +xW +aM +RA +Se +Nn +rE +pl +jq +Nn +Vu +Vu +ZH +Nn +Se +YZ +un +Eo +un +iB +iB +Jl +Il +nW +iB +un +un +iz +Gv +fm +Oq +BS +jo +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(238,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +us +UZ +ZL +nt +nt +nt +nt +ao +ZL +ZL +ZL +nt +cw +Nf +RA +MF +Gx +Ae +Gx +Rr +cw +aM +jY +ih +Nn +To +mR +pl +DQ +Nn +ex +Zr +jq +ih +nt +nt +jo +nt +nt +RU +ME +Il +et +nt +nt +nt +nt +RU +DM +WV +DF +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(239,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +Xg +xO +bT +bF +UZ +ZL +nt +qF +qF +qF +nt +ZL +ZL +ZL +nt +Mo +Il +RA +Gx +qF +qF +qF +Gx +JL +Il +DF +Se +hB +XO +ai +bB +sT +KZ +ai +Jo +bo +Se +fk +nt +qF +qF +qF +nt +DM +OF +et +nt +qF +qF +qF +nt +Hd +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(240,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +Yk +RH +us +UZ +ZL +nt +qF +qF +qF +nt +nt +nt +nt +GW +Mo +Il +DF +Gx +qF +qF +qF +Gx +JL +Il +co +Se +Vu +nY +Nn +Nn +jq +pl +Vu +nY +eG +oQ +fk +nt +qF +qF +qF +nt +DM +OF +BS +nt +qF +qF +qF +nt +DM +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(241,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +xO +RH +Rf +UZ +ZL +nt +qF +qF +qF +nt +xC +Ny +Ny +ru +Ry +Il +PJ +Gx +qF +qF +qF +Gx +JL +mY +LO +Se +Se +id +ih +Se +kp +Se +ih +Se +Se +Se +fk +nt +qF +qF +qF +nt +oN +OF +GD +jo +qF +qF +qF +nt +DM +OF +GD +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(242,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +oc +JG +Rf +UZ +ZL +nt +qF +qF +qF +nt +vD +mY +Il +Il +aM +Nf +lb +Gx +qF +qF +qF +Gx +cw +Il +jY +nt +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +nt +qF +qF +qF +nt +oN +OF +Ug +nt +qF +qF +qF +nt +DM +OF +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(243,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +Yk +RH +Rf +Ox +ZL +nt +qF +qF +qF +nt +GK +qK +CI +Bs +CI +iB +SP +Gx +qF +qF +qF +Gx +YZ +CI +tB +jo +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +nt +qF +qF +qF +nt +iy +OF +BS +nt +qF +qF +qF +nt +Tu +WV +BS +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(244,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +iR +iR +iR +UZ +JQ +Hq +Dv +UZ +ZL +nt +nt +nt +nt +nt +nt +nt +nt +GW +jo +nt +nt +nt +nt +nt +nt +nt +nt +nt +nt +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +nt +nt +nt +nt +nt +Dq +iz +SP +nt +nt +nt +nt +nt +Dq +iz +Ag +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(245,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +UZ +UZ +UZ +UZ +UZ +Oj +UZ +Oj +UZ +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +nt +jo +nt +nt +nt +ZL +ZL +ZL +nt +nt +jo +nt +nt +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(246,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(247,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(248,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(249,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(250,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(251,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(252,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(253,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(254,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} +(255,1,1) = {" +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +ZL +"} diff --git a/_maps/shuttles/district4_elevator.dmm b/_maps/shuttles/district4_elevator.dmm new file mode 100644 index 000000000000..84c66b90ca4a --- /dev/null +++ b/_maps/shuttles/district4_elevator.dmm @@ -0,0 +1,109 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/docking_port/mobile{ + id = "enkephalin_rush"; + port_direction = 2; + dwidth = 2; + height = 4; + width = 4 + }, +/obj/machinery/door/airlock/public/glass{ + normalspeed = 0 + }, +/turf/open/floor/pod/light, +/area/shuttle/mining) +"c" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/pod, +/area/shuttle/mining) +"e" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/pod, +/area/shuttle/mining) +"g" = ( +/obj/machinery/door/airlock/public/glass{ + normalspeed = 0 + }, +/turf/open/floor/pod/light, +/area/shuttle/mining) +"i" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/pod, +/area/shuttle/mining) +"v" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/agent, +/turf/open/floor/pod, +/area/shuttle/mining) +"w" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/mining) +"C" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/mining) +"E" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/machinery/computer/shuttle/mining{ + name = "elevator Console"; + possible_destinations = "ER1;ER2"; + resistance_flags = 115; + shuttleId = "enkephalin_rush"; + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/pod, +/area/shuttle/mining) +"F" = ( +/turf/open/floor/pod, +/area/shuttle/mining) +"U" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/pod/light, +/area/shuttle/mining) + +(1,1,1) = {" +w +C +C +C +w +"} +(2,1,1) = {" +C +v +E +e +C +"} +(3,1,1) = {" +g +F +U +e +a +"} +(4,1,1) = {" +C +i +c +c +C +"} +(5,1,1) = {" +w +C +C +C +w +"} diff --git a/code/controllers/subsystem/maptype.dm b/code/controllers/subsystem/maptype.dm index bcdf86aabd82..bcb47d93771e 100644 --- a/code/controllers/subsystem/maptype.dm +++ b/code/controllers/subsystem/maptype.dm @@ -30,7 +30,7 @@ SUBSYSTEM_DEF(maptype) var/list/spacemaps = list("skeld") //This is for maps where crafting is enabled. - var/list/craftingmaps = list("skeld", "limbus_labs") + var/list/craftingmaps = list("skeld", "limbus_labs", "enkephalin_rush") //Maps that give no fear. Everyone cannot work as is fear immune. var/list/nofear = list("limbus_labs") @@ -39,6 +39,7 @@ SUBSYSTEM_DEF(maptype) var/list/departments = list("Command","Security","Service") + /datum/controller/subsystem/maptype/Initialize() ..() @@ -77,3 +78,6 @@ SUBSYSTEM_DEF(maptype) GLOB.rcorp_objective = "payload_rcorp" if(5) GLOB.rcorp_objective = "payload_abno" + if("enkephalin_rush") + SSabnormality_queue.can_fire = FALSE + SSabnormality_queue.next_abno_spawn_time = INFINITY diff --git a/code/datums/abnormality/_ego_datum/teth.dm b/code/datums/abnormality/_ego_datum/teth.dm index 0989aab7cf0d..a0acb1ab80cb 100644 --- a/code/datums/abnormality/_ego_datum/teth.dm +++ b/code/datums/abnormality/_ego_datum/teth.dm @@ -101,7 +101,7 @@ // Forsaken Murderer - Regret /datum/ego_datum/weapon/regret - item_path = /obj/item/ego_weapon/regret + item_path = /obj/item/ego_weapon/mining/regret cost = 20 /datum/ego_datum/armor/regret diff --git a/code/datums/abnormality/_ego_datum/waw.dm b/code/datums/abnormality/_ego_datum/waw.dm index ac49651affd4..387b258e30a6 100644 --- a/code/datums/abnormality/_ego_datum/waw.dm +++ b/code/datums/abnormality/_ego_datum/waw.dm @@ -390,7 +390,7 @@ cost = 50 /datum/ego_datum/weapon/rimeshank - item_path = /obj/item/ego_weapon/rimeshank + item_path = /obj/item/ego_weapon/mining/rimeshank cost = 50 // Parasite Tree - Hypocrisy diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index 602574238de6..87523ba726e6 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -206,6 +206,10 @@ port_id = "deltamain" can_be_bought = FALSE +/datum/map_template/shuttle/district4/elevator + port_id = "district4" + can_be_bought = FALSE + // Shuttles start here: /datum/map_template/shuttle/manager/elevator @@ -244,6 +248,14 @@ suffix = "elevator" name = "deltamain elevator" +/datum/map_template/shuttle/manager_broken/elevator//enkephalin rush + suffix = "elevator" + name = "rustic manager elevator" + +/datum/map_template/shuttle/district4/elevator + suffix = "elevator" + name = "district 4 elevator" + /datum/map_template/shuttle/emergency/backup suffix = "backup" name = "Backup Shuttle" diff --git a/code/game/machinery/regenerator.dm b/code/game/machinery/regenerator.dm index 9736136fca1c..2b0ab05d6fe8 100644 --- a/code/game/machinery/regenerator.dm +++ b/code/game/machinery/regenerator.dm @@ -150,3 +150,22 @@ /obj/machinery/regenerator/tutorial/Initialize() . = ..() GLOB.lobotomy_devices -= src + +/obj/broken_regenerator + name = "broken regenerator" + desc = "A machine that could slowly restore the health and sanity of employees in the area. It needs some serious repairs." + icon = 'ModularTegustation/Teguicons/32x32.dmi' + icon_state = "regen_broken" + density = TRUE + resistance_flags = INDESTRUCTIBLE + layer = ABOVE_OBJ_LAYER //So people dont stand ontop of it when above it + +/obj/broken_regenerator/examine(mob/user) + . = ..() + . += span_notice("A Regenerator Augmentation Kit from Safety could be used to fix this.") + +/obj/broken_regenerator/attackby(obj/item/O, mob/user, params) + if(istype(O, /obj/item/safety_kit)) + qdel(O) + new /obj/machinery/regenerator(get_turf(src)) + qdel(src) diff --git a/code/game/objects/effects/spawners/scatter.dm b/code/game/objects/effects/spawners/scatter.dm index 1318a0943b5a..f1a6bd39a3f1 100644 --- a/code/game/objects/effects/spawners/scatter.dm +++ b/code/game/objects/effects/spawners/scatter.dm @@ -7,6 +7,12 @@ ///This weighted list acts as the loot table for the spawner var/list/loot_table +/obj/effect/spawner/scatter/New(loc, spawns, range) + if(max_spawns || radius) + max_spawns = spawns + radius = range + ..() + /obj/effect/spawner/scatter/Initialize() ..() if(!length(loot_table)) diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 14a3705859e3..368e486d35ff 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -359,6 +359,7 @@ desc = "A mining lantern." light_range = 6 // luminosity when on light_system = MOVABLE_LIGHT + custom_price = 300 /obj/item/flashlight/lantern/heirloom_moth name = "old lantern" diff --git a/code/game/turfs/closed/_closed.dm b/code/game/turfs/closed/_closed.dm index 5abb6dbf5b52..df9d71fa7ac2 100644 --- a/code/game/turfs/closed/_closed.dm +++ b/code/game/turfs/closed/_closed.dm @@ -162,6 +162,8 @@ to_chat(user, "The poster falls down!") D.roll_and_drop(get_turf(user)) +/turf/closed/indestructible/reinforced/old + icon = 'icons/turf/walls/facility_old.dmi' /turf/closed/indestructible/riveted icon = 'icons/turf/walls/riveted.dmi' diff --git a/code/game/turfs/open/distortion.dm b/code/game/turfs/open/distortion.dm new file mode 100644 index 000000000000..ad3ef4405836 --- /dev/null +++ b/code/game/turfs/open/distortion.dm @@ -0,0 +1,5 @@ +/turf/open/floor/distortion + icon_state = "damaged1" + +/turf/open/floor/distortion/another_day//another day at work ruin + icon_state = "another_day"//TODO: make this look more like a quilt diff --git a/code/modules/mining/equipment/mining_tools.dm b/code/modules/mining/equipment/mining_tools.dm index c564b647cab0..2427c27d6f32 100644 --- a/code/modules/mining/equipment/mining_tools.dm +++ b/code/modules/mining/equipment/mining_tools.dm @@ -18,6 +18,7 @@ usesound = list('sound/effects/picaxe1.ogg', 'sound/effects/picaxe2.ogg', 'sound/effects/picaxe3.ogg') attack_verb_continuous = list("hits", "pierces", "slices", "attacks") attack_verb_simple = list("hit", "pierce", "slice", "attack") + custom_price = 25 /obj/item/pickaxe/suicide_act(mob/living/user) user.visible_message(span_suicide("[user] begins digging into [user.p_their()] chest! It looks like [user.p_theyre()] trying to commit suicide!")) @@ -33,6 +34,7 @@ attack_verb_simple = list("ineffectively hit") force = 1 throwforce = 1 + custom_price = 1 /obj/item/pickaxe/mini name = "compact pickaxe" @@ -44,6 +46,7 @@ slot_flags = ITEM_SLOT_BELT w_class = WEIGHT_CLASS_NORMAL custom_materials = list(/datum/material/iron=1000) + custom_price = 100 /obj/item/pickaxe/silver name = "silver-plated pickaxe" @@ -53,6 +56,7 @@ toolspeed = 0.5 //mines faster than a normal pickaxe, bought from mining vendor desc = "A silver-plated pickaxe that mines slightly faster than standard-issue." force = 17 + custom_price = 650 /obj/item/pickaxe/diamond name = "diamond-tipped pickaxe" @@ -62,6 +66,7 @@ toolspeed = 0.3 desc = "A pickaxe with a diamond pick head. Extremely robust at cracking rock walls and digging up dirt." force = 19 + custom_price = 1000 /obj/item/pickaxe/drill name = "mining drill" @@ -73,6 +78,7 @@ usesound = 'sound/weapons/drill.ogg' hitsound = 'sound/weapons/drill.ogg' desc = "An electric mining drill for the especially scrawny." + custom_price = 500 /obj/item/pickaxe/drill/cyborg name = "cyborg mining drill" @@ -88,6 +94,7 @@ icon_state = "diamonddrill" toolspeed = 0.2 desc = "Yours is the drill that will pierce the heavens!" + custom_price = 2500 /obj/item/pickaxe/drill/cyborg/diamond //This is the BORG version! name = "diamond-tipped cyborg mining drill" //To inherit the NODROP_1 flag, and easier to change borg specific drill mechanics. @@ -103,6 +110,7 @@ usesound = 'sound/weapons/sonic_jackhammer.ogg' hitsound = 'sound/weapons/sonic_jackhammer.ogg' desc = "Cracks rocks with sonic blasts." + custom_price = 5000 /obj/item/pickaxe/improvised name = "improvised pickaxe" diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index c0fc4de6dd17..2ca796ec7f73 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -135,6 +135,7 @@ proximity_monitor = new(src, 1) var/list/allowed_materials = list(/datum/material/iron, /datum/material/glass, + /datum/material/plastic, /datum/material/silver, /datum/material/gold, /datum/material/diamond, diff --git a/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/_egodatum.dm b/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/_egodatum.dm index d6fcd8cbab3a..df251f1dd2dc 100644 --- a/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/_egodatum.dm +++ b/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/_egodatum.dm @@ -69,11 +69,10 @@ cost = 50 // Tools of the Forgotten Farm - Furrows (Enkephalin Rush) -/**Enable this when the mining subtype is created. /datum/ego_datum/weapon/furrows - item_path = /obj/item/ego_weapon/furrows + item_path = /obj/item/ego_weapon/mining/furrows cost = 50 - +/** //Missing sprites /datum/ego_datum/armor/furrows item_path = /obj/item/clothing/suit/armor/ego_gear/waw/furrows diff --git a/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/ego_weapons.dm b/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/ego_weapons.dm index 7656c33438fd..8e27aac23256 100644 --- a/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/ego_weapons.dm +++ b/code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/community/ego_weapons.dm @@ -287,7 +287,7 @@ /obj/item/ego_weapon/sunspit/get_clamped_volume() return 40 -/obj/item/ego_weapon/furrows//TODO: function as a mining tool. Add to mining subtype PR +/obj/item/ego_weapon/mining/furrows name = "furrows" desc = "A rusty pick-mattock caked in mud. Its texture is heavily decayed, as if it had been buried for a long time." icon_state = "furrows" @@ -299,6 +299,7 @@ attack_verb_continuous = list("bashes", "jabs", "picks", "impales", "spikes") attack_verb_simple = list("bash", "jab", "pick", "impale", "spike") hitsound = 'sound/weapons/fixer/generic/gen1.ogg' + toolspeed = 0.1 attribute_requirements = list( FORTITUDE_ATTRIBUTE = 60, JUSTICE_ATTRIBUTE = 60 diff --git a/code/modules/mob/living/simple_animal/abnormality/abno_cores.dm b/code/modules/mob/living/simple_animal/abnormality/abno_cores.dm index ce9cc2fe30be..c15af0ce19f9 100644 --- a/code/modules/mob/living/simple_animal/abnormality/abno_cores.dm +++ b/code/modules/mob/living/simple_animal/abnormality/abno_cores.dm @@ -40,6 +40,21 @@ usr.put_in_hands(holochip) qdel(src) return + var/obj/machinery/abno_core_seller/P = over_object//item selling machine + if(istype(P))//This code requires some serious cleanup. + var/response = alert(usr,"Will you sell [src]?","This cannot be reversed.","Yes","No") + if(response == "Yes" && do_after(usr, 10, src)) + if(!contained_abno || !threat_level)//is there no risk level or abnormality inside? + qdel(src) + return + var/payment_amt = threat_level * threat_level * 50//this is awarded to every player. Should be lower than the regular fixer selling machine + for(var/mob/living/carbon/human/person in GLOB.mob_living_list) + var/obj/structure/closet/supplypod/centcompod/pod = new() + new /obj/item/holochip(pod, payment_amt) + pod.explosionSize = list(0,0,0,0) + to_chat(person, "An abnormality core has been shipped to HQ. All employees on site earn a bonus!") + new /obj/effect/pod_landingzone(get_turf(person), pod) + qdel(src) /obj/structure/abno_core/proc/Extract() if(!LAZYLEN(GLOB.abnormality_room_spawners) || !contained_abno) @@ -51,6 +66,7 @@ for(var/mob/living/carbon/human/H in livinginview(1, src)) to_chat(H, span_boldwarning("This abnormality is already contained!")) return FALSE//If the abnormality already exists in a cell, the proc returns early here. + anchored = TRUE icon_state = "" animate(src, alpha = 1,pixel_x = -16, pixel_z = 32, time = 3 SECONDS) playsound(src,'ModularTegustation/Tegusounds/abno_extract.ogg', 50, 5) @@ -72,4 +88,11 @@ desc = "A device used to transfer abnormalities into containment cells." icon = 'icons/obj/machines/sleeper.dmi' icon_state = "sleeper" - density = FALSE + density = TRUE + +/obj/machinery/abno_core_seller + name = "abnormality core telepad" + desc = "A device using W corp technology to bring abnormality cores to the company headquarters." + icon = 'icons/obj/machines/telecomms.dmi' + icon_state = "broadcaster" + density = TRUE diff --git a/config/maps.txt b/config/maps.txt index 4618c1ed6102..0e603083dfb9 100644 --- a/config/maps.txt +++ b/config/maps.txt @@ -91,6 +91,12 @@ endmap map lclabs endmap +map district_4 + voteable + minplayers 10 + maxplayers 60 +endmap + map skeld endmap diff --git a/icons/turf/floors.dmi b/icons/turf/floors.dmi index 77515e26904d..7afeeca2a45f 100644 Binary files a/icons/turf/floors.dmi and b/icons/turf/floors.dmi differ diff --git a/icons/turf/walls/facility_old.dmi b/icons/turf/walls/facility_old.dmi new file mode 100644 index 000000000000..77cfd605c968 Binary files /dev/null and b/icons/turf/walls/facility_old.dmi differ diff --git a/lobotomy-corp13.dme b/lobotomy-corp13.dme index a7eb33437f05..419087218602 100644 --- a/lobotomy-corp13.dme +++ b/lobotomy-corp13.dme @@ -1526,6 +1526,7 @@ #include "code\game\turfs\open\_open.dm" #include "code\game\turfs\open\chasm.dm" #include "code\game\turfs\open\dirtystation.dm" +#include "code\game\turfs\open\distortion.dm" #include "code\game\turfs\open\floor.dm" #include "code\game\turfs\open\glass.dm" #include "code\game\turfs\open\lava.dm" @@ -4035,6 +4036,7 @@ #include "ModularTegustation\ego_weapons\melee\non_abnormality\weak_edits\rcorp.dm" #include "ModularTegustation\ego_weapons\melee\subtype\charge.dm" #include "ModularTegustation\ego_weapons\melee\subtype\lance.dm" +#include "ModularTegustation\ego_weapons\melee\subtype\mining.dm" #include "ModularTegustation\ego_weapons\melee\subtype\shield.dm" #include "ModularTegustation\ego_weapons\melee\subtype\wielded.dm" #include "ModularTegustation\ego_weapons\ranged\_autofire_hooks.dm" @@ -4156,6 +4158,14 @@ #include "ModularTegustation\tegu_items\backstreets\random_rooms\small\west.dm" #include "ModularTegustation\tegu_items\disciplinary\_disciplinary.dm" #include "ModularTegustation\tegu_items\disciplinary\egoshards.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\enkr_corpses.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\enkr_machines.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\enkr_spawners.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\enkr_treasure.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\landmarks.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\ore_turfs.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\ores.dm" +#include "ModularTegustation\tegu_items\enkephalin_rush\vending.dm" #include "ModularTegustation\tegu_items\extraction\_extraction.dm" #include "ModularTegustation\tegu_items\extraction\egodelivery.dm" #include "ModularTegustation\tegu_items\extraction\egosurgery.dm"