diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index c888c78180..c1bb6e478c 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -39,6 +39,7 @@ block( \ #define MAP_RUNTIME "USS Runtime" #define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" // Highpop Only #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map +#define MAP_LV624_OUTPOST_FURIDAMU "LV624 Outpost Furidamu" //Jungle Swamp, CLF Colony, Ruined UA Bunker, CLF survivors #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define MAP_DERELICT_ALMAYER "Derelict Almayer" diff --git a/code/datums/weather/weather_events/lv624_outpost_furidamu.dm b/code/datums/weather/weather_events/lv624_outpost_furidamu.dm new file mode 100644 index 0000000000..bf79085df5 --- /dev/null +++ b/code/datums/weather/weather_events/lv624_outpost_furidamu.dm @@ -0,0 +1,3 @@ +/datum/weather_event/light_rain/lv624_outpost_furidamu + length = 3 MINUTES + lightning_chance = 4 diff --git a/code/datums/weather/weather_map_holders/lv624_outpost_furidamu.dm b/code/datums/weather/weather_map_holders/lv624_outpost_furidamu.dm new file mode 100644 index 0000000000..660405b268 --- /dev/null +++ b/code/datums/weather/weather_map_holders/lv624_outpost_furidamu.dm @@ -0,0 +1,19 @@ +/datum/weather_ss_map_holder/lv624_outpost_furidamu + name = "LV624_Outpost_Furidamu Map Holder" + + warn_time = 1 MINUTES + min_time_between_events = 30 MINUTES + min_time_between_checks = 0 + min_check_variance = 0 + + no_weather_turf_icon_state = "strata_clearsky" + + potential_weather_events = list( + /datum/weather_event/light_rain/lv624_outpost_furidamu + ) + +/datum/weather_ss_map_holder/lv624_outpost_furidamu/should_affect_area(area/A) + return !CEILING_IS_PROTECTED(A.ceiling, CEILING_GLASS) + +/datum/weather_ss_map_holder/lv624_outpost_furidamu/should_start_event() + return TRUE diff --git a/code/game/area/LV624_Outpost_Furidamu.dm b/code/game/area/LV624_Outpost_Furidamu.dm new file mode 100644 index 0000000000..7bb23f07b2 --- /dev/null +++ b/code/game/area/LV624_Outpost_Furidamu.dm @@ -0,0 +1,261 @@ +//LV624_Outpost_Furidamu AREAS--------------------------------------// + +/area/LV624_Outpost_Furidamu + icon_state = "lv-626" + can_build_special = TRUE + powernet_name = "ground" + minimap_color = MINIMAP_AREA_COLONY + +//parent types + +/area/LV624_Outpost_Furidamu/indoors + name = "LV624_Outpost_Furidamu - Indoors" + icon_state = "blue" //because this is a PARENT TYPE and you should not be using it and should also be changing the icon!!! + ceiling = CEILING_METAL + +/area/LV624_Outpost_Furidamu/outdoors + name = "LV624_Outpost_Furidamu - Outdoors" + icon_state = "cliff_blocked" //because this is a PARENT TYPE and you should not be using it and should also be changing the icon!!! + ceiling = CEILING_NONE + minimap_color = MINIMAP_AREA_JUNGLE + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker + name = "LV624_Outpost_Furidamu - Colony Caves" + icon_state = "cliff_blocked" + ceiling = CEILING_UNDERGROUND_BLOCK_CAS + +/area/LV624_Outpost_Furidamu/oob + name = "LV624_Outpost_Furidamu - Out Of Bounds" + icon_state = "unknown" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + +//Landing Zone 1 + +/area/LV624_Outpost_Furidamu/landing_zone_1 + name = "LV624_Outpost_Furidamu - Landing Zone One" + icon_state = "explored" + is_resin_allowed = FALSE + is_landing_zone = TRUE + +/area/LV624_Outpost_Furidamu/landing_zone_1/ceiling + ceiling = CEILING_METAL + +/area/shuttle/drop1/LV624_Outpost_Furidamu + name = "LV624_Outpost_Furidamu - Dropship Alamo Landing Zone" + icon_state = "shuttle" + icon = 'icons/turf/area_shiva.dmi' + +/area/LV624_Outpost_Furidamu/landing_zone_1/lz1_console + name = "LV624_Outpost_Furidamu - Dropship Alamo Console" + icon_state = "tcomsatcham" + requires_power = FALSE + +//Landing Zone 2 + +/area/LV624_Outpost_Furidamu/landing_zone_2 + name = "LV624_Outpost_Furidamu - Landing Zone Two" + icon_state = "explored" + is_resin_allowed = FALSE + is_landing_zone = TRUE + +/area/LV624_Outpost_Furidamu/landing_zone_2/ceiling + ceiling = CEILING_METAL + +/area/shuttle/drop2/LV624_Outpost_Furidamu + name = "LV624_Outpost_Furidamu - Dropship Normandy Landing Zone" + icon_state = "shuttle2" + icon = 'icons/turf/area_shiva.dmi' + +/area/LV624_Outpost_Furidamu/landing_zone_2/lz2_console + name = "LV624_Outpost_Furidamu - Dropship Normandy Console" + icon_state = "tcomsatcham" + requires_power = FALSE + +//Caves + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw + name = "Outpost Furidamu - Northwest Caves" + icon_state = "northwest" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne + name = "Outpost Furidamu - Northeast Caves" + icon_state = "northeast" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent + name = "Outpost Furidamu - Central Caves" + icon_state = "red" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se + name = "Outpost Furidamu - Southeast Caves" + icon_state = "southeast" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s + name = "Outpost Furidamu - South Caves" + icon_state = "south" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw + name = "Outpost Furidamu - Southwest Caves" + icon_state = "southwest" + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south + name = "Outpost Furidamu - South Barrens" + icon_state = "blue" + ceiling = CEILING_NONE + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling + name = "Outpost Furidamu - South Barrens" + ceiling = CEILING_METAL + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north + name = "Outpost Furidamu - North Barrens" + icon_state = "green" + ceiling = CEILING_NONE + +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling + name = "Outpost Furidamu - North Barrens" + ceiling = CEILING_METAL + + +//River +/area/LV624_Outpost_Furidamu/outdoors/river + name = "Outpost Furidamu - North River" + icon_state = "purple" + +/area/LV624_Outpost_Furidamu/outdoors/river/c + name = "Outpost Furidamu - Central River" + +/area/LV624_Outpost_Furidamu/outdoors/river/s + name = "Outpost Furidamu - South River" + +/area/LV624_Outpost_Furidamu/outdoors/river/e + name = "Outpost Furidamu - East River" + +/area/LV624_Outpost_Furidamu/outdoors/river/w + name = "Outpost Furidamu - West River" + +//Jungles + +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne + name = "Outpost Furidamu - Northeast Jungle" + icon_state = "northeast" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/se + name = "Outpost Furidamu - Southeast Jungle" + icon_state = "southeast" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw + name = "Outpost Furidamu - Northwest Jungle" + icon_state = "northwest" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw + name = "Outpost Furidamu - Southwest Jungle" + icon_state = "southwest" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/s + name = "Outpost Furidamu - South Jungle" + icon_state = "south" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/e + name = "Outpost Furidamu - East Jungle" + icon_state = "east" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/w + name = "Outpost Furidamu - West Jungle" + icon_state = "west" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/n + name = "Outpost Furidamu - North Jungle" + icon_state = "north" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm + name = "Outpost Furidamu - Colony Farm" + icon_state = "blue" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/c + name = "Outpost Furidamu - Colony Central Jungle" + icon_state = "purple" + +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing + name = "Outpost Furidamu - Colony Firing Range" + icon_state = "green" + +//huts + +/area/LV624_Outpost_Furidamu/indoors/hut/ + name = "Outpost Furidamu - Jungle Hut" + icon_state = "red" + +/area/LV624_Outpost_Furidamu/indoors/hut/farm + name = "Outpost Furidamu - North Colony Farming hut" + +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm + name = "Outpost Furidamu - North Colony Telecomms Unit" + +//buildings + +/area/LV624_Outpost_Furidamu/indoors/buildings + name = "Outpost Fuidamu - Buildings" + icon_state = "Sleep" + +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen + name = "Outpost Furidamu - Landing Zone One Kitchen" + +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply + name = "Outpost Furidamu - Landing Zone One Supply" + +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks + name = "Outpost Furidamu - Landing Zone One Barracks" + +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin + name = "Outpost Furidamu - Landing Zone One Admin" + +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site + name = "Outpost Furidamu - Greenhouse Megastructure" + +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital + name = "Outpost Furidamu - Hospital" + +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering + name = "Outpost Furidamu - Engineering" + +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall + name = "Outpost Furidamu - Townhall And Workshop" + +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen + name = "Outpost Furidamu - South Colony Dining Hall" + +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers + name = "Outpost Furidamu - Butchers House" + +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration + name = "Outpost Furidamu - Filtration Dam" + +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome + name = "Outpost Furidamu - Secure Dome" + +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre + name = "Outpost Furidamu - CLF Operation Centre" + +//bridges + +/area/LV624_Outpost_Furidamu/outdoors/bridge + name = "Outpost Furidamu - Northwest Bridge To CLF Bunker" + icon_state = "ass_line" + +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge + name = "Outpost Furidamu - Land Bridge To Barrens" + +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2 + name = "Outpost Furidamu - Wooden Bridge To LZ2" + ceiling = CEILING_GLASS + +//Bunker +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker + name = "Outpost Furiaamu - Northwest CLF Bunker" + icon_state = "quartstorage" + +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling + name = "Outpost Furiaamu - Northwest CLF Bunker" + ceiling = CEILING_NONE diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm index 45756c30bb..2804542ca1 100644 --- a/code/game/turfs/auto_turf.dm +++ b/code/game/turfs/auto_turf.dm @@ -293,6 +293,10 @@ bleed_layer = 0 variant_prefix_name = "matted grass" +/turf/open/auto_turf/strata_grass/layer0/unweedable + variant_prefix_name = "matted grass" + bleed_layer = 0 + /turf/open/auto_turf/strata_grass/layer0_mud icon_state = "grass_0_mud" bleed_layer = 0 @@ -309,6 +313,10 @@ icon_state = "grass_1" bleed_layer = 1 +/turf/open/auto_turf/strata_grass/layer1/unweedable + variant_prefix_name = "matted grass" + bleed_layer = 1 + //Chance's Claim / Hadley Shale dirt /turf/open/auto_turf/shale diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 837610d5d7..fd1f9c670c 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -623,6 +623,12 @@ /turf/open/auto_turf/shale/layer2/is_weedable() return SEMI_WEEDABLE +/turf/open/auto_turf/strata_grass/layer1/unweedable/is_weedable() + return FALSE + +/turf/open/auto_turf/strata_grass/layer0/unweedable/is_weedable() + return FALSE + /turf/closed/wall/is_weedable() return FULLY_WEEDABLE //so we can spawn weeds on the walls diff --git a/code/modules/gear_presets/outpost_furidamu_clf.dm b/code/modules/gear_presets/outpost_furidamu_clf.dm new file mode 100644 index 0000000000..89c0fe061d --- /dev/null +++ b/code/modules/gear_presets/outpost_furidamu_clf.dm @@ -0,0 +1,181 @@ +///*****************************LV-522 Force Recon Survivors*******************************************************/ +//Nanu told me to put them here so they dont clutter up survivors.dm + +/datum/equipment_preset/survivor/furidamu_clf + idtype = /obj/item/card/id/dogtag + rank = JOB_SURVIVOR + faction_group = list(FACTION_SURVIVOR) + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ) + +/datum/equipment_preset/survivor/furidamu_clf/load_gear(mob/living/carbon/human/H) + var/obj/item/clothing/under/colonist/clf/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + uniform.attach_accessory(H,pouch) + H.equip_to_slot_or_del(uniform, WEAR_BODY) + H.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/webbing(H), WEAR_JACKET) + H.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(H), WEAR_BACK) + H.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(H), WEAR_R_STORE) + H.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(H), WEAR_L_STORE) + H.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(H), WEAR_IN_ACCESSORY) + H.equip_to_slot_or_del(new /obj/item/facepaint/sniper(H), WEAR_IN_ACCESSORY) + H.equip_to_slot_or_del(new /obj/item/storage/box/MRE(H), WEAR_IN_ACCESSORY) + H.equip_to_slot_or_del(new /obj/item/device/flashlight(H), WEAR_J_STORE) + H.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(H), WEAR_IN_JACKET) + H.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(H), WEAR_FEET) + H.equip_to_slot_or_del(new /obj/item/device/radio(H), WEAR_IN_BACK) + +/datum/equipment_preset/survivor/furidamu_clf/add_survivor_weapon_security(mob/living/carbon/human/H) + return + +/datum/equipment_preset/survivor/furidamu_clf/proc/add_furidamu_weapon(mob/living/carbon/human/H) + var/random_gun = rand(1,3) + switch(random_gun) + if(1 , 2) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a(H), WEAR_L_HAND) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(H), WEAR_IN_BACK) + if(3) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/rifleman(H), WEAR_L_HAND) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71(H), WEAR_IN_BACK) + +/datum/equipment_preset/survivor/furidamu_clf/add_survivor_weapon_pistol(mob/living/carbon/human/H) + return + +/datum/equipment_preset/survivor/furidamu_clf/proc/add_furidamu_weapon_secondary(mob/living/carbon/human/H) + var/random_pistol = rand(1,5) + switch(random_pistol) + if(1 , 2) + H.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(H), WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(H), WEAR_IN_BELT) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(H), WEAR_IN_BELT) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(H), WEAR_IN_BELT) + if(3 , 4) + H.equip_to_slot_or_del(new /obj/item/storage/large_holster/m39, WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39(H), WEAR_IN_BELT) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(H), WEAR_IN_BACK) + if(5) + H.equip_to_slot_or_del(new /obj/item/device/motiondetector(H),WEAR_WAIST) + +/datum/equipment_preset/survivor/furidamu_clf/add_random_survivor_equipment(mob/living/carbon/human/H) + return + +/datum/equipment_preset/survivor/furidamu_clf/proc/add_furidamu_equipment(mob/living/carbon/human/H) + var/random_equipment = rand(1,3) + switch(random_equipment) + if(1) + H.equip_to_slot_or_del(new /obj/item/device/walkman(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/device/cassette_tape/indie(H), WEAR_IN_BACK) + if(2) + H.equip_to_slot_or_del(new /obj/item/toy/deck(H), WEAR_IN_ACCESSORY) + if(3) + H.equip_to_slot_or_del(new /obj/item/storage/fancy/cigarettes/lucky_strikes(H), WEAR_IN_ACCESSORY) + +/datum/equipment_preset/survivor/furidamu_clf/proc/spawn_random_headgear(mob/living/carbon/human/H) + var/i = rand(1,10) + switch(i) + if (1 , 2) + H.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap(H), WEAR_HEAD) + if (3 , 4) + H.equip_to_slot_or_del(new /obj/item/clothing/head/beanie/gray(H), WEAR_HEAD) + if (5 , 6) + H.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/skullcap(H), WEAR_HEAD) + if (7 , 8) + H.equip_to_slot_or_del(new /obj/item/clothing/head/headband/rebel(H), WEAR_HEAD) + if (9) + H.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/upp(H), WEAR_HEAD) + +/datum/equipment_preset/survivor/furidamu_clf/standard + name = "Survivor - Furidamu CLF Standard" + assignment = "Colonial Liberation Front Militiaman" + skills = /datum/skills/clf + +/datum/equipment_preset/survivor/forecon/standard/load_gear(mob/living/carbon/human/H) + ..() + add_furidamu_weapon_secondary(H) + add_furidamu_weapon(H) + spawn_random_headgear(H) + add_furidamu_equipment(H) + +///*****************************// + +/datum/equipment_preset/survivor/furidamu_clf/breacher + name = "Survivor - Furidamu CLF Breacher" + assignment = "Colonial Liberation Front Pointman" + skills = /datum/skills/clf + +/datum/equipment_preset/survivor/forecon/tech/load_gear(mob/living/carbon/human/H) + H.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/big(H), WEAR_BACK) + H.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(H), WEAR_HANDS) + H.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(H), WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(H), WEAR_EYES) + ..() + H.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(H), WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/device/defibrillator(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(H), WEAR_IN_BACK) + add_furidamu_weapon(H) + spawn_random_headgear(H) + add_furidamu_equipment(H) + +///*****************************// + +/datum/equipment_preset/survivor/furidamu_clf/sniper + name = "Survivor - Furidamu CLF Sniper" + assignment = "Colonial Liberation Front Marksman" + skills = /datum/skills/clf + +/datum/equipment_preset/survivor/forecon/marksman/load_gear(mob/living/carbon/human/H) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra_custom(H), WEAR_L_HAND) + ..() + add_furidamu_weapon_secondary(H) + spawn_random_headgear(H) + add_furidamu_equipment(H) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(H), WEAR_IN_BACK) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(H), WEAR_IN_BACK) + +///*****************************// + +/datum/equipment_preset/survivor/furidamu_clf/captain + name = "Survivor - Furidamu CLF Captain" + assignment = "Colonial Liberation Front Captain" + skills = /datum/skills/clf + +/datum/equipment_preset/survivor/forecon/smartgunner/load_gear(mob/living/carbon/human/H) + H.equip_to_slot_or_del(new /obj/item/smartgun_powerpack(H), WEAR_R_HAND) + ..() + H.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner(H), WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(H), WEAR_IN_BELT) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(H), WEAR_IN_BELT) + H.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(H), WEAR_IN_BELT) + add_furidamu_weapon(H) + spawn_random_headgear(H) + add_furidamu_equipment(H) + +//---------------------------\\ + +/datum/equipment_preset/survivor/furidamu_clf/spetsnaz/leader + name = "Survivor CO - Furidamu UPP Advisor" + assignment = "Furidamu Military Attache" + skills = /datum/skills/upp/commander + paygrade = "UO3" + idtype = /obj/item/card/id/gold + role_comm_title = "May." + +/datum/equipment_preset/survivor/forecon/major/load_gear(mob/living/carbon/human/H) + var/obj/item/clothing/under/marine/veteran/UPP/officer/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + uniform.attach_accessory(H,pouch) + H.equip_to_slot_or_del(uniform, WEAR_BODY) + H.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/pk9(H), WEAR_WAIST) + H.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret(H), WEAR_HEAD) + H.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/windbreaker/windbreaker_green(H), WEAR_JACKET) + ..() +//----------------------\\ diff --git a/colonialmarines.dme b/colonialmarines.dme index 30c4089f36..9a23c2a614 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -651,12 +651,14 @@ #include "code\datums\weather\weather_events\faction_clash.dm" #include "code\datums\weather\weather_events\lv522_chances_claim.dm" #include "code\datums\weather\weather_events\lv624.dm" +#include "code\datums\weather\weather_events\lv624_outpost_furidamu.dm" #include "code\datums\weather\weather_events\new_varadero.dm" #include "code\datums\weather\weather_events\sorokyne.dm" #include "code\datums\weather\weather_map_holders\big_red.dm" #include "code\datums\weather\weather_map_holders\faction_clash.dm" #include "code\datums\weather\weather_map_holders\lv522_chances_claim.dm" #include "code\datums\weather\weather_map_holders\lv624.dm" +#include "code\datums\weather\weather_map_holders\lv624_outpost_furidamu.dm" #include "code\datums\weather\weather_map_holders\new_varadero.dm" #include "code\datums\weather\weather_map_holders\shivas_snowball.dm" #include "code\datums\weather\weather_map_holders\sorokyne.dm" @@ -696,6 +698,7 @@ #include "code\game\area\kutjevo.dm" #include "code\game\area\LV522_Chances_Claim.dm" #include "code\game\area\LV624.dm" +#include "code\game\area\LV624_Outpost_Furidamu.dm" #include "code\game\area\prison.dm" #include "code\game\area\Prison_Station_FOP.dm" #include "code\game\area\prison_v3_fiorina.dm" diff --git a/map_config/maps.txt b/map_config/maps.txt index 96a71cf44a..5188cdff42 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -62,5 +62,8 @@ endmap map derelict_almayer endmap +map lv624_outpost_furidamu +endmap + map whiskey_outpost_v2 endmap diff --git a/maps/LV624_Outpost_Furidamu.json b/maps/LV624_Outpost_Furidamu.json new file mode 100644 index 0000000000..9429094ea0 --- /dev/null +++ b/maps/LV624_Outpost_Furidamu.json @@ -0,0 +1,44 @@ +{ + "map_name": "LV624 Outpost Furidamu", + "map_path": "map_files/LV624_Outpost_Furidamu", + "map_file": "lv624_outpost_furidamu.dmm", + "weather_holder": "/datum/weather_ss_map_holder/lv624_outpost_furidamu", + "survivor_types": [ + "/datum/equipment_preset/survivor/clf" + ], + "synth_survivor_types": [ + "/datum/equipment_preset/synth/survivor/forecon" + ], + "CO_survivor_types": [ + "/datum/equipment_preset/survivor/forecon/major" + ], + "defcon_triggers": [ + 3300, + 2100, + 1450, + 580, + 0.0 + ], + "survivor_message": "", + "announce_text": "", + "map_item_type": "/obj/item/map/lv522_map", + "monkey_types": [ + "neaera", + "stok" + ], + "environment_traits": { "Fog": true }, + "traits": [{ "Ground": true }], + "xvx_hives": { + "xeno_hive_alpha": 0, + "xeno_hive_bravo": 0, + "xeno_hive_charlie": 0, + "xeno_hive_delta": 0 + }, + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} diff --git a/maps/map_files/LV624_Outpost_Furidamu/LV624_Outpost_Furidamu.dmm b/maps/map_files/LV624_Outpost_Furidamu/LV624_Outpost_Furidamu.dmm new file mode 100644 index 0000000000..c31dd71bdf --- /dev/null +++ b/maps/map_files/LV624_Outpost_Furidamu/LV624_Outpost_Furidamu.dmm @@ -0,0 +1,56919 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"ab" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"ac" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ad" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ae" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"ag" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_x = 3; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"ah" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ai" = ( +/obj/item/ammo_box/magazine/type71, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"aj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"ak" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"al" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"am" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"an" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"ao" = ( +/obj/item/clothing/under/colonist/clf, +/obj/structure/surface/rack, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ap" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"aq" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"ar" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"as" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"at" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"au" = ( +/obj/structure/prop/server_equipment{ + icon_state = "rackframe_broken" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"av" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"aw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper LZ1 Access"; + req_one_access = null + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"ax" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/faxmachine{ + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"ay" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"az" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"aA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"aB" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"aC" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"aD" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"aE" = ( +/obj/effect/landmark/xeno_hive_spawn, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"aF" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"aG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 10; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"aI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"aK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"aL" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"aM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"aN" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"aO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"aP" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"aR" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"aS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"aT" = ( +/obj/item/stool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"aU" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"aV" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp3" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"aW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"aX" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/loadedbakedpotato, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"aY" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"aZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ba" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"bb" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"bc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"bd" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"be" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp22" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"bf" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"bg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"bh" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/LV624_Outpost_Furidamu/oob) +"bi" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"bj" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"bl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"bm" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"bn" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"bo" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"bp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/objective{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"bq" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"br" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"bs" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"bt" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 32 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"bu" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"bv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"bw" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"bx" = ( +/obj/structure/surface/table, +/obj/item/paper_bundle, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 12 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"by" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/belt/marine/mp5, +/obj/item/storage/belt/marine/mp5{ + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"bz" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"bA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"bB" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"bC" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"bD" = ( +/turf/open/floor{ + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"bE" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"bF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"bG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench, +/obj/item/tool/crowbar/red, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"bH" = ( +/obj/structure/sign/poster/clf{ + pixel_x = 1; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"bJ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 21 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"bK" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"bM" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"bO" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"bP" = ( +/obj/structure/prop/almayer/minigun_crate, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"bQ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"bR" = ( +/obj/structure/flora/jungle/planttop1, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"bS" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"bT" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"bU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"bV" = ( +/obj/item/weapon/gun/rifle/l42a/abr40, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"bX" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"bY" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"bZ" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"cb" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"cc" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"cd" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"ce" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"cf" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"cg" = ( +/obj/structure/surface/table/almayer, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ch" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"cj" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"ck" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"cl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"cm" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"cn" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"co" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"cp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"cq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"cr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"cs" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/militia/smartgun{ + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = 5 + }, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ct" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"cu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"cx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + tag = "icon-W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + tag = "icon-E-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + tag = "icon-S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + tag = "icon-N" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"cz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/lighter/zippo{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/tool/lighter/random{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"cA" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"cB" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"cC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"cD" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"cE" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"cF" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"cG" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"cH" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"cI" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/ammo_magazine/smg/ppsh/extended, +/obj/item/weapon/gun/smg/ppsh, +/obj/item/weapon/gun/smg/ppsh, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"cJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"cK" = ( +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"cL" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"cM" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"cN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"cP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"cQ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"cR" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -20; + pixel_y = 25 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"cS" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"cT" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"cU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker) +"cV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"cW" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"cX" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"cY" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -21; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"da" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"dc" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"dd" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"de" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"df" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"dg" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"dh" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp8" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"dj" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"dk" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"dl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"dm" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"dn" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"do" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"dp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"dq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + tag = "icon-W" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"dr" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/obj/item/ammo_magazine/smg/ppsh{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"ds" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -22; + pixel_y = 21 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"dv" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"dw" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"dx" = ( +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"dy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"dz" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"dA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"dB" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "NW_Colony_Bunker_LSTSTAND"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"dC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"dD" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river) +"dE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 17 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"dF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"dG" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"dH" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"dI" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"dK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"dL" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"dM" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"dN" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"dO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"dP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"dR" = ( +/obj/structure/surface/table/almayer, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"dS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"dT" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"dU" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"dV" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"dW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"dX" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"dY" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"dZ" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"eb" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ec" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ed" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ee" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"ef" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"eg" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/suit/storage/militia{ + pixel_x = -4; + pixel_y = -13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"eh" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"ej" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ek" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"el" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"em" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"en" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"eo" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"er" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"es" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"et" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"ev" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"ew" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"ey" = ( +/obj/item/prop/alien/hugger, +/obj/structure/barricade/sandbags{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"ez" = ( +/obj/structure/largecrate/supply/explosives/mortar_he, +/obj/item/mortar_shell/frag{ + layer = 4.2; + pixel_x = -7; + pixel_y = 17 + }, +/obj/item/mortar_shell/frag{ + layer = 4.2; + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/mortar_shell/frag{ + layer = 4.2; + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"eA" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"eB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"eC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"eD" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9 + }, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"eE" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"eF" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"eG" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"eH" = ( +/turf/closed/wall/rock/brown, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"eI" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"eJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"eK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"eL" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"eM" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"eN" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"eO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"eP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"eQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"eR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"eS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"eT" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"eU" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"eV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"eW" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"eY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"fa" = ( +/turf/closed/wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"fc" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"fd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"fe" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ff" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"fg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"fh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"fi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/plants, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"fj" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"fk" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"fl" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"fn" = ( +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"fo" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"fp" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/lighter/random{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"fr" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"fs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ft" = ( +/obj/structure/largecrate, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/structure/catwalk/bigred, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"fu" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 3 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"fv" = ( +/obj/structure/machinery/power/geothermal{ + fail_rate = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"fw" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"fx" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"fy" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ashtray/plastic{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"fz" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"fA" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"fC" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"fD" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"fE" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"fF" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"fG" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"fH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"fI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"fJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"fK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"fL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"fM" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "NW_Colony_Bunker_LSTSTAND"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"fN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"fO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"fP" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"fQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"fR" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"fS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"fT" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"fV" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = -6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"fW" = ( +/obj/structure/machinery/light, +/obj/item/mortar_shell/frag{ + layer = 4.2; + pixel_x = 20; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"fX" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"fY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ga" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"gb" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"gc" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"gd" = ( +/obj/structure/machinery/photocopier{ + density = 0; + pixel_y = 16 + }, +/obj/item/map/lazarus_landing_map{ + pixel_x = -1; + pixel_y = 20 + }, +/obj/item/map/lazarus_landing_map{ + pixel_y = -11 + }, +/obj/item/map/lazarus_landing_map{ + pixel_y = -8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"gf" = ( +/obj/structure/platform, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"gg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"gh" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"gi" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"gj" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"gl" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"gm" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"gn" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"go" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"gp" = ( +/obj/structure/curtain/red, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"gq" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"gs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/spawner/random/tool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"gt" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"gu" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"gv" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"gw" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"gx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"gy" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"gz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"gB" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/antitox{ + name = "\improper Malaria pill bottle" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"gD" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"gE" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"gG" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"gH" = ( +/obj/structure/largecrate, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"gI" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"gJ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 8; + pixel_y = 21 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"gK" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"gL" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"gM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + tag = "icon-comfychair (NORTH)" + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/oob) +"gN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pamphlet/skill/engineer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"gP" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"gQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"gS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"gT" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"gU" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"gV" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"gX" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?"; + pixel_x = -28; + pixel_y = -34 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"gZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + tag = "icon-W" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ha" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/boiledspagetti{ + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"hb" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/cell/high, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"hc" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"he" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"hf" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"hg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"hh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"hi" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"hj" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"hl" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"hm" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"hn" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map{ + pixel_y = 5 + }, +/obj/item/map/lazarus_landing_map{ + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"ho" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"hp" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"hq" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"hr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"hs" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ht" = ( +/obj/item/device/implanter/rejuv, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"hu" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"hv" = ( +/obj/item/clothing/shoes/sandal{ + pixel_y = -10 + }, +/obj/item/clothing/shoes/sandal{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"hx" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"hy" = ( +/obj/structure/closet/crate/secure/weyland, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"hz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_y = 12 + }, +/obj/item/tool/pen/paralysis{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"hA" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"hB" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"hC" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"hD" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"hE" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"hF" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"hH" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"hI" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"hJ" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"hK" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"hL" = ( +/obj/structure/ore_box, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"hM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"hN" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"hO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + tag = "icon-W" + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"hP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + tag = "icon-N" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"hQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"hR" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"hS" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"hT" = ( +/turf/open/floor/carpet, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"hV" = ( +/obj/structure/curtain/red, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"hX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"hY" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"hZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"ib" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ic" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"id" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"ie" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/suit/chef/classic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"if" = ( +/obj/structure/window/framed/wood, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ig" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ih" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"ii" = ( +/obj/structure/flora/jungle/plantbot1{ + desc = "Doesn't look like it'll do much cleaning any more."; + icon_state = "cart_wreck"; + name = "old janicart" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"ij" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"ik" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags{ + dir = 4 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"il" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"im" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"in" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"io" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"ip" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/storage/box/packet/high_explosive, +/obj/item/storage/box/packet/high_explosive, +/obj/item/storage/box/packet/high_explosive, +/obj/item/storage/box/packet/high_explosive, +/obj/item/storage/box/packet/high_explosive, +/obj/item/storage/box/packet/high_explosive, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"ir" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"it" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"iu" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"iv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"iw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"iy" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"iz" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"iA" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"iB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"iD" = ( +/obj/structure/platform, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"iE" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"iF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"iG" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"iH" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"iI" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2; + pixel_y = 16 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"iJ" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"iL" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"iM" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/revolver/nagant, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"iN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"iO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"iQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"iR" = ( +/obj/structure/surface/table, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"iT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"iU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"iW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/objective, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"iX" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"iY" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"iZ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"ja" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"jb" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"jc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"jd" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/xeno_egg{ + pixel_x = -5 + }, +/obj/item/xeno_egg{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"je" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"jf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"jg" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"jh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ji" = ( +/obj/structure/bed/stool, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"jk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"jl" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "platebot"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"jn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"jo" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"jp" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/river) +"jq" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"js" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"jt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"jv" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/w) +"jw" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"jx" = ( +/obj/structure/largecrate/supply/explosives/mines, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"jy" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"jz" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/marine/padded{ + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"jB" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"jC" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"jD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"jE" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"jF" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"jG" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"jH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"jI" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"jK" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"jL" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"jM" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/space) +"jN" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"jO" = ( +/turf/open/floor{ + dir = 5; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"jP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"jQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"jS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"jT" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/toy/handcard/aceofspades{ + icon_state = "spades_two"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "spades_six" + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "spades_three"; + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "spades_queen"; + pixel_x = -14; + pixel_y = 6 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "spades_seven"; + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"jU" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"jV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"jW" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"jX" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"jY" = ( +/obj/item/tool/shovel, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ka" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"kb" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"kc" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"kd" = ( +/obj/structure/machinery/power/geothermal{ + fail_rate = 5 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ke" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/oob) +"kf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"kh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"ki" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"kj" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"kk" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"kl" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"km" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"kn" = ( +/obj/structure/platform, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"ko" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"kp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"kq" = ( +/obj/structure/barricade/wooden, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"kr" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ks" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"ku" = ( +/obj/item/clothing/head/helmet/marine/veteran/UPP{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/surface/table, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"kv" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"kx" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ky" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"kz" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/ppsh/extended, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"kA" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"kB" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"kC" = ( +/obj/structure/flora/jungle/planttop1, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"kD" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"kE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"kF" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"kG" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/welding{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/tool/weldpack{ + pixel_x = 11; + pixel_y = -6 + }, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"kH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"kI" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/carpet, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"kJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp8" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"kK" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"kL" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"kN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"kP" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"kQ" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"kR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"kS" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"kT" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"kU" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/marine/light{ + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"kV" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"kW" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp22" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"kX" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"kY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"kZ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"la" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"lb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"lc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"ld" = ( +/obj/structure/platform/kutjevo/rock, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"le" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/gloves/yellow, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"lf" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"lg" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/syndicate, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"lh" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"li" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/shoes/marine/upp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"lj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"lk" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"lm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"ln" = ( +/obj/structure/curtain/red, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"lo" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"lr" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"ls" = ( +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"lt" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"lu" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"lv" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"lx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"ly" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/toy/handcard/aceofspades{ + icon_state = "clubs_ace"; + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "clubs_eight" + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "clubs_four"; + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "clubs_jack" + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "clubs_nine"; + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"lz" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"lA" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"lC" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"lE" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." + }, +/obj/item/reagent_container/hypospray/autoinjector/ultrazine, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"lF" = ( +/obj/structure/platform, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"lG" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"lH" = ( +/obj/structure/fence, +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"lI" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"lJ" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"lK" = ( +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"lN" = ( +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -10; + pixel_y = 18 + }, +/obj/item/storage/large_holster/katana/full{ + pixel_y = 10 + }, +/obj/item/clothing/head/headband/red{ + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"lO" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platebotc" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"lQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"lR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"lS" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"lV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"lW" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"lX" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"lY" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"lZ" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"ma" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"mb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"mc" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"md" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"me" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"mh" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"mi" = ( +/obj/structure/largecrate/guns/merc, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"mj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/item/weapon/gun/smg/mac15, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"mk" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp9" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"ml" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 9 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -16; + pixel_y = -11 + }, +/obj/item/stack/sheet/wood{ + pixel_x = 5; + pixel_y = -7 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mo" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"mp" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mq" = ( +/obj/structure/flora/jungle/planttop1, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"mr" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ms" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"mt" = ( +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"mu" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"mv" = ( +/obj/structure/barricade/sandbags{ + dir = 1 + }, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/obj/item/ammo_magazine/smg/ppsh{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"mw" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"mx" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"my" = ( +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"mz" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mA" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -21; + pixel_y = 27 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mB" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"mC" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mD" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river) +"mE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"mF" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"mG" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/suit/storage/militia/partial{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/clothing/suit/storage/militia/partial{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"mH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"mI" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"mJ" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"mK" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"mL" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"mM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"mN" = ( +/obj/structure/machinery/light, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"mO" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"mP" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"mQ" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"mR" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"mT" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 3; + pixel_y = -2; + serial_number = 12 + }, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mU" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"mV" = ( +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"mW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"mX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"mY" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"mZ" = ( +/turf/open/floor{ + dir = 9; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"nc" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/marine/leader{ + pixel_y = 1 + }, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_y = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"nd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"ne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"nf" = ( +/turf/closed/wall/rock/brown, +/area/LV624_Outpost_Furidamu/oob) +"ng" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"nh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"ni" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp1" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"nj" = ( +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = -10 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nk" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"nl" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"nm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + tag = "icon-S" + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"nn" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors) +"no" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"np" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"nq" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?"; + pixel_x = -32; + pixel_y = -33 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"nr" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"ns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"nt" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/item/weapon/unathiknife, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"nu" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"nv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"nw" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"nx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"ny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"nz" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"nC" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp25" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"nE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"nG" = ( +/obj/item/clothing/shoes/marine/upp_knife, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nH" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"nI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"nJ" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"nK" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/pill_bottle/antitox{ + name = "\improper Malaria pill bottle"; + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/storage/pill_bottle/antitox{ + name = "\improper Malaria pill bottle" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"nL" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"nM" = ( +/obj/structure/largecrate, +/obj/item/weapon/gun/rifle/type71{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nN" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nO" = ( +/obj/structure/curtain/red, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"nP" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"nQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"nR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"nS" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"nT" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"nV" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"nW" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/antitox{ + name = "\improper Malaria pill bottle" + }, +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"nX" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"nY" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"nZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"ob" = ( +/mob/living/simple_animal/cow, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"oc" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"od" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"oe" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"of" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"og" = ( +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"oi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"oj" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 18; + pixel_y = 22 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.1; + pixel_y = -9 + }, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ok" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"ol" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"om" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"on" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"oo" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"op" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/belt/medical/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"oq" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"or" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"os" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"ot" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"ou" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp20" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ov" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"ow" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"ox" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"oz" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"oA" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 14 + }, +/obj/item/tool/soap{ + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 22 + }, +/obj/structure/bedsheetbin, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"oB" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"oC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"oD" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"oE" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"oF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"oG" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"oH" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"oI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"oJ" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 18; + pixel_y = 22 + }, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"oK" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"oL" = ( +/obj/structure/curtain/red, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/oob) +"oN" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"oO" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"oP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"oQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"oR" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"oS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"oU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"oV" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"oW" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"oX" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"pb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/cell/crap{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/cell/crap{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"pc" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"pd" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"pe" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/objective, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"pg" = ( +/obj/structure/fence, +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"ph" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"pi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"pj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"pk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"pl" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"pm" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"pn" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/bridge) +"po" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/marine/padded{ + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/marine/scout{ + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"pp" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"pr" = ( +/turf/open/floor{ + dir = 10; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"ps" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"pt" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/mousetraps{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"pu" = ( +/obj/structure/closet/crate/secure/ammo, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"pv" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"pw" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"px" = ( +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"py" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"pz" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"pB" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"pC" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"pD" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"pG" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 18; + pixel_y = 1 + }, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"pH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"pI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"pJ" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor{ + dir = 6; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"pL" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"pM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"pN" = ( +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"pP" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"pQ" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"pR" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush{ + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"pS" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"pT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"pU" = ( +/obj/structure/curtain/red, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"pV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"pW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/shuttle/ert{ + icon_state = "upp23" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"pX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"pY" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"pZ" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"qa" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"qc" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"qd" = ( +/obj/item/clothing/shoes/swat, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"qf" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"qg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"qh" = ( +/obj/structure/largecrate/machine/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"qi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"qj" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qk" = ( +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"ql" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_rightengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"qm" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"qo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"qp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"qq" = ( +/turf/open/floor{ + dir = 6; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"qr" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp4" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"qs" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"qt" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"qu" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"qv" = ( +/obj/structure/largecrate/supply/weapons/hpr, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"qw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"qx" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"qy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"qz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"qA" = ( +/obj/structure/curtain/red, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/oob) +"qB" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"qD" = ( +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"qE" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"qF" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"qG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"qH" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qI" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"qJ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qK" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/storage/belt/marine/upp, +/obj/item/storage/belt/marine/upp, +/obj/item/storage/belt/marine/upp, +/obj/item/storage/belt/marine/upp, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"qL" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"qM" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"qN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1; + tag = "icon-NE-out" + }, +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"qO" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"qP" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qQ" = ( +/turf/open/floor{ + dir = 10; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qR" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"qS" = ( +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"qT" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"qV" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warningcorner" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"qX" = ( +/turf/open/floor{ + dir = 9; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"qY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper{ + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"ra" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"rb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"rd" = ( +/obj/item/stool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"re" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"rg" = ( +/turf/open/floor{ + dir = 6; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"rh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"ri" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"rj" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"rk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"rl" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"rm" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"ro" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"rq" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/structure/machinery/m56d_hmg{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"rr" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"rs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"rt" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ru" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"rv" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"rw" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"rx" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"ry" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"rz" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"rA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"rB" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"rC" = ( +/obj/item/stool, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"rD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"rE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"rF" = ( +/turf/open/floor{ + dir = 6; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"rG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"rH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"rI" = ( +/obj/structure/closet/coffin/woodencrate, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"rJ" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"rK" = ( +/obj/structure/closet/coffin, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"rL" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"rM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"rO" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"rP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"rQ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"rR" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "NW_Colony_Bunker_LSTSTAND"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"rS" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"rT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"rU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"rV" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"rW" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"rX" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"rY" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"rZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"sb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"sc" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/trash/USCMtray{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"sd" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"se" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"sf" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 20 + }, +/obj/item/clothing/suit/storage/marine/faction/UPP/officer{ + pixel_x = 10; + pixel_y = 25 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"sh" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"si" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/beer_pack{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"sj" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"sk" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"sl" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"sn" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"so" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"sp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"sq" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"sr" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"ss" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"st" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"su" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"sv" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"sw" = ( +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"sx" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"sz" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"sA" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"sB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + tag = "icon-comfychair (NORTH)" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"sC" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"sF" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/utensil/spoon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"sG" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"sH" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"sI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/upp/burst, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"sJ" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"sL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"sM" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"sN" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"sO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"sP" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"sQ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"sR" = ( +/obj/structure/largecrate/supply/weapons/m41a, +/obj/item/weapon/gun/smg/ppsh, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"sU" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/packet/smoke{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/packet/smoke{ + pixel_y = 3 + }, +/obj/item/storage/box/packet/smoke{ + pixel_x = 2; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"sV" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"sX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"sY" = ( +/obj/item/stool, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"sZ" = ( +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"ta" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"tb" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/oob) +"tc" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"td" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"te" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"ti" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"tj" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"tk" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/guncase/m41a{ + pixel_y = 3 + }, +/obj/item/storage/box/guncase/m41a{ + pixel_y = 9 + }, +/obj/item/storage/box/guncase/m41aMK1{ + pixel_y = 15 + }, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"tl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/suit/storage/militia/smartgun{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"tm" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 14 + }, +/obj/item/tool/soap{ + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 22 + }, +/obj/structure/bedsheetbin, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"tn" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"tp" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"tq" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"tr" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"tt" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"tu" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"tv" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"tw" = ( +/turf/closed/wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ty" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"tB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"tC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"tD" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"tE" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"tF" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"tG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"tH" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"tJ" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"tK" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"tL" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/obj/item/xeno_egg/alpha, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"tM" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp22" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"tN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"tO" = ( +/obj/effect/landmark/xeno_hive_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"tP" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"tQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"tR" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"tS" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"tT" = ( +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"tU" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"tV" = ( +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"tW" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"tX" = ( +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"tZ" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"ua" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/scythe, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"uc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"ud" = ( +/obj/item/pamphlet/skill/powerloader{ + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"ue" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"uf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"ug" = ( +/obj/item/stool, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"uh" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 14; + pixel_y = 1 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -12; + pixel_y = -12 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"ui" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"uj" = ( +/obj/effect/landmark/crap_item, +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"uk" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"um" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"un" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"uo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Hydroponics" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"up" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"uq" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"ur" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"us" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ut" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"uu" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"uw" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"ux" = ( +/obj/item/tool/pickaxe/silver, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"uy" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"uz" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"uA" = ( +/obj/item/clothing/shoes/marine/upp_knife{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/clothing/shoes/red{ + pixel_x = -5; + pixel_y = -7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"uB" = ( +/turf/open/floor{ + dir = 9; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"uC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"uD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective{ + dir = 5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"uE" = ( +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"uG" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"uI" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"uJ" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"uK" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"uL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"uM" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"uN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"uO" = ( +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"uQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"uR" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"uS" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"uT" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"uU" = ( +/obj/item/storage/box/guncase/m41aMK1, +/obj/item/storage/box/guncase/m41aMK1{ + pixel_y = 6 + }, +/obj/item/storage/box/guncase/m41aMK1{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"uV" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"uW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/rifle/type71/carbine{ + current_mag = null; + pixel_y = 9 + }, +/obj/item/weapon/gun/rifle/type71/carbine{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"uX" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"uY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"uZ" = ( +/turf/closed/wall, +/area/LV624_Outpost_Furidamu/outdoors) +"va" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"vb" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"vd" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"vf" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"vg" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"vh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"vi" = ( +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"vj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"vk" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/riceseed{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/seeds/riceseed, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"vl" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/radio/marine{ + pixel_x = -4; + pixel_y = 22 + }, +/obj/item/clothing/head/headset, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"vm" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?"; + pixel_x = -30 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/oob) +"vo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"vp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"vq" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"vs" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"vt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"vw" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"vx" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_rightengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"vy" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"vA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map, +/obj/structure/machinery/prop/almayer/CICmap{ + layer = 2.8; + pixel_x = -16; + pixel_y = -14 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"vB" = ( +/obj/item/weapon/gun/rifle/type71, +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"vC" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"vE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"vF" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"vG" = ( +/obj/item/ammo_magazine/rifle/type71{ + current_rounds = 0; + pixel_y = 15 + }, +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"vH" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"vJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"vK" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"vL" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"vM" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"vN" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"vO" = ( +/obj/structure/powerloader_wreckage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"vP" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"vQ" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"vR" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"vS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"vT" = ( +/turf/open/floor{ + dir = 10; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"vU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper LZ1 Access"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"vV" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"vW" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 18; + pixel_y = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"vX" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/head/headset, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"vY" = ( +/obj/structure/largecrate/supply/ammo/m39, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"vZ" = ( +/obj/structure/surface/table, +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/clothing/under/colonist/ua_civvies, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"wb" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"wc" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"wd" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"we" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"wf" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/oob) +"wg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"wh" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"wi" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp20" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"wj" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"wk" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"wl" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"wm" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"wn" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"wo" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"wq" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"wr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ws" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"wt" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"wu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"ww" = ( +/obj/structure/prop/dam/gravestone{ + icon_state = "gravestone3" + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = -12 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + layer = 4.6; + pixel_x = -7; + pixel_y = -14 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"wx" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"wy" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"wz" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"wA" = ( +/turf/open/floor{ + dir = 5; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"wB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"wC" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"wD" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"wE" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"wF" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"wG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"wH" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"wJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"wK" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"wL" = ( +/obj/item/stool, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"wN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"wO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/grown/ricestalk, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"wP" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/boiledrice, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"wQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + dir = 8; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_x = 3; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"wR" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/recharger, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"wS" = ( +/obj/structure/largecrate/supply/medicine/blood, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"wT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"wU" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"wV" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"wX" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"wY" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"wZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"xa" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"xc" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"xe" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"xf" = ( +/turf/open/floor{ + dir = 10; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"xg" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor{ + name = "Shuttle Landing Lights" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"xh" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"xj" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"xk" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"xl" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xm" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xn" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xo" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"xp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"xq" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xr" = ( +/obj/structure/window/framed/wood, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"xs" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"xt" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"xu" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"xv" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"xw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"xx" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/toy/deck{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_x = 11; + pixel_y = -6 + }, +/obj/item/coin/gold{ + pixel_y = -7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"xy" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"xz" = ( +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"xA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"xB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"xC" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"xD" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"xE" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"xF" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/milk{ + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"xH" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"xI" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"xJ" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/floor{ + dir = 9; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xK" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"xL" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"xN" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"xO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xP" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + tag = "icon-comfychair (NORTH)" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"xS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"xT" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"xU" = ( +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"xV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"xW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/grown/potato{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/grown/potato{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"xX" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/obj/structure/largecrate/supply/ammo/m56d{ + layer = 3.1; + pixel_x = 14; + pixel_y = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"xY" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -22; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"xZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"yc" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"yd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"ye" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"yg" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warningcorner" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"yh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"yi" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yk" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/structure/mortar{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"yl" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/crowbar, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"ym" = ( +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yn" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"yo" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"yp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"yq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yr" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ys" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"yt" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/storage/fancy/egg_box{ + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"yu" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_rightengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"yw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"yx" = ( +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/structure/closet/crate/secure/ammo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"yy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"yz" = ( +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"yA" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"yB" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"yC" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"yD" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"yE" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"yG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"yH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/beetsoup, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"yI" = ( +/obj/structure/flora/jungle/planttop1, +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/w) +"yJ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"yK" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"yL" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"yM" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"yN" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"yO" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"yP" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "Bunker_CLF_NW"; + name = "Emergency Lockdown" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"yQ" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"yR" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"yV" = ( +/turf/open/floor{ + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"yW" = ( +/obj/item/stack/sheet/wood, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"yX" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"yY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"yZ" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"za" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"zb" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"zc" = ( +/obj/structure/ore_box, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"zd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + tag = "icon-E-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + tag = "icon-W" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ze" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"zf" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"zg" = ( +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 6; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"zh" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"zi" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warningcorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"zj" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/attachable/suppressor{ + pixel_y = -2 + }, +/obj/item/attachable/suppressor{ + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"zl" = ( +/obj/structure/largecrate/supply/ammo/m56d{ + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"zn" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "platebot"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"zo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"zp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"zq" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"zs" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"zt" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = 12 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"zu" = ( +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"zv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"zw" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"zx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"zy" = ( +/obj/structure/machinery/smartfridge, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"zA" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"zB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"zC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/mre_pack/meal1, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"zD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"zE" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"zF" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"zG" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"zI" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"zJ" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"zK" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp25" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"zL" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"zN" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"zP" = ( +/turf/open/floor{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"zQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/explosive/grenade/high_explosive/stick, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"zR" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"zS" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"zT" = ( +/obj/structure/bookcase{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"zU" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"zV" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"zX" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"zY" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"zZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Ac" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Ad" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Ae" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Af" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"Ag" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Ah" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Ai" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Aj" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Ak" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Al" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"An" = ( +/obj/structure/closet/coffin/woodencrate, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Ao" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Ap" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/militia/brace, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Aq" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Ar" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"At" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Au" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"Av" = ( +/obj/structure/bed/chair, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Aw" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"Ay" = ( +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Az" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/pistol/c99{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/ammo_magazine/pistol/c99{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"AA" = ( +/obj/structure/flora/jungle/planttop1, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"AB" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"AC" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"AD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"AE" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"AH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"AI" = ( +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"AJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"AK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"AM" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"AN" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"AO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"AP" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"AQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/twohanded/fireaxe, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"AR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"AS" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/under/color/black{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/clothing/under/color/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"AT" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"AV" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"AW" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"AX" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"AY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/lights/mixed{ + pixel_y = 16 + }, +/obj/item/clothing/mask/gas{ + pixel_y = -2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Ba" = ( +/obj/item/stool, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Bb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fernybush_3" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Bc" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -29; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Be" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 8 + }, +/obj/item/reagent_container/food/snacks/milosoup{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Bf" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Bg" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Bh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Bi" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Bj" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Bk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Bl" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Bm" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Bn" = ( +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Bo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Bp" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Bq" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"Br" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Bs" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Bt" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp16" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Bv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/m44/custom, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Bw" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Bx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"By" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"Bz" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"BA" = ( +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 41 + }, +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"BC" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"BE" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"BF" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"BG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"BH" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"BJ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"BK" = ( +/obj/structure/platform_decoration, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"BM" = ( +/obj/structure/surface/table, +/obj/item/pamphlet/skill/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"BN" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"BP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush{ + pixel_x = 21 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"BQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"BR" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"BS" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"BT" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "NW_Colony_Bunker_LSTSTAND"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"BU" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"BV" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"BX" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 19 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -8 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"BY" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Ca" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Cb" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Cd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Ce" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Cf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/headset{ + frequency = 1469; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/headset{ + frequency = 1469 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Cg" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Ch" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/computer/objective{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Ci" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Cj" = ( +/obj/item/weapon/gun/smg/ppsh{ + current_mag = null + }, +/obj/item/ammo_magazine/smg/ppsh/extended{ + current_rounds = 0; + pixel_x = 8; + pixel_y = -15 + }, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Ck" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Cl" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"Cm" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Cn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Cp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Cq" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Cr" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Cs" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Ct" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Cu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Cv" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Cw" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"Cx" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Cy" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Cz" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"CA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"CB" = ( +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"CC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"CD" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"CE" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"CF" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"CG" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"CH" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"CI" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"CJ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"CK" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"CL" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"CM" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/rifle/sniper/svd{ + layer = 3.1; + pixel_x = 20; + pixel_y = 8 + }, +/obj/item/tool/crowbar, +/obj/item/explosive/grenade/high_explosive, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"CN" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"CO" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"CP" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"CR" = ( +/obj/structure/surface/rack, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"CS" = ( +/turf/open/floor{ + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/w) +"CT" = ( +/obj/item/paper/crumpled, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"CU" = ( +/obj/item/xeno_egg/alpha, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"CX" = ( +/obj/effect/landmark/xeno_hive_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"CY" = ( +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = 2 + }, +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/explosive/grenade/high_explosive/upp{ + pixel_x = -10 + }, +/obj/structure/surface/table, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"CZ" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Da" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"Db" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Dc" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"De" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Df" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Dg" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Di" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Dj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Dm" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/storage/firstaid{ + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Do" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Dp" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Dr" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Ds" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/reagent_container/food/snacks/wishsoup{ + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Dt" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Dv" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Dw" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Dx" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Dy" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Dz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"DA" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"DB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/rollingpin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"DC" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"DD" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"DE" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"DF" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"DG" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"DH" = ( +/obj/structure/largecrate/supply/ammo/m41a_box, +/obj/item/weapon/gun/smg/ppsh, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"DI" = ( +/obj/structure/surface/table, +/obj/item/clothing/shoes/marine/upp_knife, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"DJ" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"DL" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"DM" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/obj/item/weapon/gun/energy/yautja/plasmapistol, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"DN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"DO" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"DP" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"DQ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"DR" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"DS" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"DT" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"DU" = ( +/obj/structure/fence, +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"DV" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/mask/gas/swat{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/clothing/mask/gas/swat{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"DX" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/rifle/type71/carbine/commando{ + current_mag = null + }, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"DZ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/item/reagent_container/food/snacks/mre_pack/meal3{ + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Eb" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Ec" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Ed" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Ee" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Ef" = ( +/obj/structure/bed, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Eg" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/moneybag{ + pixel_y = 12 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Eh" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Ej" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Ek" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"El" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Em" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"En" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Eo" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Ep" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/mysterysoup, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Er" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Et" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Eu" = ( +/obj/structure/curtain/red, +/obj/structure/catwalk/bigred, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Ev" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp27" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Ew" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Ex" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Ey" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray, +/obj/item/spacecash/c1000{ + desc = "Holy...fuck five hundred US Government minted hundred-dollar bills. Every single damn one of them has Ben Fucking Franklin on them. The court of Bens sit impatiently, as if each one thought they alone belonged to you. This coven of angry Bens have all since learned about your relations with the other Bens, and they want answers."; + name = "50000 dollars"; + worth = 50000 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"EA" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"EB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"EC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"EE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"EF" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"EG" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"EH" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"EI" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"EK" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"EL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"EM" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"EN" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -3; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"EO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"EP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"EQ" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ER" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ES" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"ET" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"EU" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"EV" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"EW" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"EX" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"EY" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"EZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Fa" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Fb" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Fc" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Fe" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/grown/potato{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/grown/potato{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Ff" = ( +/obj/item/tool/warning_cone{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Fg" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Fh" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Fi" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp27" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Fk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Fm" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/objective{ + dir = 5 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Fn" = ( +/obj/structure/machinery/photocopier, +/obj/item/spacecash/c100{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Fo" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Fp" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Fq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Fr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/lighter, +/obj/item/device/analyzer, +/obj/item/device/multitool, +/obj/item/device/assembly/prox_sensor, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Fs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Ft" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_y = 12 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Fu" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Fv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Fw" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Fx" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Fz" = ( +/obj/structure/closet/crate, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"FA" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"FB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"FC" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"FD" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/boiledrice{ + layer = 3.1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 18; + pixel_y = 22 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.1; + pixel_y = -9 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/interior/tatami, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"FE" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"FF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"FG" = ( +/obj/structure/catwalk/bigred, +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"FH" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"FI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/sandbags_empty{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/stack/sandbags_empty, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"FJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor{ + dir = 9; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"FK" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"FL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"FN" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"FO" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"FP" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"FQ" = ( +/obj/item/ammo_magazine/lever_action/marksman, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"FR" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"FS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"FT" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/marine/heavy{ + pixel_y = 1 + }, +/obj/item/clothing/head/cmcap{ + pixel_y = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"FU" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"FV" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_y = 15 + }, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"FW" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"FX" = ( +/obj/structure/largecrate/supply/weapons/m41a, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"FY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"FZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Ga" = ( +/obj/structure/machinery/photocopier, +/obj/item/spacecash/c100{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Gb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/spacecash/c1000, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Gc" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Gd" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/under/colonist/clf, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Ge" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Gf" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Gg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Gh" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -3; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Gi" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Gj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + tag = "icon-S" + }, +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Gk" = ( +/obj/structure/bed, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Gl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Gm" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Go" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Gp" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Gq" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Gr" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"Gs" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Gt" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Gu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Gw" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Gx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Gy" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"GA" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp1" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"GC" = ( +/turf/open/floor{ + dir = 10; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"GD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"GE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/shuttle/ert{ + icon_state = "upp23" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"GF" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/stewedsoymeat{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"GJ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"GK" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"GL" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp9" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"GM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"GN" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"GO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"GP" = ( +/obj/structure/curtain/red, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/oob) +"GQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/smg/mp5{ + pixel_y = 3 + }, +/obj/item/weapon/gun/smg/mp5{ + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"GR" = ( +/obj/structure/largecrate, +/obj/item/weapon/gun/rifle/mar40/carbine, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"GS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"GT" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor{ + dir = 1; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"GV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"GW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"GY" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"GZ" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Ha" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Hb" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Hc" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Hd" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"He" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Hf" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Hg" = ( +/turf/open/floor{ + dir = 9; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Hh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Hi" = ( +/obj/structure/machinery/photocopier, +/obj/item/spacecash/c100{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Hk" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Hl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Hm" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Hn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"Ho" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Hp" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Hq" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Hr" = ( +/obj/item/ammo_magazine/rifle/type71{ + current_rounds = 0 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"Hs" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Ht" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Hv" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Hw" = ( +/obj/item/stool, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Hx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Hy" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Hz" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fernybush_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"HA" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"HB" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"HC" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/oob) +"HD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"HE" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"HF" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"HG" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"HH" = ( +/obj/item/ammo_magazine/rifle/type71{ + current_rounds = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"HI" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"HJ" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"HK" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"HL" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"HM" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"HN" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"HO" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"HP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"HQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"HR" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"HS" = ( +/obj/structure/largecrate/supply/explosives/mortar_flare, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"HT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"HU" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"HV" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"HW" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"HX" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"HY" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"HZ" = ( +/obj/structure/surface/table, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal{ + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Ib" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp20" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Ic" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Ie" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper{ + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"If" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Ig" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Ih" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Ii" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Ij" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Ik" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fernybush_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Il" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Im" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"In" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Io" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Ip" = ( +/turf/open/space/basic, +/area/space) +"Iq" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"Ir" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Is" = ( +/turf/closed/wall/strata_ice/jungle, +/area/space) +"It" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/spacecash/c1000, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Iu" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Iv" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Iw" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Ix" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Iy" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Iz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/sandbags_empty{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/stack/sandbags_empty, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"IA" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"IC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"ID" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"IF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 50 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"IH" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"II" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"IJ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/under/colonist/clf, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"IK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"IL" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"IM" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp16" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"IN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"IO" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"IP" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"IQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"IR" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"IS" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"IT" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"IU" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"IV" = ( +/obj/structure/largecrate, +/obj/item/weapon/gun/rifle/l42a/abr40, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"IX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"IZ" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Jb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Jc" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Jd" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -20; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Je" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Jf" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Jg" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Jh" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." + }, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"Ji" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Jj" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"Jn" = ( +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left"; + tag = "icon-hoop (NORTH)" + }, +/obj/item/toy/beach_ball/holoball{ + pixel_y = -16 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Jo" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Jp" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Jq" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Jr" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Jt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Ju" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Jv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Jw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Jx" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Jy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Jz" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"JA" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"JB" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"JC" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"JD" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/packet/smoke{ + pixel_y = 11 + }, +/obj/item/storage/box/packet/smoke{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"JF" = ( +/obj/item/trash/used_stasis_bag, +/obj/item/spacecash/c500{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"JG" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"JH" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"JI" = ( +/obj/structure/largecrate/supply/medicine/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"JJ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"JM" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"JN" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 3; + pixel_y = 14 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"JO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"JP" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"JQ" = ( +/obj/item/stool, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"JR" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"JS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"JT" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"JU" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"JV" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/storage/box/packet/hefa, +/obj/item/storage/box/packet/hefa, +/obj/item/storage/box/packet/hefa, +/obj/item/storage/box/packet/hefa, +/obj/item/storage/box/packet/hefa, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"JW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"JX" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"JY" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"JZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1; + tag = "icon-NW-out" + }, +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Ka" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Kb" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Kc" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Kd" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Ke" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Kf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Kg" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Kh" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Ki" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Kk" = ( +/obj/structure/catwalk/bigred, +/obj/effect/alien/egg, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Km" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Kn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/glass/watertank, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Kp" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Kq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Kt" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Ku" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Kv" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Kw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Kx" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/spacecash/c100{ + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Ky" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Kz" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"KA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"KB" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"KC" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"KD" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"KE" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray, +/obj/item/spacecash/c1000{ + desc = "Holy...fuck five hundred US Government minted hundred-dollar bills. Every single damn one of them has Ben Fucking Franklin on them. The court of Bens sit impatiently, as if each one thought they alone belonged to you. This coven of angry Bens have all since learned about your relations with the other Bens, and they want answers."; + name = "50000 dollars"; + worth = 50000 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"KF" = ( +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"KH" = ( +/obj/structure/bookcase{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"KI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"KJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"KK" = ( +/obj/item/prop{ + desc = "Something about a research lab."; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "USCM classified intelligence folder" + }, +/turf/closed/wall/cult, +/area/LV624_Outpost_Furidamu/oob) +"KL" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"KM" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"KN" = ( +/obj/structure/platform, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"KO" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"KP" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"KQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"KR" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp3" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"KS" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp4" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"KT" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"KU" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"KV" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"KW" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"KX" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"KY" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"KZ" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Lc" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Ld" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Le" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Lf" = ( +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Lg" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Lh" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Li" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Lj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Lk" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Lm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Ln" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/energy/laz_uzi, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Lo" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Lp" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Lq" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Lr" = ( +/obj/item/ammo_box/magazine/type71{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Ls" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Lt" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Lu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Lv" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Lw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Lx" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -21; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Ly" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Lz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"LA" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"LB" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"LC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"LD" = ( +/obj/item/device/lightreplacer, +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"LE" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"LG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"LH" = ( +/obj/item/clothing/suit/storage/jacket/marine/provost/marshal/chief{ + pixel_y = 29 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"LI" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"LJ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/soap{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"LK" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 10; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"LL" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -21 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"LN" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"LO" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"LP" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"LQ" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"LS" = ( +/obj/structure{ + desc = "A drop pod used to launch remote piloting equipment to USCM areas of operation"; + icon = 'icons/obj/structures/droppod_32x64.dmi'; + icon_state = "techpod_open"; + layer = 3.1; + name = "Remote Console Pod" + }, +/obj/structure/machinery/computer/shuttle_control/dropship2{ + layer = 3.1; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_1/lz1_console) +"LT" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"LU" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"LV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"LW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"LX" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"LZ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/pistol/c99/upp, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Mb" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Md" = ( +/obj/structure/machinery/light, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Me" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Mf" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Mg" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Mh" = ( +/obj/structure/largecrate, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Mi" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Mj" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Mk" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"Ml" = ( +/obj/structure/largecrate, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Mn" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Mo" = ( +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Mp" = ( +/obj/structure/platform/kutjevo/rock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Mq" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Mr" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = -8 + }, +/obj/item/explosive/grenade/custom/ied, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 10 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Ms" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Mt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Mu" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"Mv" = ( +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Mw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/suit/storage/militia/partial{ + pixel_x = 7; + pixel_y = -13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Mx" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Mz" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"MA" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"MB" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"MC" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"MD" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"ME" = ( +/obj/item/storage/box/m56d_hmg, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"MF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"MG" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"MH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"MI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"MJ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/obj/structure/machinery/space_heater, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"MK" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"ML" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"MM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"MN" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 5; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"MO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/wishsoup, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"MP" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"MQ" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"MR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"MS" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"MT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"MU" = ( +/obj/structure/sign/poster/clf{ + pixel_x = 12; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"MV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"MW" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"MX" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"MY" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"MZ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/whiskey_outpost_map{ + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Na" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Nb" = ( +/obj/item/trash/used_stasis_bag, +/obj/item/spacecash/c500{ + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Nc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Nd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Ne" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Nf" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Ng" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Nh" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Ni" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -1 + }, +/obj/item/stack/sheet/wood{ + layer = 3; + pixel_x = -33; + pixel_y = -10 + }, +/obj/item/stack/sheet/wood{ + pixel_x = 6; + pixel_y = -14 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Nj" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/toy/handcard/aceofspades{ + icon_state = "diamonds_nine"; + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "diamonds_king" + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "diamonds_four"; + pixel_x = 9 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "diamonds_five"; + pixel_y = 10 + }, +/obj/item/toy/handcard/aceofspades{ + icon_state = "diamonds_eight"; + pixel_x = 14; + pixel_y = 5 + }, +/obj/item/spacecash/c200{ + layer = 3.1; + pixel_x = 17; + pixel_y = 14 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Nk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Nl" = ( +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Nm" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Np" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp1" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Nq" = ( +/obj/structure/fence, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Nr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Nt" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Nu" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Nv" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Nw" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Nx" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Ny" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Nz" = ( +/obj/structure/catwalk/bigred, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"NA" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"NB" = ( +/obj/structure/surface/rack, +/obj/item/prop/colony/canister, +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"NC" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"ND" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"NG" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"NH" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"NI" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/item/device/assembly/infra, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"NK" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"NL" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"NM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"NO" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"NP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fernybush_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"NQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"NR" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"NS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"NT" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"NU" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"NV" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"NW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"NX" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/toolbox/electrical{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"NY" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_y = 15 + }, +/obj/item/clothing/head/helmet/marine/veteran/UPP{ + pixel_x = 6; + pixel_y = 22 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = 18; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"NZ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Oa" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Ob" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Oc" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Od" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Oe" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp16" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Of" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Oi" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Oj" = ( +/obj/structure/catwalk/bigred, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Ol" = ( +/obj/structure/curtain/red, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"Om" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"On" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Oo" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Op" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Os" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Ot" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/LV624_Outpost_Furidamu/oob) +"Ov" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Ow" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Ox" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Oy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Oz" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"OA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"OC" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"OD" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"OE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"OF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"OG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/fertilizer{ + pixel_y = 16 + }, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"OH" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"OI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"OJ" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/obj/item/weapon/gun/m60, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"OM" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"OP" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"OQ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"OR" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"OS" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"OT" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"OU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"OV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"OW" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"OX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"OY" = ( +/obj/structure/catwalk/bigred, +/obj/effect/alien/egg, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"OZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Pa" = ( +/obj/structure/platform, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Pb" = ( +/obj/structure/platform_decoration, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Pc" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Pd" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Pe" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Pf" = ( +/obj/item/weapon/gun/smg/ppsh, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Pg" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Ph" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Pi" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Pj" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Pk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Pl" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Pm" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Pn" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + locked = 1; + name = "\improper Secure Armory"; + req_one_access_txt = "19;106" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Po" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Pq" = ( +/obj/structure/prop/dam/gravestone, +/obj/item/clothing/accessory/medal/gold/service{ + desc = "A prestigious gold medal stained with blood, the name is too hard to make out."; + pixel_y = -16 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Pr" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Ps" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Pt" = ( +/turf/open/floor{ + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Pv" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Pw" = ( +/obj/structure/machinery/computer/telecomms/server{ + layer = 3.9; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Py" = ( +/obj/structure/ore_box, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Pz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/explosive/grenade/custom/ied, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_y = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"PA" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor{ + name = "Shuttle Landing Lights" + }, +/area/lv624/lazarus/landing_zones/lz1) +"PB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"PD" = ( +/turf/open/floor{ + icon_state = "whiteyellow" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"PE" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp27" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"PF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/shuttle/ert{ + icon_state = "upp23" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"PG" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"PH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"PI" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"PJ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"PL" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"PM" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"PN" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"PO" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"PP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"PQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"PR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"PS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"PU" = ( +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"PV" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"PW" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"PX" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"PY" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_x = -3; + pixel_y = 17 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"PZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/plants, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Qa" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Qb" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Qc" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/item/prop{ + desc = "A jerry can. In space! Or maybe a colony."; + icon = 'icons/obj/items/tank.dmi'; + icon_state = "canister"; + item_state = "caution"; + name = "fuel can"; + pixel_x = -3; + pixel_y = 17 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Qe" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Qf" = ( +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Qh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Qj" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Ql" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Qm" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Qn" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"Qo" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Qp" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Qr" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Qs" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Qt" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Qu" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_leftengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Qv" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Qw" = ( +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Qx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Qz" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"QA" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp8" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"QB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_box/magazine/type71{ + pixel_y = 13 + }, +/obj/item/ammo_box/magazine/type71/empty{ + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"QD" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"QF" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"QG" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"QH" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"QI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"QJ" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "Nexus Landing Zone" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"QK" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"QL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"QM" = ( +/obj/structure/sign/poster/clf{ + pixel_x = 4; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"QN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"QO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + tag = "icon-E-corner" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"QP" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"QQ" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"QT" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"QU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"QV" = ( +/obj/structure/prop/server_equipment, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"QW" = ( +/obj/structure{ + desc = "A drop pod used to launch remote piloting equipment to USCM areas of operation"; + icon = 'icons/obj/structures/droppod_32x64.dmi'; + icon_state = "techpod_open"; + layer = 3.1; + name = "Remote Console Pod" + }, +/obj/structure/machinery/computer/shuttle_control/dropship1{ + layer = 3.2; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1/lz1_console) +"QX" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"QY" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"QZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/crowbar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Ra" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Rb" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Rc" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Rd" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Re" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Rf" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Rh" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/auto_turf/strata_grass/layer0/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Ri" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Rj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Rk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Hydroponics" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Rl" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Rm" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Rn" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"Ro" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Rp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Rq" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Rr" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitebluecorner"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Rs" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Rt" = ( +/obj/structure/fence, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Ru" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Rv" = ( +/obj/item/tool/minihoe, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Rw" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Rx" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Ry" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Rz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"RA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -6; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"RB" = ( +/obj/structure/curtain/red, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"RC" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"RE" = ( +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"RG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"RH" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"RI" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"RJ" = ( +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"RK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"RL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"RM" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/case/small{ + pixel_y = 10 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"RN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"RO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"RP" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"RQ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 27 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"RR" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"RS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/surface/rack, +/turf/open/floor{ + dir = 9; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"RT" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"RU" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 22; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"RV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"RX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"RY" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"RZ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Sa" = ( +/obj/structure/machinery/light, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Sb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/box/wy_mre{ + pixel_y = 13 + }, +/obj/item/storage/box/wy_mre{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Sc" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp4" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Sd" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"Se" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Sf" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/militia/partial, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Sh" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/obj/item/ammo_magazine/smg/ppsh{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Si" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Sj" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Sk" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Sl" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Sm" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"So" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Sp" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Sq" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Sr" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Ss" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"St" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Su" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Sv" = ( +/obj/structure/machinery/processor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Sw" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Sx" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Sy" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"SA" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"SB" = ( +/obj/effect/decal/remains/xeno, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"SC" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"SD" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"SE" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/boiledrice, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"SF" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"SG" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -4; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"SH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/ne) +"SI" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"SJ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/tool/pen, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"SK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"SL" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"SM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"SO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"SP" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"SQ" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"SR" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"SS" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"ST" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"SU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"SX" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"SY" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/militia/brace, +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Ta" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"Tb" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Tc" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/sandbags/large_stack{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Td" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Te" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/colonist/ua_civvies, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Tf" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Tg" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Th" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/obj/item/weapon/gun/lever_action/r4t, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"Ti" = ( +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/outdoors/bridge) +"Tj" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Tk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Tl" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"To" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"Tp" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51; + tag = "icon-platform_deco (EAST)" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Tq" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Ts" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Tt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Tu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Tv" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Tw" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Tx" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Ty" = ( +/obj/structure/largecrate, +/obj/item/weapon/gun/smg/ppsh, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Tz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"TA" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 25 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"TB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 3 + }, +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"TD" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/platform{ + dir = 8 + }, +/obj/item/reagent_container/food/snacks/boiledrice, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"TE" = ( +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"TF" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"TG" = ( +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"TH" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"TI" = ( +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"TJ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"TK" = ( +/obj/structure/largecrate/supply/weapons/shotgun, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"TL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"TM" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"TN" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"TO" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"TP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"TQ" = ( +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"TS" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 20 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"TT" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"TU" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"TV" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"TW" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"TY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"TZ" = ( +/obj/vehicle/powerloader, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Ua" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Uc" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Ue" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Uf" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Ug" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Uh" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Uj" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Uk" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Ul" = ( +/obj/structure/prop/invuln{ + density = 0; + desc = "The Almayer has sprung a leak!"; + dir = 8; + icon = 'icons/obj/structures/props/watercloset.dmi'; + icon_state = "water"; + name = "pipe water"; + pixel_x = 10; + pixel_y = 28 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Um" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"Uo" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_x = -4; + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Up" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"Uq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap{ + pixel_y = 2 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Ur" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/rods{ + amount = 15; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Us" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/e) +"Ut" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Uv" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Uw" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Ux" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Uy" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 13; + pixel_y = 2 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -10 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -16; + pixel_y = -11 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Uz" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"UA" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"UC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/under/color/black{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/clothing/under/color/black, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"UD" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"UE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/clf/burst, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"UF" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"UG" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/storage/large_holster/katana/full{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"UH" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"UI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/boltaction, +/obj/item/weapon/gun/boltaction{ + pixel_y = 10 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"UJ" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"UK" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"UL" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"UM" = ( +/obj/item/stack/sheet/wood, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"UN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/sw) +"UO" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"UP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"UQ" = ( +/obj/structure/largecrate, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"UR" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"US" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"UT" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp3" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"UU" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "Bunker_CLF_NW"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"UV" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"UW" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"UY" = ( +/obj/structure/largecrate/supply/explosives/mortar_he, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"UZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + locked = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Va" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Vb" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Vc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"Vd" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Ve" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Vf" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 24 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Vg" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Vh" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/oob) +"Vi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"Vj" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/oob) +"Vl" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Vm" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Vn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Vo" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Vp" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Vq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/farm) +"Vr" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Vs" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/catwalk/bigred, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"Vt" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Vu" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_leftengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Vv" = ( +/turf/open/floor{ + dir = 4; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"Vw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Vx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Vy" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "Robotics Landing Zone" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Vz" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/helmet/marine/veteran/UPP{ + pixel_x = -3 + }, +/obj/item/clothing/head/helmet/marine/veteran/UPP{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"VA" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"VB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/packet/hefa{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/storage/box/packet/hefa{ + layer = 3.1; + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/storage/box/packet/hefa{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"VC" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"VD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"VE" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"VF" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -6 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"VG" = ( +/obj/item/stool, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"VH" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"VJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"VK" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"VL" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor{ + icon_state = "whitebluefull"; + tag = null + }, +/area/LV624_Outpost_Furidamu/oob) +"VM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -10 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"VO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"VP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"VQ" = ( +/turf/open/floor{ + dir = 8; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"VS" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"VT" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"VU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"VV" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"VW" = ( +/obj/structure/surface/rack, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"VX" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"VY" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"VZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Wb" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Wc" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Wd" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"We" = ( +/obj/item/tool/warning_cone{ + pixel_x = -15; + pixel_y = -10 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Wf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Wg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"Wh" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Wj" = ( +/obj/structure/surface/rack, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/hut/tcomm) +"Wk" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Wl" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "distribution" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Wm" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Wn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Wo" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Wp" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Wq" = ( +/obj/structure/sign/poster/clf{ + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Wr" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"Ws" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Wt" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"Wu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/bridge/wood_bridge_lz1_lz2) +"Wv" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Ww" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/obj/item/weapon/yautja/combistick, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/oob) +"Wx" = ( +/obj/structure/platform, +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Wy" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Wz" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"WA" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"WB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"WC" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"WE" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"WF" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"WG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"WH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"WI" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"WJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"WL" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"WM" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 23 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"WN" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"WO" = ( +/turf/open/floor, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"WP" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"WQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"WR" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"WS" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp9" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"WT" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"WU" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"WV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"WW" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"WY" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"WZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp25" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Xa" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Xb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/trash/USCMtray{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Xc" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/oob) +"Xd" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"Xe" = ( +/obj/structure/platform, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Xf" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/suit/storage/militia/vest{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"Xg" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Xh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Xi" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Xj" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"Xk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "whiteblue"; + tag = null + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Xl" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Xm" = ( +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Xn" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Xo" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Xp" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Xq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + tag = "icon-N" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Xs" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/c) +"Xt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Xu" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"Xv" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Xw" = ( +/obj/structure/bed, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/hospital) +"Xx" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"Xy" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Xz" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"XA" = ( +/obj/structure/surface/table, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"XB" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/oob) +"XC" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"XD" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"XE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"XF" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/cent) +"XH" = ( +/obj/structure/curtain/red, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"XK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"XL" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"XM" = ( +/obj/structure/fence, +/turf/open/floor{ + icon_state = "bcircuit"; + tag = null + }, +/area/LV624_Outpost_Furidamu/outdoors/jungle/w) +"XN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"XO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"XP" = ( +/obj/structure/closet/coffin/woodencrate, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"XQ" = ( +/obj/structure/catwalk/bigred, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"XR" = ( +/obj/item/reagent_container/food/snacks/grown/potato, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"XS" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker/noceiling) +"XT" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 9; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"XU" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"XV" = ( +/obj/structure/platform/kutjevo/rock, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"XW" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"XX" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"XY" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"XZ" = ( +/obj/structure/closet/crate/secure/ammo, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Ya" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Yb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"Yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4; + tag = "icon-tube1 (EAST)" + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Yd" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor{ + dir = 1; + icon_state = "warning" + }, +/area/LV624_Outpost_Furidamu/outdoors/bridge/land_bridge) +"Yg" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_leftengine" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Yh" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Yi" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Yj" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Yk" = ( +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"Yl" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Yn" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south/ceiling) +"Yo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"Yp" = ( +/obj/structure/curtain/red, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"Yq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + tag = "icon-N" + }, +/obj/structure/machinery/colony_floodlight{ + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"Yr" = ( +/turf/closed/wall/strata_ice/jungle, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Ys" = ( +/obj/structure/fence, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Yt" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"Yu" = ( +/obj/structure/barricade/sandbags{ + dir = 4 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitepurple" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Yv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/nw) +"Yw" = ( +/obj/structure/bed/stool, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"Yx" = ( +/obj/structure/platform, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"Yy" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"Yz" = ( +/turf/closed/wall/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"YA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"YB" = ( +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors) +"YC" = ( +/obj/structure/largecrate/supply/ammo/m41a_box, +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped, +/obj/structure/catwalk/bigred, +/turf/open/floor/plating, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"YD" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"YE" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/meat/fish, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz2kitchen) +"YF" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/rifle/mar40/carbine{ + current_mag = null; + pixel_y = 9 + }, +/obj/item/weapon/gun/rifle/mar40/carbine{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"YG" = ( +/turf/closed/wall/solaris, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/se) +"YH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/map/lazarus_landing_map{ + pixel_y = 5 + }, +/obj/item/map/lazarus_landing_map{ + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/operation_centre) +"YI" = ( +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/firing) +"YJ" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"YK" = ( +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_kitchen) +"YL" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/e) +"YM" = ( +/obj/structure/machinery/gibber{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/butchers) +"YN" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/tomatosoup{ + desc = "Why would you ever drink this? Its full of mold and yucky slime!"; + pixel_y = 11 + }, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_supply) +"YO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"YP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper LZ1 Access"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"YQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"YR" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"YS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/n) +"YT" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/construction_site) +"YU" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north) +"YV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"YX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mmi/radio_enabled, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"YY" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"YZ" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"Za" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Zb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/weapon/gun/rifle/type71, +/obj/item/weapon/gun/rifle/type71{ + pixel_y = 5 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"Zc" = ( +/obj/structure/bookcase{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Zd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Ze" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"Zf" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Zg" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Zh" = ( +/obj/structure/barricade/sandbags{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"Zi" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"Zk" = ( +/obj/item/fishing_pole, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"Zl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Zm" = ( +/turf/closed/wall/r_wall, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Zn" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Zo" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"Zp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/landing_zone_1) +"Zq" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/sw) +"Zr" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/filtration) +"Zs" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/hut) +"Zt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Zv" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/indoors/buildings/Bunker) +"Zw" = ( +/obj/structure/prop/dam/gravestone{ + icon_state = "gravestone2" + }, +/obj/structure/prop/dam/torii, +/obj/item/clothing/head/headband/rambo{ + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"Zx" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"Zy" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_admin) +"Zz" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ZA" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/north/ceiling) +"ZB" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -29; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"ZC" = ( +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/LV624_Outpost_Furidamu/outdoors/jungle/ne) +"ZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "white" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/securedome) +"ZE" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river) +"ZF" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/nw) +"ZG" = ( +/obj/structure/fence, +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ZH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/sniper/svd{ + pixel_y = 6 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/tonwhall) +"ZI" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/c) +"ZJ" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ZK" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"ZL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/glass, +/obj/item/tool/crowbar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ZM" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + name = "????"; + stat = 2 + }, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ZO" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/gm/river, +/area/LV624_Outpost_Furidamu/outdoors/river/s) +"ZP" = ( +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right"; + tag = "icon-hoop (NORTH)" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ZQ" = ( +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/se) +"ZR" = ( +/obj/structure/barricade/wooden, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/landing_zone_2) +"ZS" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/LV624_Outpost_Furidamu/indoors/buildings/engineering) +"ZT" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) +"ZU" = ( +/obj/item/stool, +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"ZV" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/indoors/buildings/lz1_barracks) +"ZX" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer1/unweedable, +/area/LV624_Outpost_Furidamu/outdoors/jungle/s) +"ZY" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/barrens/south) +"ZZ" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/interior/wood, +/area/LV624_Outpost_Furidamu/outdoors/ua_bunker/s) + +(1,1,1) = {" +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +"} +(2,1,1) = {" +Ip +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ip +"} +(3,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(4,1,1) = {" +Ip +Ot +nf +nf +nf +Xc +Xc +Xc +Yh +Yh +Yh +Yh +Yh +Yh +rJ +rJ +rJ +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +KC +KC +KC +KC +KC +KC +KC +KC +KC +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(5,1,1) = {" +Ip +Ot +nf +nf +nf +Xc +nf +Yh +Yh +Yh +Yh +cr +Yh +rJ +EX +SO +SQ +rJ +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +XF +XF +XF +XF +ng +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +ff +ff +ff +ff +ff +ff +ff +ff +ff +ff +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +KC +KC +KC +UN +cF +cF +cF +UN +KC +KC +KC +Xc +Xc +UN +cF +nf +Xc +Xc +Xc +Xc +Xc +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(6,1,1) = {" +Ip +Ot +nf +nf +Xc +Xc +Xc +Yh +Yh +Yh +Yh +Yh +rJ +iJ +EX +EX +EX +xA +rJ +nf +nf +nf +nf +kH +Jb +xk +xk +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +rh +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +ff +sI +Kq +Ao +sI +sI +go +Kq +Kq +ff +ff +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +cF +nf +UN +vM +cF +vM +cF +cF +bQ +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +UN +Xc +Xc +Xc +cF +UN +cF +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(7,1,1) = {" +Ip +Ot +nf +Xc +Xc +Xc +Yh +Yh +Yh +Yh +Yh +Yh +rJ +KA +EX +EX +EX +EX +FE +Ex +nf +nf +xk +kH +xk +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +xk +xk +Jb +xk +Xc +Xc +Xc +Xc +nf +Jb +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +ff +MM +jb +jb +jb +wg +jb +jb +wg +Kq +ff +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +cF +UN +cF +cF +cF +cF +cF +cF +cF +vM +cF +vM +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +nf +Xc +cF +cF +cF +cF +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(8,1,1) = {" +Ip +Ot +nf +Xc +Xc +nf +Yh +Yh +Yh +Yh +Yh +Yh +rJ +EX +EX +EX +EX +EX +rJ +Bk +Jb +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +xk +xk +xk +Jb +xk +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +Jb +xk +xk +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +Xc +ff +Kq +Kq +jb +Kq +Kq +jb +jb +Dw +Kq +ff +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +vM +cF +vM +cF +cF +cF +cF +Ee +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(9,1,1) = {" +Ip +Ot +nf +Xc +Xc +cr +Yh +Yh +Yh +Yh +Yh +Yh +Yh +rJ +EX +QU +EX +rJ +Yh +Ex +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +Jb +xk +xk +xk +xk +xk +Jb +xk +nf +nf +nf +nf +nf +nf +xk +xk +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +ng +XF +XF +Xc +Xc +XF +XF +ng +XF +XF +XF +XF +XF +ng +XF +Xc +Xc +Xc +Xc +Xc +ff +ff +ff +ff +ff +ff +ff +If +If +ff +ff +nf +nf +nf +Xc +Xc +Cd +fz +fz +Cd +fz +fz +fz +pr +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +vM +cF +vM +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +Xc +KC +KC +KC +KC +KC +KC +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(10,1,1) = {" +Ip +Ot +nf +nf +Xc +Yh +Yh +Yh +Yh +Yh +Yh +Yh +Yh +Yh +rJ +rJ +rJ +Yh +Yh +Ex +xk +xk +xk +nf +nf +nf +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +kH +xk +xk +nf +Jb +xk +xk +xk +xk +xk +xk +xk +kH +Jb +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +Xc +Xc +Xc +Xc +Xc +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +ff +ff +Tk +jB +jB +pX +jB +jB +Tk +jB +jB +ff +ff +nf +nf +Xc +IH +pC +pC +KC +mL +KC +pC +pC +wZ +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +vM +cF +vM +UN +cF +cF +cF +cF +cF +cF +cF +UN +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +ro +KC +hX +hX +DO +fg +fg +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(11,1,1) = {" +Ip +Ot +nf +nf +rJ +rJ +rJ +rJ +rJ +rJ +rJ +Yh +Yh +zI +zI +rG +zI +zI +zI +AE +xk +xk +xk +nf +nf +Xc +Xc +nf +nf +xk +xk +xk +xk +Jb +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +Jb +xk +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ff +nY +Lq +Lq +Lq +Lq +Lq +Lq +Lq +Lq +Lq +ih +ff +nf +nf +Xc +ro +pC +KC +vg +vg +vg +KC +pC +nz +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +vM +cF +vM +cF +cF +cF +cF +cF +cF +QP +cF +QP +cF +QP +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +IH +KC +hf +eP +DO +eP +QQ +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(12,1,1) = {" +Ip +Ot +nf +nf +rJ +gQ +fJ +te +fJ +gQ +rJ +Yh +Ex +xk +wH +xk +xk +xk +xk +xk +xk +xk +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +Jb +Xc +Xc +xk +xk +xk +xk +nf +nf +nf +nf +nf +nf +ng +XF +XF +XF +XF +XF +XF +rh +ng +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +jP +Vc +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +BQ +nf +Xc +Xc +IH +KC +dy +vg +vg +vg +Gt +KC +nz +cF +cF +cF +cF +cF +cF +cF +cF +UN +cF +KC +KC +KC +Xc +Xc +cF +UN +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +fx +aE +RC +RC +cF +IH +KC +kN +DO +KC +DO +kN +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(13,1,1) = {" +Ip +Ot +nf +nf +rJ +Na +Na +te +Na +Na +rJ +Yh +Ex +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +kH +xk +Jb +xk +xk +xk +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +xk +Jb +xk +xk +nf +Xc +Xc +Xc +Xc +nf +nf +Xc +Xc +xk +xk +xk +xk +Jb +nf +nf +nf +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +XF +Uc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +Xc +Xc +IH +KC +Ta +vg +vg +vg +vg +KC +nz +cF +cF +cF +cF +cF +cF +cF +cF +Xc +Xc +Xc +Xc +nf +nf +Xc +Xc +fz +fz +fz +fz +fz +fz +Cd +fz +fz +fz +fz +fz +pr +cF +cF +RC +RC +RC +fx +IH +DO +pC +pC +pC +pC +Rq +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(14,1,1) = {" +Ip +Ot +nf +nf +rJ +pM +te +rJ +te +pM +rJ +Yh +Ex +xk +dW +xk +dW +xk +dW +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +Jb +xk +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +Xc +Xc +nf +nf +Xc +Xc +Xc +xk +xk +xk +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +XF +XF +Xc +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +CA +CA +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +jf +jf +XF +XF +Xc +Xc +IH +KC +cq +vg +vg +vg +Gt +KC +nz +cF +cF +UN +cF +cF +cF +cF +nf +nf +nf +nf +nf +nf +nf +nf +Xc +nf +KC +KC +KC +KC +KC +KC +mL +mL +KC +KC +KC +nz +cF +cF +cF +UN +cF +cF +IH +mL +pC +pC +pC +pC +pC +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(15,1,1) = {" +Ip +Ot +nf +nf +rJ +hM +Yh +hh +cr +Yh +te +Yh +Ex +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +Xc +Xc +Xc +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Jb +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +XF +XF +XF +XF +CA +CA +XF +ng +XF +cS +XF +cS +XF +cS +jf +jf +XF +tR +Qv +jf +jf +ng +XF +Xc +Xc +IH +pC +KC +vg +sh +sh +KC +pC +nz +cF +cF +nf +KQ +KQ +KQ +KQ +nf +nf +nf +nf +nf +nf +nf +nf +nf +KC +KC +OE +EB +vg +UE +UE +vg +vg +cf +KC +bA +nz +cF +cF +cF +cF +cF +cF +IH +DO +pC +pC +pC +pC +Rq +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(16,1,1) = {" +Ip +Ot +nf +nf +rJ +Gq +Yh +Yh +Yh +Yh +FE +cr +Ex +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +kH +kH +kH +nf +nf +XF +ng +XF +XF +XF +XF +XF +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +XF +XF +XF +XF +CA +CA +jf +jf +XF +XF +XF +XF +XF +XF +jf +jf +XF +tR +tR +XF +XF +XF +XF +Xc +cF +IH +pC +pC +KC +KC +KC +pC +bA +nz +cF +nf +nf +cF +cF +cF +cF +cF +nf +nf +nf +nf +nf +nf +nf +KC +KC +SL +vg +vg +vg +vg +vg +vg +vg +zZ +KC +pC +nz +cF +cF +cF +fx +cF +cF +IH +KC +kN +DO +KC +DO +kN +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(17,1,1) = {" +Ip +Ot +nf +nf +rJ +EL +Yh +fL +Yh +gq +te +Yh +Ex +xk +tO +xk +xk +nf +yy +xk +xk +xk +xk +xk +nf +xk +xk +xk +xk +xk +xk +xk +Jb +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Jb +xk +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +Xc +nf +nf +nf +nf +Xc +XF +rh +XF +XF +XF +XF +CA +CA +jf +jf +XF +XF +XF +XF +XF +XF +XF +XF +XF +tR +tR +XF +XF +XF +XF +Xc +cF +qE +JT +Oy +JT +JT +JT +JT +JT +Pv +cF +cF +nf +cF +cF +cF +cF +cF +Xc +nf +nf +nf +nf +nf +nf +KC +EB +vg +vg +vg +vg +vg +vg +vg +vg +yd +KC +pC +nz +cF +cF +RC +RC +cF +cF +IH +KC +QQ +eP +DO +eP +QQ +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(18,1,1) = {" +Ip +Ot +nf +nf +rJ +pM +te +rJ +te +pM +rJ +Yh +Ex +xk +xk +xk +Xc +Xc +Xc +nf +xk +xk +xk +xk +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +nf +nf +nf +nf +xk +xk +Jb +xk +nf +Xc +Xc +Xc +Xc +Xc +xk +xk +xk +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +tR +XF +XF +XF +XF +XF +rh +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +cF +nf +cF +cF +cF +cF +cF +Xc +Xc +nf +nf +nf +nf +nf +KC +OE +Ld +UE +UE +sh +qz +zZ +zZ +KC +KC +KC +pC +Xc +UN +cF +RC +RC +cF +cF +IH +KC +hX +hX +DO +hX +fg +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(19,1,1) = {" +Ip +Ot +nf +nf +rJ +Na +Na +te +Na +Na +rJ +Yh +Ex +xk +xk +xk +nf +Xc +Xc +Xc +Xc +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +Jb +xk +xk +xk +xk +xk +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +Xc +nf +XF +XF +rh +ng +XF +XF +XF +XF +XF +XF +XF +XF +jf +jf +XF +XF +CX +XF +XF +XF +Qv +ng +XF +XF +XF +XF +rh +cF +cF +cF +RC +RC +fx +cF +UN +cF +cF +cF +nf +Xc +Xc +TP +TP +TP +TP +Xc +Xc +Xc +nf +nf +nf +nf +KC +KC +KC +KC +KC +KC +KC +KC +KC +KC +nf +nf +Xc +Xc +Xc +KQ +iN +iN +KQ +KQ +KC +KC +KC +KC +KC +KC +KC +KC +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(20,1,1) = {" +Ip +Ot +nf +nf +rJ +gQ +fJ +te +fJ +dK +rJ +Yh +Ex +xk +xk +nf +nf +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +Jb +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +nf +XF +XF +XF +XF +XF +XF +nf +nf +nf +Xc +Xc +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +jf +jf +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +rh +cF +cF +fx +RC +RC +RC +cF +cF +cF +cF +nf +nf +Xc +Xc +CG +CG +CG +CG +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +cF +fx +RC +cF +cF +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(21,1,1) = {" +Ip +Ot +nf +nf +rJ +rJ +rJ +rJ +rJ +rJ +rJ +Yh +Ex +xk +xk +nf +kH +xk +xk +ew +rV +rV +xk +xk +Jb +xk +xk +xk +xk +Jb +xk +xk +xk +xk +xk +xk +xk +kH +Jb +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +rh +ng +XF +XF +XF +XF +XF +XF +nf +nf +Xc +Xc +ng +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +cu +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +nf +Xc +UN +cF +cF +cF +cF +cF +cF +cF +cF +nf +Xc +Xc +pj +CG +CG +CG +CG +CG +Xc +Xc +Xc +nf +nf +nf +nf +zf +Mf +uf +pl +pl +pl +nf +nf +nf +nf +nf +nf +nf +Xc +TP +dl +TP +TP +TP +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(22,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +Yh +Yh +Ex +xk +xk +xk +kH +xk +xk +xk +rV +rV +ew +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +nf +nf +Xc +Xc +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +nf +xk +xk +rh +XF +XF +XF +XF +Xc +XF +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +rh +XF +XF +XF +ng +nf +nf +nf +ng +XF +XF +XF +XF +XF +XF +XF +XF +jf +jf +XF +XF +XF +XF +nf +nf +Xc +cF +cF +cF +cF +cF +UN +cF +nf +nf +nf +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +nf +nf +nf +CG +zf +Mf +pl +Ha +Ha +Jw +pl +nf +nf +Xc +nf +nf +nf +CG +CG +pj +CG +CG +CG +pj +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(23,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +cr +Yh +Yh +Ex +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +ew +xk +xk +xk +xk +xk +xk +Xc +Xc +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +xk +xk +Jb +xk +xk +xk +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +Xc +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +Xc +Xc +XF +XF +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +XF +XF +XF +XF +jf +jf +XF +XF +XF +ng +Xc +nf +Xc +Xc +cF +cF +cF +cF +cF +nf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +pj +CG +CG +nf +CG +nf +CG +zf +pl +vp +oR +oR +oR +oR +pl +Xc +Xc +nf +nf +nf +CG +CG +CG +CG +CG +CG +CG +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(24,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +rJ +Yh +fL +Yh +Yh +KX +Vw +KX +nf +nf +nf +xk +xk +xk +Xc +xk +xk +rV +rV +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +xk +kH +xk +xk +xk +xk +xk +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +Xc +Xc +XF +XF +XF +XF +Xc +Xc +Xc +XF +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +XF +XF +XF +XF +Qv +XF +XF +XF +Xc +nf +nf +Xc +Xc +cF +UN +Xc +Xc +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +pj +CG +CG +zf +pl +AT +oR +oR +oR +xH +pl +Xc +Xc +nf +nf +nf +CG +CG +CG +ZZ +CG +CG +CG +CG +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(25,1,1) = {" +Ip +Ot +nf +nf +rJ +rJ +rJ +rJ +rJ +rJ +rJ +FE +FE +rJ +rJ +nf +nf +nf +xk +xk +xk +xk +Xc +nf +xk +rV +rV +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Jb +xk +xk +kH +xk +xk +xk +xk +xk +xk +nf +xk +xk +nf +XF +ng +XF +XF +XF +XF +XF +ng +Xc +Xc +nf +ng +XF +XF +XF +XF +XF +XF +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +XF +ng +XF +XF +tR +tR +XF +Xc +Xc +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +pj +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +zf +pl +yp +oR +oR +oR +Jw +pl +Xc +CG +nf +nf +pj +CG +CG +md +md +CG +CG +CG +CG +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(26,1,1) = {" +Ip +Ot +nf +rJ +rJ +xA +SO +SQ +xA +EX +eO +EX +EX +xA +rJ +nf +Xc +nf +xk +xk +xk +nf +Xc +Xc +xk +xk +rV +rV +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +xk +xk +xk +xk +xk +kH +xk +xk +xk +xk +xk +xk +xk +xk +xk +rh +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +tR +tR +XF +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +zf +Mf +pl +oR +oR +oR +pl +Mf +SR +CG +nf +CG +CG +CG +CG +md +md +CG +CG +CG +CG +CG +nf +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(27,1,1) = {" +Ip +Ot +nf +rJ +EX +EX +EX +EX +EX +EX +EX +EX +EX +EX +rJ +nf +Xc +Xc +Jb +xk +xk +Xc +Xc +Xc +xk +xk +xk +rV +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Jb +xk +xk +xk +xk +Yv +xk +Xc +Xc +Xc +xk +Jb +xk +xk +xk +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +tR +Qv +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +CG +CG +CG +CG +CG +CG +CG +CG +pj +CG +CG +CG +CG +CG +CG +CG +CG +zf +uf +Mf +pl +os +pl +Mf +Mf +OZ +CG +CG +CG +md +ZZ +CG +md +md +pj +CG +CG +CG +CG +CG +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(28,1,1) = {" +Ip +Ot +nf +rJ +PN +EX +EX +EX +EX +EX +EX +EX +EX +EX +rJ +Xc +Xc +Xc +xk +xk +xk +Xc +Xc +Xc +Xc +Jb +xk +ew +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +xk +xk +xk +xk +xk +xk +nf +nf +Xc +Xc +Xc +Xc +Xc +xk +xk +xk +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +nf +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +rh +rh +IX +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +DJ +Go +Go +Go +Go +Go +Go +Go +YY +CG +ZZ +md +md +md +CG +md +md +CG +CG +CG +CG +CG +CG +CG +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(29,1,1) = {" +Ip +Ot +nf +rJ +xA +EX +EX +EX +EX +EX +EX +xA +SQ +rJ +rJ +Xc +Xc +xk +xk +xk +xk +Xc +Xc +Xc +Xc +xk +xk +xk +Xc +nf +nf +nf +nf +nf +nf +nf +nf +xk +xk +xk +xk +xk +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +ZZ +CG +CG +CG +CG +CG +CG +CG +CG +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(30,1,1) = {" +Ip +Ot +nf +rJ +rJ +EX +QU +EX +xA +EX +EX +QU +SQ +rJ +Xc +Xc +Xc +xk +xk +xk +xk +Xc +Xc +Xc +Xc +xk +xk +xk +Xc +nf +nf +nf +nf +nf +nf +nf +xk +xk +xk +xk +xk +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +nf +nf +XF +XF +XF +XF +nf +XF +XF +XF +XF +XF +ng +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +XF +XF +XF +ng +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +pj +CG +CG +CG +CG +CG +CG +qX +xI +xI +xI +xI +xI +xI +xI +hg +xI +xI +xI +xI +xI +xI +xI +nf +nf +nf +pj +CG +CG +CG +CG +CG +CG +CG +CG +CG +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(31,1,1) = {" +Ip +Ot +nf +nf +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +Xc +Xc +Xc +xk +xk +xk +nf +Xc +Xc +nf +nf +kH +kH +kH +Xc +Xc +nf +nf +nf +nf +nf +nf +xk +xk +xk +Jb +xk +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +nf +nf +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +ng +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +JS +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +uf +nf +nf +nf +CG +CG +CG +CG +CG +CG +CG +CG +pj +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(32,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +kH +kH +kH +nf +Xc +Xc +nf +FH +FH +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +xk +xk +xk +xk +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +ng +XF +XF +XF +XF +Xc +nf +nf +nf +XF +XF +XF +XF +XF +XF +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +XF +Qv +tR +XF +XF +XF +Xc +nf +nf +nf +nf +Xc +ng +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +zf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +nf +nf +nf +nf +CG +CG +pj +CG +CG +CG +CG +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(33,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +FH +FH +FH +FH +wG +FH +FH +FH +FH +FH +FH +ur +nu +Xc +Xc +Xc +nf +nf +nf +xk +xk +xk +xk +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +Xc +nf +nf +nf +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +tR +tR +tR +XF +XF +nf +nf +nf +nf +nf +Xc +XF +CG +CG +CG +CG +CG +CG +ZZ +md +md +Zt +CG +CG +zf +Mf +Lj +IR +IR +IR +IR +IR +IR +IR +IR +IR +IR +IR +IR +xs +Mf +nf +nf +nf +nf +Xc +Xc +TP +TP +TP +TP +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(34,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +wG +nu +nu +nu +Xc +Xc +FH +FH +nf +kH +kH +kH +kH +nf +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +XF +XF +XF +tR +tR +tR +tR +XF +XF +XF +XF +XF +XF +XF +XF +CG +CG +CG +CG +CG +CG +CG +md +md +md +ZZ +CG +zf +Mf +Kf +qX +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +GC +kE +Mf +Mf +nf +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +pj +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(35,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +nu +nu +nu +FH +FH +FH +FH +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +Xc +nf +ng +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +XF +XF +XF +tR +tR +Qv +XF +ng +XF +XF +XF +XF +XF +XF +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +zf +Mf +Kf +zf +Mf +Ib +KS +RH +Bt +KS +Yg +rO +ZT +Io +SR +kE +Mf +Mf +nf +Xc +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(36,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +Xc +FH +FH +FH +FH +FH +nu +Rz +ur +FH +FH +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +ng +XF +XF +XF +Xc +nf +XF +XF +XF +XF +XF +XF +XF +XF +XF +ng +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +tR +XF +XF +XF +XF +Qv +tR +tR +tR +XF +CG +CG +CG +pj +CG +CG +CG +CG +CG +CG +CG +CG +pl +Mf +Kf +zf +Ib +be +iX +wq +hK +hK +dh +KS +KS +ni +SR +kE +Mf +Mf +Mf +Xc +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Ot +Ip +"} +(37,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +wG +FH +FH +FH +wG +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +wG +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +ng +XF +XF +XF +XF +XF +XF +XF +XF +XF +tR +tR +tR +tR +ZZ +CG +CG +CG +CG +CG +CG +CG +pl +pl +pl +pl +pl +LG +Kf +zf +Ev +BN +eB +iX +iX +iX +eA +wq +cK +Zx +SR +kE +Mf +Mf +Mf +Xc +Xc +Xc +Xc +pj +CG +CG +CG +CG +nf +CG +CG +CG +CG +CG +CG +CG +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +Ot +Ip +"} +(38,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +CG +CG +CG +CG +CG +CG +CG +CG +pl +uf +Mf +Mf +pl +Mf +Kf +zf +Ev +Ob +iX +iX +iX +iX +eA +eA +cK +Zx +SR +kE +Mf +Mf +nf +Xc +Xc +Xc +CG +CG +CG +CG +CG +Xc +Xc +Xc +pj +CG +CG +CG +pj +CG +CG +CG +Xc +Xc +Xc +Xc +nf +nf +nf +Ot +Ip +"} +(39,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +XF +rh +ng +XF +nf +nf +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +ng +nf +XF +Xc +Xc +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +CG +CG +CG +CG +CG +CG +CG +CG +pl +rr +Mf +Mf +Mf +Mf +Kf +zf +WZ +pW +oc +eA +lc +lc +WS +ra +ra +UT +SR +kE +Mf +Mf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +Xc +Xc +Xc +nf +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +Xc +nf +nf +nf +Ot +Ip +"} +(40,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +FH +wG +FH +FH +FH +FH +ur +nu +FH +wG +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +pj +Xc +CG +CG +CG +CG +CG +CG +pl +LG +Mf +Mf +Mf +Mf +Kf +zf +Mf +WZ +ra +RH +ra +ra +vx +Kz +DD +Dt +SR +kE +Mf +Mf +nf +nf +Xc +CG +CG +CG +CG +CG +CG +Xc +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +nf +nf +nf +Ot +Ip +"} +(41,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +nu +nu +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +nf +Xc +nf +nf +nf +Xc +Xc +Xc +ng +XF +XF +Xc +nf +nf +nf +Xc +Xc +Xc +XF +XF +Xc +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +CG +ZZ +CG +CG +CG +zf +Mf +Mf +Mf +Mf +Mf +Kf +DJ +Go +Go +Go +Go +Go +Go +Go +Go +Go +Go +YY +kE +Mf +Mf +Mf +nf +Xc +CG +CG +CG +CG +pj +nf +Xc +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +pj +CG +Xc +Xc +nf +nf +nf +Ot +Ip +"} +(42,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +nu +nu +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +ng +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +rh +XF +XF +XF +ng +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +Xc +md +md +CG +CG +CG +JS +Mf +Mf +Mf +Mf +Mf +lr +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +Fv +Mf +Mf +Mf +nf +Xc +CG +CG +CG +CG +CG +Xc +Xc +Xc +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +nf +nf +nf +Ot +Ip +"} +(43,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +wG +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +qo +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +nf +nf +Xc +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +Xc +ng +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ng +XF +XF +XF +rh +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +pj +md +md +CG +pl +pl +pl +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +uf +pl +Xc +nf +pj +CG +CG +CG +CG +nf +Xc +Xc +Xc +nf +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +nf +nf +Ot +Ip +"} +(44,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +wG +FH +FH +FH +FH +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +rh +ng +XF +XF +XF +XF +XF +XF +XF +XF +ng +nf +nf +Xc +Xc +CG +md +md +CG +nf +nf +pl +Mf +Mf +Mf +df +Mf +Mf +Mf +Mf +df +Mf +Mf +Mf +Mf +df +Mf +Mf +Mf +Mf +Mf +df +Mf +pl +nf +Xc +Xc +Xc +CG +CG +CG +CG +CG +Xc +Xc +Xc +nf +CG +pj +CG +CG +CG +CG +CG +CG +CG +CG +Xc +nf +nf +Ot +Ip +"} +(45,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +FH +FH +FH +FH +FH +ur +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +ng +Xc +Xc +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ng +XF +XF +XF +XF +XF +XF +Xc +Xc +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +nf +nf +Xc +nf +CG +ZZ +CG +CG +nf +nf +zf +Mf +Mf +Mf +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +Zg +Zg +pl +pl +nf +nf +nf +Xc +Xc +Xc +CG +CG +CG +CG +CG +CG +nf +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +nf +Ot +Ip +"} +(46,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +Xc +Xc +wG +FH +FH +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +FH +nu +FH +wG +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +Xc +Xc +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +XF +XF +XF +XF +XF +XF +XF +ng +Xc +Xc +Xc +XF +XF +XF +XF +Xc +Xc +nf +nf +nf +nf +nf +nf +CG +CG +CG +CG +CG +CG +zf +Mf +Mf +Xc +pl +Kk +Kk +pl +Lz +Kg +Lz +pl +Kk +Kk +pl +AH +sd +Fc +sd +FZ +pl +pl +nf +nf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +nf +Ot +Ip +"} +(47,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Xc +Xc +Xc +FH +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +FH +FH +FH +nu +nu +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +XF +XF +XF +XF +XF +Xc +Xc +Xc +Xc +gt +xt +YU +MX +Xc +Xc +Xc +nf +nf +nf +nf +XF +XF +XF +XF +XF +Xc +nf +Xc +Xc +Xc +ng +XF +XF +XF +XF +nf +nf +nf +nf +XF +XF +XF +ng +Xc +Xc +nf +nf +nf +nf +Xc +cU +CG +CG +CG +CG +CG +CG +JS +Mf +Xc +Xc +pl +Vn +sd +sd +od +sd +od +Zg +sd +Vn +Zg +sd +sd +sd +sd +Fc +Kg +pl +nf +nf +nf +nf +nf +Xc +Xc +CG +pj +CG +CG +CG +CG +pj +CG +CG +CG +CG +pj +CG +CG +CG +pj +CG +Xc +Xc +nf +Ot +Ip +"} +(48,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +wG +FH +FH +nu +nu +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +nf +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +Ik +YU +YU +YU +YU +YU +YU +Xc +Xc +nf +nf +nf +ng +XF +XF +XF +XF +Xc +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +CG +CG +CG +CG +CG +CG +nf +nf +Xc +Xc +pl +sd +sd +sd +sd +Fc +sd +Zg +sd +sd +Zg +sd +sd +sd +sd +Kg +cV +pl +nf +nf +nf +nf +Xc +Xc +Xc +nf +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +nf +Ot +Ip +"} +(49,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +nu +nu +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +YU +YU +YU +YU +kv +kv +kv +kv +Xc +kv +nf +nf +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +CG +CG +CG +pj +nf +nf +nf +nf +Xc +Xc +pl +gz +sd +sd +sd +sd +Vn +pl +OY +OY +pl +bj +hN +jd +Kg +vE +pl +pl +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +CG +Xc +Xc +Ot +Ip +"} +(50,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +wG +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +ur +FH +FH +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +ng +XF +XF +XF +XF +XF +XF +Xc +Xc +Xc +gt +xt +kv +kv +kv +kv +kv +kv +kv +kv +kv +rh +XF +XF +XF +XF +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Dj +Dj +Dj +Dj +HE +HE +nf +nf +Xc +nf +pl +pl +OY +OY +OY +OY +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +pl +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +pj +CG +CG +CG +Xc +CG +CG +CG +CG +CG +CG +Xc +Xc +Ot +Ip +"} +(51,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +FH +wG +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +XF +XF +XF +XF +XF +XF +nf +Xc +Xc +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +rh +XF +XF +XF +Xc +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +aZ +oK +oK +oK +oK +oK +oK +aZ +nf +nf +nf +nf +nf +pl +pl +pl +pl +pl +pl +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +GK +Xc +Xc +Xc +GK +GK +GK +GK +GK +Xc +Xc +Ot +Ip +"} +(52,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +wG +FH +FH +FH +FH +FH +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +FH +wG +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +XF +XF +XF +XF +XF +nf +nf +Xc +Xc +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +rh +XF +XF +ng +Xc +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +oK +aZ +oK +oK +oK +oK +nf +Xc +oK +oK +oK +YZ +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +Xc +Ot +Ip +"} +(53,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +rU +rU +rU +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +rh +rh +rh +rh +nf +Xc +Xc +Xc +MX +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +XF +XF +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +oK +oK +oK +Dj +oK +oK +oK +oK +oK +oK +oK +oK +Xc +Xc +oK +oK +Hv +Hv +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +GK +GK +NM +GK +Xc +Ot +Ip +"} +(54,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +wG +FH +FH +FH +wG +FH +FH +FH +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +FH +FH +FH +wG +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +kv +kv +kv +dO +kv +kv +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +gE +gE +Tg +gE +oK +oK +oK +oK +oK +oK +Dj +oK +oK +oK +oK +oK +oK +oK +oK +oK +Xc +oK +oK +Hv +Hv +oK +oK +oK +oK +aZ +HE +HE +HE +HE +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +Xc +Xc +GK +GK +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +GK +Xc +Ot +Ip +"} +(55,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +wG +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +wG +FH +FH +FH +nf +nf +nf +nf +nf +rU +rU +rU +rU +Xc +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +kv +kv +kv +kv +kv +kv +kv +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +gE +gE +gE +gE +aZ +oK +oK +oK +oK +oK +aZ +Dj +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +Hv +Hv +oK +oK +oK +oK +oK +Dj +aZ +oK +oK +oK +oK +aZ +oK +oK +oK +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +nf +nf +nf +nf +YG +YG +YG +GK +GK +YG +GK +NM +GK +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +Xc +Xc +Ot +Ip +"} +(56,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +nf +nf +nf +wG +FH +FH +FH +FH +FH +FH +FH +FH +wG +FH +rU +kv +kv +kv +kv +kv +kv +kv +dO +kv +Xc +Xc +Xc +Xc +TM +TM +TM +TM +TM +nf +nf +Xc +nf +dO +kv +kv +kv +kv +kv +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +gE +ec +Gp +oK +oK +oK +oK +oK +oK +oK +oK +Xc +Xc +Xc +Xc +nf +nf +oK +aZ +oK +oK +oK +oK +oK +oK +YZ +oK +oK +oK +oK +oK +Dj +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +oK +oK +dA +NM +GK +GK +GK +YG +Xc +GK +GK +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +Xc +nf +Ot +Ip +"} +(57,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +rU +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +rU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +Xc +Xc +TM +Bv +bx +Ek +TM +nf +Xc +Xc +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +gE +gE +oK +oK +oK +oK +oK +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +nf +oK +oK +oK +Xc +Xc +nf +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +dA +GK +GK +GK +GK +YG +Xc +Xc +GK +GK +GK +GK +GK +Xc +Xc +Xc +Xc +GK +GK +GK +Xc +nf +Ot +Ip +"} +(58,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +SH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +rU +dO +kv +kv +kv +kv +kv +Ts +Wt +Wt +kv +kv +kv +Mt +TM +FW +jk +CT +TM +nf +nf +Xc +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Hz +gE +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +oK +oK +oK +oK +oK +nf +nf +nf +oK +aZ +oK +Xc +Xc +nf +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +dA +GK +GK +GK +GK +YG +Xc +Xc +Xc +GK +NM +GK +GK +GK +Xc +Xc +GK +GK +NM +GK +Xc +nf +Ot +Ip +"} +(59,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +rU +FH +FH +FH +FH +FH +wG +FH +FH +FH +FH +FH +Xc +Xc +kv +kv +kv +kv +kv +kv +kv +Wt +Wt +Wt +kv +kv +fR +TM +wn +BU +BU +TM +TM +TM +Xc +Xc +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +nf +nf +kv +Xc +Xc +Xc +Xc +Xc +Xc +Xc +gE +gE +oK +oK +oK +oK +oK +oK +nf +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +oK +oK +oK +oK +oK +oK +nf +nf +nf +oK +oK +oK +nf +Xc +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +dA +GK +GK +GK +GK +YG +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +Xc +Xc +nf +Ot +Ip +"} +(60,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +wG +FH +FH +FH +Xc +FH +FH +FH +FH +FH +FH +FH +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +kv +kv +kv +kv +kv +kv +dO +Wt +Wt +kv +kv +fR +TM +LH +BU +BU +bF +HZ +TM +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +kv +kv +kv +Xc +Xc +Xc +Xc +Xc +Xc +Xc +gE +oK +oK +oK +oK +oK +oK +nf +nf +nf +Xc +Xc +Xc +oK +oK +nf +nf +oK +oK +oK +Xc +HE +aZ +oK +oK +oK +oK +oK +oK +oK +Dj +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +Xc +nf +nf +Xc +Xc +nf +nf +dA +dA +dA +dA +YG +Xc +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +Xc +nf +nf +Ot +Ip +"} +(61,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Xc +FH +FH +FH +nf +Xc +nf +FH +wG +FH +FH +nf +nf +Xc +Xc +Xc +Xc +wG +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +dO +kv +kv +kv +kv +kv +Ts +kv +kv +fR +TM +nL +Cn +iU +BU +BU +nT +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +Xc +Xc +Xc +Xc +Xc +Xc +gE +gE +oK +oK +oK +oK +oK +Xc +nf +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +aZ +HE +HE +HE +HE +Dj +Dj +Dj +HE +HE +HE +HE +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +Xc +Xc +Xc +GK +NM +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +Xc +Xc +Xc +Xc +Hg +Le +Le +Le +Le +Le +nQ +Xc +nf +nf +Ot +Ip +"} +(62,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +rU +rU +rU +nf +nf +Xc +Xc +FH +FH +FH +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +nf +Xc +nf +kv +kv +kv +kv +kv +kv +fR +TM +TM +TM +TM +TM +TM +TM +wt +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +Xc +Xc +nf +Xc +Xc +Xc +Jv +gE +aZ +oK +oK +oK +nf +Xc +Xc +aZ +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +HE +nf +nf +nf +nf +oK +oK +oK +oK +oK +oK +oK +Xc +Xc +Xc +nf +nf +nf +nf +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +NM +YG +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +YG +YG +at +at +at +YG +nf +nf +Ot +Ip +"} +(63,1,1) = {" +Ip +Ot +nf +nf +nf +nf +FH +wG +FH +FH +FH +FH +Xc +Xc +nf +nf +rU +rU +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +nf +Xc +Xc +kv +kv +kv +dO +kv +kv +Rl +ba +jn +ba +ba +ba +ba +ba +EQ +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +Xc +Xc +nf +nf +Xc +Xc +Xc +gE +gE +oK +oK +oK +oK +nf +nf +Xc +oK +wi +qr +Xp +Oe +qr +Qu +zL +Yn +vq +oK +oK +oK +oK +YZ +oK +oK +oK +oK +oK +oK +oK +HE +nf +nf +nf +oK +oK +oK +oK +aZ +nf +nf +Xc +Xc +Xc +nf +nf +nf +nf +nf +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +GK +GK +GK +NM +Xc +YG +YG +Ii +Ii +gP +gP +YG +YG +nf +Ot +Ip +"} +(64,1,1) = {" +Ip +Ot +nf +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +nf +nf +FH +FH +wG +nf +nf +nf +MK +MK +MK +MK +MK +MK +MK +nf +nf +nf +nf +nf +nf +MK +MK +MK +Xc +Xc +Xc +Xc +kv +kv +kv +kv +Ts +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +TM +TM +oH +oH +oH +oH +oH +oH +oH +TM +TM +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +Xc +Xc +gE +gE +oK +oK +oK +aZ +nf +nf +oK +wi +kW +AK +Cz +OP +OP +kJ +qr +qr +Np +oK +oK +oK +oK +Hv +Hv +oK +oK +nf +oK +oK +oK +HE +nf +oK +oK +oK +oK +oK +oK +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +NM +GK +GK +GK +GK +GK +NM +YG +YG +dA +dA +YG +Xc +NM +GK +GK +GK +GK +Xc +YG +Ci +Ii +Ii +Ii +gP +gP +YG +nf +Ot +Ip +"} +(65,1,1) = {" +Ip +Ot +nf +nf +nf +wG +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +nf +nf +MK +MK +fr +lN +hT +fr +MK +MK +MK +ft +GR +nf +FX +YC +sR +MK +lj +Vs +Xc +Xc +Xc +dO +kv +kv +kv +Wt +Wt +kv +kv +kv +kv +kv +kv +kv +dO +Ts +kv +kv +kv +kv +TM +TM +uJ +Ya +Ya +Ya +mr +Ya +Lm +Ya +Ya +TM +TM +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +Xc +Xc +ec +Gp +oK +oK +oK +nf +Xc +oK +oK +PE +qG +wV +jN +jN +FR +mB +mB +bT +yh +aZ +oK +oK +oK +Hv +Hv +oK +aZ +nf +nf +oK +oK +Dj +oK +oK +oK +oK +oK +oK +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +GK +GK +GK +GK +GK +YG +YG +YG +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +Jo +YG +gP +gP +Ii +Ii +Ii +gP +YG +nf +Ot +Ip +"} +(66,1,1) = {" +Ip +Ot +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +nf +nf +MK +fr +Fq +nj +py +Fq +fr +MK +IV +Nz +Pf +MK +nM +Nz +Bn +MK +sH +nX +kS +Xc +Xc +Xc +jY +WN +WN +xf +rE +Wt +kv +kv +kv +kv +kv +kv +kv +Wt +Wt +kv +kv +kv +TM +Lm +Ya +Ya +Lm +Ya +bP +Ya +Ya +Ya +Ya +Lm +TM +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +Xc +Xc +Xc +Xc +gE +oK +oK +aZ +nf +Xc +oK +oK +PE +TL +jN +jN +Bf +jN +mB +mB +Ew +yh +oK +oK +oK +oK +Hv +Hv +oK +nf +nf +nf +nf +oK +Dj +oK +oK +oK +oK +aZ +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +Hg +Iv +YG +Ii +gP +gP +Ii +Ii +OX +YG +nf +Ot +Ip +"} +(67,1,1) = {" +Ip +Ot +nf +nf +nf +FH +FH +FH +QH +FH +wG +FH +FH +wG +FH +FH +FH +FH +FH +nf +MK +fr +kI +oj +vW +hT +fr +MK +Ty +GN +Dx +MK +DH +Nz +vB +MK +mj +nX +TW +Xc +Xc +Xc +Pq +gu +gu +Lu +kv +Ts +kv +kv +Ts +Wt +kv +kv +kv +kv +Ts +kv +kv +kv +fR +Ya +mr +mi +Mv +Ya +UY +Ya +AV +Mv +vY +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +Xc +Xc +Xc +Xc +Dj +Dj +Dj +nf +nf +oK +aZ +oK +zK +GE +AK +mB +rj +rj +mk +RY +RY +aV +oK +oK +oK +aZ +oK +YZ +oK +nf +nf +nf +nf +nf +nf +aZ +oK +oK +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +GK +GK +GK +GK +GK +NM +YG +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +Jo +YG +YG +YG +kQ +gP +Ii +gP +YG +YG +nf +Ot +Ip +"} +(68,1,1) = {" +Ip +Ot +nf +nf +nf +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +wG +Xc +MK +fr +hT +oJ +pG +hT +fr +MK +bV +GN +gm +MK +uU +Nz +ai +MK +we +nX +tS +Xc +Xc +Xc +Zw +gu +gu +Lu +kv +kv +kv +kv +kv +Wt +Wt +kv +kv +kv +kv +kv +kv +kv +fR +Ya +Mv +Mv +Mv +Ya +Ya +Ya +jD +Mv +AV +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +Xc +Xc +Xc +Xc +oK +oK +oK +oK +oK +oK +oK +oK +oK +zK +RY +Xp +RY +RY +yu +wm +pS +Qa +oK +oK +oK +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +Xc +Xc +GK +NM +GK +GK +Xc +GK +GK +Jo +YG +Ci +gP +YG +Ii +Ii +CI +Ii +YG +nf +Ot +Ip +"} +(69,1,1) = {" +Ip +Ot +nf +nf +Xc +FH +FH +FH +QH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +MK +fr +hT +oJ +pG +hT +fr +MK +MK +Eu +MK +MK +MK +Eu +MK +MK +MK +Eu +MK +MK +nf +Xc +ww +gu +gu +Lu +kv +kv +kv +kv +kv +dO +Ts +kv +kv +kv +kv +kv +Wt +Ts +fR +Ya +Lm +Ya +Ya +Ya +TM +Ya +Ya +Ya +Ya +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +Xc +nf +nf +Xc +Xc +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +NM +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +Xc +Xc +GK +GK +GK +nf +Xc +Xc +GK +Jo +YG +gP +Ii +Ii +Ii +Ii +Ii +Ii +YG +nf +Ot +Ip +"} +(70,1,1) = {" +Ip +Ot +nf +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +MK +fr +kI +FD +pG +hT +fr +MK +Hf +GN +cP +gm +gm +GN +we +Cw +gm +GN +DI +MK +nf +Xc +xB +Ht +Ht +EQ +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +Wt +Wt +Wt +fR +yA +Mv +Mv +Ya +TM +TM +TM +Ya +oG +HS +jD +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +Xc +Xc +aZ +oK +oK +oK +oK +oK +oK +oK +oK +XT +bS +bS +bS +bS +bS +bS +bS +bS +bS +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +GK +GK +GK +GK +GK +GK +GK +YG +YG +Xc +Xc +Xc +GK +GK +GK +Xc +Xc +nf +GK +Jo +aC +Ii +Ii +Ii +Nk +Ii +Ii +Ii +YG +nf +Ot +Ip +"} +(71,1,1) = {" +Ip +Ot +nf +Xc +Xc +FH +FH +FH +QH +FH +wG +FH +FH +FH +FH +FH +FH +FH +FH +Xc +MK +fr +Al +Al +Al +Al +fr +MK +ku +GN +GN +GN +um +zV +we +GN +GN +GN +CY +MK +nf +Xc +Xc +YU +YU +DN +YU +kv +kv +dO +kv +kv +kv +kv +kv +kv +Ts +Wt +Wt +kv +fR +Ya +Ya +Ya +Ya +Ya +TM +Lm +Ya +Ya +Ya +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +nf +nf +nf +Xc +Xc +Jv +oK +oK +oK +oK +oK +oK +oK +he +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +oK +oK +oK +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +GK +GK +GK +GK +GK +GK +GK +GK +YG +Xc +Xc +Xc +GK +GK +GK +GK +NM +GK +GK +Jo +aC +Ii +Ii +OX +Ii +Ii +Ii +Ii +YG +nf +Ot +Ip +"} +(72,1,1) = {" +Ip +Ot +nf +Xc +Xc +wG +FH +FH +FH +FH +FH +FH +FH +FH +wG +FH +FH +FH +Xc +Xc +MK +MK +rD +Al +Al +rD +MK +MK +fw +Vz +hv +tS +we +we +cP +cp +nG +mX +Ji +MK +nf +nf +Xc +gt +xt +YU +YU +Jx +kv +kv +kv +kv +kv +kv +kv +kv +dO +Wt +kv +kv +fR +Ya +TK +AV +Mv +Ya +Ya +Ya +Mv +hy +ig +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +nf +nf +Xc +gE +gE +gE +oK +oK +oK +oK +oK +he +WO +xz +Bp +hL +hL +xz +xz +xz +xz +xz +xz +xz +xz +aZ +oK +oK +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +GK +GK +GK +GK +NM +GK +GK +GK +GK +GK +Xc +Xc +Xc +NM +GK +GK +GK +GK +GK +GK +Jo +aC +Ii +Ii +Ii +Nk +Ii +Ii +gP +YG +nf +Ot +Ip +"} +(73,1,1) = {" +Ip +Ot +nf +Xc +Xc +Xc +FH +FH +FH +FH +FH +FH +FH +FH +FH +FH +wG +Xc +Xc +Xc +Xc +MK +MK +Dp +Dp +MK +MK +MK +MK +MK +MK +MK +MK +Dp +MK +MK +MK +MK +MK +MK +nf +nf +Xc +YU +YU +YU +YU +YU +YU +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +fR +Lm +DG +Mv +jD +Ya +mP +Ya +Mv +Mv +qv +Ya +wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +nf +nf +nf +Xc +gE +gE +Tg +gE +oK +oK +oK +oK +he +WO +xz +rW +Py +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +oK +oK +oK +oK +oK +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +NM +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +Jo +YG +Ii +Ii +Ii +Ii +Ii +gP +gP +YG +nf +Ot +Ip +"} +(74,1,1) = {" +Ip +Ot +nf +nf +Xc +Xc +Xc +LX +FH +FH +FH +FH +FH +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +lb +GN +GN +gm +cP +MK +Su +gm +Nr +gm +gm +GN +gm +Nr +gm +gm +eH +MK +nf +nf +nf +sP +YU +YU +YU +YU +YU +YU +YU +kv +dO +kv +kv +kv +kv +kv +kv +kv +TM +Ya +Ya +Ya +Ya +Ya +ZA +Ya +Ya +Lm +Ya +Ya +TM +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +Xc +gE +gE +gE +ec +Gp +oK +oK +oK +he +WO +xz +yC +WO +WO +Pr +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +BH +oK +oK +oK +oK +oK +nf +nf +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +Xc +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +dA +GK +GK +GK +tD +tD +Ox +GK +Jo +YG +Ii +Ii +Ii +Nk +Ii +gP +Ci +YG +nf +Ot +Ip +"} +(75,1,1) = {" +Ip +Ot +nf +nf +nf +Xc +LX +LX +LX +wG +FH +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +Xc +nV +nV +GN +GN +gm +GN +RB +GN +GN +GN +gm +gm +GN +gm +GN +GN +GN +Oj +eH +nf +nf +nf +nf +YU +YU +gt +xt +el +Wm +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +TM +TM +Ya +Ya +Ya +Ya +Mv +Ya +Ya +Ya +Ya +TM +TM +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +nf +nf +Xc +Xc +gE +gE +gE +gE +oK +oK +aZ +he +WO +xz +WO +WO +WO +kB +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +BH +oK +oK +oK +oK +oK +dA +NM +GK +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +Xc +NM +GK +GK +GK +GK +GK +GK +GK +tD +GK +GK +GK +GK +dA +GK +Ox +tD +tD +tD +tD +GK +Jo +YG +OX +Ii +Ii +Ii +Ii +gP +YG +YG +nf +Ot +Ip +"} +(76,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +LX +LX +Xc +FH +FH +FH +FH +Xc +Xc +Xc +Xc +Xc +Xc +Xc +lb +gm +GN +GN +GN +GN +RB +GN +gm +GN +GN +GN +GN +GN +Oj +gm +eH +eH +eH +nf +nf +nf +nf +YU +YU +YU +YU +tN +Xm +YU +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +TM +TM +ba +jn +ba +ba +ba +ba +ba +TM +TM +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +WP +Yl +Yl +Xc +gE +gE +gE +gE +oK +oK +oK +he +WO +xz +WO +WO +WO +Pr +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +BH +oK +oK +oK +oK +oK +dA +GK +GK +GK +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +GK +GK +GK +GK +GK +GK +GK +tD +tD +Ox +GK +GK +GK +Xc +GK +GK +GK +tD +tD +NM +GK +Jo +YG +YG +YG +YG +YG +YG +YG +YG +nf +nf +Ot +Ip +"} +(77,1,1) = {" +Ip +Ot +nf +nf +LX +LX +LX +LX +Xc +MK +MK +dp +dp +dp +MK +MK +MK +MK +MK +MK +Xc +Xc +cp +GN +GN +cp +gm +MK +XS +gm +cp +gm +gm +GN +gm +cp +eH +eH +eH +MK +nf +nf +nf +Xc +YU +YU +YU +YU +KO +Xm +YU +IS +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +dO +dO +kv +kv +kv +kv +kv +kv +WP +Yl +Yl +Xc +gE +gE +gE +gE +gE +oK +oK +he +WO +xz +WO +WO +WO +tW +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +oK +oK +oK +oK +oK +oK +nf +GK +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +GK +GK +GK +GK +GK +GK +GK +GK +Ox +tD +tD +GK +GK +GK +Xc +Xc +NM +GK +GK +GK +GK +GK +ek +Sd +Sd +Sd +Sd +Sd +Sd +Sd +rA +nf +nf +Ot +Ip +"} +(78,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +Xc +MK +MK +Pl +gm +gm +gm +An +An +MK +vZ +fn +MK +MK +Xc +Xc +Dp +Dp +MK +MK +MK +MK +MK +MK +MK +MK +Dp +MK +MK +MK +MK +MK +MK +nf +nf +Xc +Xc +YU +YU +YU +el +fP +Wv +Yj +YU +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +dO +kv +NO +oK +Fw +Xc +Xc +gE +Tg +gE +gE +oK +oK +he +WO +xz +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +xz +WO +oK +oK +oK +oK +oK +oK +nf +GK +GK +GK +GK +GK +GK +NM +nf +Xc +Xc +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +tD +GK +GK +GK +GK +GK +Xc +Xc +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +Ot +Ip +"} +(79,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +Xc +MK +An +vj +gm +gm +gm +dZ +dZ +fs +dZ +dZ +Te +MK +Xc +iO +GN +GN +ed +MK +MK +mX +Ji +nE +CR +gm +GN +gm +Nr +tS +XA +Hn +MK +nf +nf +Xc +Xc +YU +YU +YU +Os +VT +Hc +Xm +YU +YU +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Ts +Wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +NO +oK +Fw +oK +Xc +gE +gE +oK +oK +oK +oK +oK +WO +oK +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +WO +xz +oK +oK +oK +oK +oK +oK +nf +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +GK +GK +GK +GK +GK +Ox +tD +tD +tD +NM +GK +GK +GK +GK +GK +GK +GK +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +Ot +Ip +"} +(80,1,1) = {" +Ip +Ot +nf +nf +LX +LX +LX +nf +MK +HI +dZ +kV +XP +dZ +kV +rI +vj +dZ +dZ +lo +fl +gm +gm +GN +GN +mQ +Kp +MK +Ji +GN +GN +GN +GN +GN +GN +GN +FG +zV +Hn +MK +nf +nf +Xc +Xc +YU +YU +YU +JB +tN +Hc +Xm +gt +xt +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +Wt +Wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +NO +oK +Fw +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +aZ +oK +WO +WO +WO +WO +WO +WO +WO +WO +Py +WO +WO +aZ +oK +oK +oK +aZ +oK +oK +oK +nf +GK +GK +GK +tD +tD +Ox +GK +GK +GK +GK +NM +GK +GK +GK +GK +GK +tD +tD +tD +tD +GK +GK +GK +GK +GK +GK +GK +GK +Xc +Xc +GK +GK +NM +GK +GK +GK +NM +GK +GK +GK +GK +nf +GK +NM +nf +Ot +Ip +"} +(81,1,1) = {" +Ip +Ot +nf +nf +LX +LX +nf +nf +MK +in +dZ +dZ +dZ +dZ +dZ +dZ +Ba +hs +Ba +An +fl +gm +gm +GN +gm +cP +Sa +MK +Pl +GN +gm +cP +gm +GN +Ji +jh +cP +gm +we +MK +nf +nf +Xc +Xc +gt +xt +YU +YU +tN +Hc +Xm +YU +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Ts +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +NO +oK +Fw +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +WO +WO +oK +WO +WO +WO +WO +zc +Py +WO +xz +oK +oK +oK +Hv +Hv +YZ +oK +dA +GK +GK +Ox +tD +tD +GK +GK +GK +GK +tD +tD +tD +GK +GK +GK +GK +GK +tD +tD +Ox +GK +GK +GK +GK +GK +GK +GK +GK +GK +Xc +dA +dA +nf +nf +nf +nf +Xc +Xc +Xc +dA +dA +nf +GK +nf +nf +Ot +Ip +"} +(82,1,1) = {" +Ip +Ot +nf +nf +LX +LX +nf +nf +MK +HI +dZ +kV +rI +dZ +kV +rI +Ba +uD +Ba +dx +Dp +GN +GN +GN +GN +gm +ed +MK +MK +nO +MK +MK +MK +nO +MK +MK +MK +Ol +MK +MK +nf +nf +Xc +Xc +tt +YU +YU +YU +tN +LI +Xm +YU +YU +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +NO +oK +Fw +oK +oK +oK +oK +oK +oK +oK +oK +oK +WO +xz +oK +xz +xz +oK +oK +oK +xz +xz +xz +Tw +PL +ZY +oK +oK +oK +YZ +Hv +Hv +Hv +oK +dA +GK +GK +NM +GK +GK +GK +GK +GK +Ox +tD +tD +tD +Ox +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +NM +GK +GK +GK +GK +GK +GK +nf +nf +Xc +Xc +Xc +Xc +GK +GK +GK +nf +nf +nf +nf +Ot +Ip +"} +(83,1,1) = {" +Ip +Ot +nf +nf +LX +LX +nf +nf +MK +in +dZ +dZ +vj +dZ +dZ +dZ +Ba +hs +Ba +YV +fl +gm +gm +GN +GN +gm +ed +MK +Zv +GN +gm +MK +xX +GN +Zv +MK +sq +ck +zV +MK +nf +nf +nf +Xc +Xc +Ik +YU +el +fP +FA +QG +YU +YU +ou +Sc +rZ +IM +Sc +Vu +Ct +NG +yK +kv +kv +Wt +Ts +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +NO +oK +Fw +aZ +oK +oK +oK +oK +oK +oK +oK +he +WO +WO +WO +WO +WO +oK +oK +aZ +oK +WO +WO +WO +WO +WO +WO +oK +oK +oK +Hv +Hv +oK +oK +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +tD +tD +tD +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +NM +GK +GK +GK +GK +nf +nf +nf +nf +Ot +Ip +"} +(84,1,1) = {" +Ip +Ot +nf +nf +LX +LX +nf +nf +MK +HI +dZ +kV +rI +dZ +kV +rI +dZ +dZ +dZ +An +fl +we +gm +cP +GN +GN +mN +MK +gm +GN +mN +MK +zl +GN +Md +MK +XS +JQ +fW +MK +nf +nf +nf +Xc +Xc +YU +IS +tN +Hc +Xm +MX +YU +ou +tM +xE +Ky +NL +Zn +QA +Sc +Sc +GA +kv +Wt +Wt +Wt +kv +kv +dO +Ts +Wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +NO +oK +Fw +oK +oK +oK +oK +oK +oK +oK +oK +MN +OH +OH +OH +OH +OH +OH +oK +oK +oK +OH +OH +OH +OH +OH +oK +oK +oK +oK +oK +oK +oK +oK +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +nf +nf +nf +Ot +Ip +"} +(85,1,1) = {" +Ip +Ot +nf +nf +LX +LX +nf +nf +MK +An +dZ +dZ +dZ +dZ +dZ +dZ +EZ +dZ +dZ +Sf +MK +bt +we +gm +gm +GN +GN +MK +gg +GN +gm +MK +Pl +gm +GN +MK +wL +yk +ez +MK +nf +nf +nf +Xc +Xc +YU +el +fP +Hc +Xm +YU +YU +Fi +At +zB +YA +YA +YA +Ky +Ky +mW +Zl +kv +Ts +Wt +kv +kv +kv +kv +Wt +Wt +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +Lw +gb +gE +ZG +Gp +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +Xc +Xc +Xc +Xc +NM +GK +GK +GK +GK +GK +GK +nf +nf +nf +NM +GK +GK +GK +GK +NM +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +nf +nf +nf +nf +nf +Ot +Ip +"} +(86,1,1) = {" +Ip +Ot +nf +nf +LX +LX +LX +nf +MK +MK +ic +An +An +lA +Pi +MF +MK +cs +nN +MK +MK +MK +lG +oN +dL +HR +LO +MK +MK +GN +gm +MK +gm +GN +gg +MK +XS +Vi +MK +MK +Vh +nf +nf +nf +Xc +Xc +tN +Hc +Hc +Xm +YU +YU +Fi +nF +YA +YA +xE +YA +Ky +Ky +Pc +Zl +kv +kv +kv +kv +kv +kv +kv +kv +Ts +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +YU +YU +WP +Yl +Yl +gE +gE +oK +aZ +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +yY +Xc +Xc +Xc +GK +GK +GK +GK +GK +GK +GK +nf +nf +nf +nf +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +NM +GK +GK +GK +GK +GK +GK +NM +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(87,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +nf +nf +MK +MK +MK +MK +MK +MK +MK +MK +MK +MK +MK +MK +MK +MK +UU +UU +UU +UU +MK +MK +rq +MK +MK +MK +sG +MK +MK +MK +MK +MK +Vh +Vh +nf +nf +nf +Xc +el +fP +Hc +FA +QG +YU +IS +nC +PF +YA +YQ +wd +wd +GL +gy +gy +KR +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +gt +xt +Xc +WP +Yl +Yl +ER +gE +gE +gE +gE +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +gE +gE +Xc +Xc +Xc +Xc +GK +GK +GK +GK +GK +NM +nf +nf +nf +nf +nf +GK +GK +GK +GK +GK +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +GK +GK +GK +GK +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +Ot +Ip +"} +(88,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +LX +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +nf +MK +qm +qm +qm +qm +MK +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +nf +el +io +fP +Hc +FA +QG +YU +YU +YU +YU +nC +gy +rZ +gy +gy +ql +ox +Aj +zY +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +YU +YU +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Tg +gE +gE +gE +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +oK +aZ +oK +oK +oK +oK +oK +oK +oK +oK +gE +ec +Gp +gE +XD +Xc +Xc +Xc +Xc +GK +Ck +fF +nf +nf +nf +nf +nf +nf +GK +GK +GK +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(89,1,1) = {" +Ip +Ot +nf +nf +LX +LX +LX +LX +LX +LX +nf +nf +nf +nf +nf +nf +nf +nf +nf +LX +nf +nf +MK +yP +yP +yP +yP +MK +Vh +Vh +Vh +Vh +Vh +Fb +ee +ee +ee +eL +Vh +Vh +Vh +Vh +Fb +Hb +HJ +HJ +IZ +QG +YU +YU +YU +YU +YU +YU +Rb +YU +YU +YU +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +YU +YU +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ec +Gp +gE +aZ +oK +oK +oK +Db +uq +uq +Zz +Zz +Zz +Zz +oK +oK +oK +oK +oK +oK +oK +oK +oK +yY +gE +gE +gE +XD +Bb +XD +Xc +Xc +Xc +Xc +Qp +mY +nf +nf +nf +nf +nf +nf +nf +NM +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(90,1,1) = {" +Ip +Ot +nf +nf +nf +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +LX +nf +nf +pn +pn +pn +pn +Vh +Vh +Vh +Fb +ee +ee +Hb +HJ +HJ +HJ +ZE +ee +ee +ee +ee +Hb +HJ +HJ +HJ +Yk +JH +YU +YU +YU +YU +YU +YU +YU +YU +YU +kv +kv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +YU +Xc +Xc +fN +wU +wU +wU +wU +DQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XD +XD +Zz +Zz +Zz +Zz +uq +uq +iY +iY +iY +uq +uq +Zz +Zz +Zz +Zz +oK +gE +Hz +gE +gE +XD +XD +XD +XD +XD +XD +XD +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(91,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +nf +Fb +dH +LX +LX +LX +LX +LX +LX +Fb +ee +ee +eL +LX +nf +nf +pn +pn +pn +pn +Vh +Vh +Fb +Hb +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Hc +HJ +HJ +Hc +HJ +HJ +HJ +HJ +dX +ee +ee +ee +io +Yj +gt +xt +YU +el +OV +io +io +io +Yj +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +dO +gt +xt +Xc +Xc +Ho +bB +bB +bB +OC +lh +wU +Ce +Xc +Xc +Xc +Xc +Xc +Xc +Xc +uq +iY +iY +iY +uq +or +or +or +ne +uq +uq +iY +iY +iY +uq +mq +Gp +gE +XD +Xx +gD +bK +Bb +XD +iz +mq +vH +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +nf +Xc +Xc +Xc +Xc +Xc +Xc +nf +nf +hF +Ic +Ic +Ic +Ic +Ic +JJ +Ic +Ic +Ic +Ic +Ic +rY +Xc +Xc +nf +nf +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(92,1,1) = {" +Ip +Ot +nf +nf +nf +nf +nf +Fb +Hb +dX +XX +mD +vi +LX +Fb +ee +Hb +Hc +HJ +yB +eL +nf +nf +pn +pn +pn +pn +Vh +Fb +Hb +HJ +HJ +HJ +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +HJ +HJ +HJ +dX +ee +ee +ee +Hb +Hc +Hc +Hc +Hc +Wv +Yj +kv +kv +Tv +Tv +Tv +kv +dO +kv +kv +kv +kv +kv +kv +kv +kv +kv +YU +YU +Xc +Xc +fN +Sw +bB +bB +Bz +Bz +Bz +Bz +lh +wU +Ce +Xc +Xc +Xc +uq +uq +uq +aI +sL +sL +XK +or +or +sL +sL +Cv +vO +or +or +sL +uq +uq +iz +Xx +gD +IA +Bs +dI +gD +wY +jq +UO +bK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nf +hF +ZO +Tf +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +js +rY +Xc +Xc +Xc +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(93,1,1) = {" +Ip +Ot +nf +nf +nf +nf +Fb +iL +HJ +HJ +iu +dD +FN +ee +hl +Hc +Hc +Hc +Hc +Hc +dX +ee +hp +pn +pn +pn +pn +nh +un +sM +HJ +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Wv +io +ee +ee +ee +ee +dH +kv +kv +kv +kv +kv +kv +kv +dO +kv +kv +Xc +Xc +Xc +Xc +Ho +bB +bB +Bz +Bz +Bz +Bz +Bz +Bz +Bz +lh +wU +wU +wU +gf +uq +sp +qk +or +sL +qk +or +or +sL +sL +Cv +WF +sL +or +or +uq +NS +gD +IA +Bs +Bs +Bs +Bs +Mx +Fp +jq +Ri +dI +gD +gD +Ic +Ic +rY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +hF +Ic +Ic +Ic +ZO +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +TH +js +Ic +rY +Xc +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(94,1,1) = {" +Ip +Ot +nf +nf +nf +nf +bf +HJ +Hc +Hc +iu +dD +nZ +Mn +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +lF +pn +pn +pn +Ti +nZ +Hc +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Hc +HJ +HJ +HJ +Hc +Hc +HJ +HJ +HJ +HJ +HJ +Uj +Yk +Tv +Tv +kv +dO +kv +kv +kv +kv +XC +XC +Xc +Xc +Xc +Xc +Ho +bB +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +bB +HV +iD +jW +HF +qk +or +or +or +or +qk +qk +qk +Cv +Wq +sL +or +or +jW +jS +Wk +Wk +Dg +oD +Mx +Mx +Mx +Fp +jq +uc +FF +Mx +Mx +Mx +Tf +js +Ic +Ic +Ic +Ic +Ic +Ic +JJ +ZO +Mx +TH +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +js +rY +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(95,1,1) = {" +Ip +Ot +nf +nf +nf +nf +tN +yz +uy +uy +qB +dD +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +iu +Ti +Ti +Ti +Ti +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +On +Hc +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Yk +Tv +Tv +Tv +kv +kv +Xc +XC +XC +XC +XC +XC +Xc +Xc +Xc +Ho +bB +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +bB +bB +iD +jW +ye +sL +sL +or +or +or +qk +qk +WF +Cv +sL +or +or +or +jW +Bs +Bs +Wl +Ri +Mx +Mx +Mx +Mx +Fp +jq +jq +Ri +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Ay +nf +nf +nf +nf +nf +nf +Ot +Ip +"} +(96,1,1) = {" +Ip +Ot +nf +nf +nf +el +fP +iu +dD +dD +dD +dD +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +iu +Ti +Ti +Ti +Ti +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +LI +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +HJ +HJ +HJ +Hc +HJ +dX +eL +Tv +Tv +Tv +Xc +Xc +Xc +XC +XC +XC +XC +XC +Xc +Kd +ae +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +bB +iD +jW +ye +sL +or +or +qk +or +or +or +uV +Cv +qk +or +or +qk +jW +Bs +Mx +Mx +Ri +Mx +Mx +Mx +Mx +oo +Ku +jq +uc +tZ +FF +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +js +rY +nf +nf +nf +nf +nf +Ot +Ip +"} +(97,1,1) = {" +Ip +Ot +nf +nf +nf +tN +Hc +iu +dD +jp +dD +zv +Eo +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Cy +iu +Ti +Ti +Ti +Ti +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +HJ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +HJ +HJ +Hc +Hc +Hc +Hc +HJ +Yk +Tv +Tv +Xc +Xc +Xc +Xc +XC +XC +XC +XC +XC +XC +qO +Ho +Bz +Bz +Bz +Bz +Bz +Xc +Xc +Xc +Bz +Bz +Bz +Bz +Bz +Wx +jW +Zr +or +or +or +qk +or +or +uV +LW +Cv +WF +or +or +WF +jW +Bs +Mx +Mx +Ri +Mx +Mx +Mx +Mx +Mx +Fp +jq +jq +jq +Ri +Mx +Mx +Mx +tE +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Ay +nf +nf +nf +nf +nf +Ot +Ip +"} +(98,1,1) = {" +Ip +Ot +nf +nf +el +fP +Hc +iu +dD +jp +dD +nZ +Hc +Hc +Hc +Hc +On +Hc +Hc +Hc +Hc +Hc +iu +Ti +Ti +Ti +Ti +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Yk +XC +XC +Xc +Xc +Xc +XC +XC +XC +XC +XC +XC +qO +tr +ze +Bz +Bz +Bz +Bz +Bz +Xc +Xc +Xc +Xc +Bz +Bz +Bz +bB +iD +jW +Cr +sL +sL +or +or +iR +pw +EH +qR +Cv +WF +or +or +WF +jW +MR +WE +Il +vf +Mx +Mx +Mx +Mx +Mx +oo +Il +Fx +jq +Ri +Mx +Mx +Mx +cc +KU +KU +KU +mc +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Mx +Tf +Mx +Mx +Mx +Mx +Mx +Mx +Mx +tJ +Ic +rY +nf +nf +nf +Ot +Ip +"} +(99,1,1) = {" +Ip +Ot +nf +aM +bY +Hc +Hc +iu +dD +dD +dD +nZ +Hc +Cy +Hc +Hc +Hc +Hc +Hc +Hc +FA +eV +jo +Ti +Ti +Ti +Ti +oi +eV +Re +eV +eV +eV +VT +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +FA +eV +eV +eV +eV +gU +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +tr +tr +ze +Bz +Bz +Bz +Bz +Bz +Bz +Xc +Xc +Xc +Bz +Bz +Bz +bB +iD +uq +cm +WF +sL +sL +ky +uV +qk +qk +qk +Cv +sL +or +or +or +uq +Om +VM +KU +KU +KU +KU +mc +Mx +Mx +Mx +Mx +Fp +jq +Ri +Mx +Mx +cc +xh +Zq +pm +aa +Vl +mc +Tf +Mx +Mx +Mx +Mx +Mx +Mx +Mx +TH +cc +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +HB +ma +nf +nf +Ot +Ip +"} +(100,1,1) = {" +Ip +Ot +Xc +Xc +tN +Hc +Hc +iu +dD +zv +SX +Eo +Hc +Hc +Hc +Hc +Hc +Hc +Hc +FA +gU +Cq +Cq +Ti +Ti +Ti +Ti +Cq +hR +Cq +Cq +Cq +Cq +Os +eV +eV +eV +eV +VT +On +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +FA +eV +eV +gU +jv +jv +yI +gc +XC +XC +XC +XC +XC +dk +XC +XC +PG +XC +dk +dk +tr +tr +mF +iZ +iZ +Df +Bz +Bz +Bz +Bz +Xc +Bz +Bz +Bz +Bz +bB +uq +uq +uq +uq +Tq +Tq +Cv +Cv +Cv +Cv +Cv +Cv +aK +sL +sL +uq +uq +uq +fT +yo +km +WI +zA +Vl +aP +Mx +Mx +Mx +Fp +jq +Ri +TH +Mx +Ay +aa +aa +aa +aa +aa +Vl +KU +KU +KU +KU +KU +KU +KU +KU +KU +HW +Gx +aa +aa +aa +aa +Xc +Xc +Gx +aa +aa +aa +aa +aa +Xc +Xc +aa +aa +Xc +Xc +Ot +Ip +"} +(101,1,1) = {" +Ip +Ot +Xc +Xc +Os +VT +Hc +iu +dD +nZ +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +LI +Xm +Cq +Cq +Cq +Ti +Ti +Ti +Ti +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Wb +dM +Os +eV +eV +eV +eV +VT +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +eF +gU +Cq +Cq +Cq +CS +XM +Yd +XC +XC +dk +XC +XC +dk +dk +dk +XC +XC +dk +dk +dk +dk +tr +tr +tr +tr +mF +Df +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +de +UD +AA +bm +uq +lZ +or +qk +Fz +Fz +or +sL +Tq +or +or +sL +uq +AA +Iu +fT +zA +zA +zA +zA +zh +Vl +KU +KU +mc +Fp +jq +Ri +Mx +cc +HW +aa +aa +aa +aa +aa +aa +aa +Gx +aa +aa +aa +aa +aa +aa +aa +aa +Xc +Xc +aa +jI +Xc +Zq +pm +jI +aa +aa +aa +aa +Xc +jI +aa +aa +aa +Xc +Xc +Ot +Ip +"} +(102,1,1) = {" +Ip +Ot +Xc +Xc +Cq +Os +VT +Xl +dD +nZ +FA +eV +VT +Hc +Hc +Hc +Hc +Hc +FA +gU +hR +Cq +Cq +Ti +Ti +Ti +Ti +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Os +eV +eV +eV +eV +eV +Oa +Hc +Hc +FA +eV +eV +eV +eV +eV +eV +gU +Cq +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +bb +ph +dk +tr +tr +tr +tr +ze +Bz +Bz +Bz +Bz +Bz +Bz +Bz +Bz +tT +gw +Oz +uq +uq +sL +sL +or +or +or +or +sL +Tq +or +or +iR +uq +gw +Oz +zA +zA +zh +zA +zA +zA +zA +zA +yo +Vl +kn +jq +Xg +KU +xh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Xc +ce +aa +EI +EI +aa +WC +Xc +aa +aa +aa +EI +EI +aa +WC +Xc +Xc +Xc +Ot +Ip +"} +(103,1,1) = {" +Ip +Ot +Xc +Xc +Wb +dM +Os +Pa +dD +Bo +gU +Xc +Os +Oa +Hc +Hc +FA +eV +gU +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +hR +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +ys +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Os +eV +eV +gU +ok +ok +ok +ok +ok +ok +ok +Cq +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +tr +tr +tr +mF +Df +Bz +Bz +Bz +Bz +Bz +Bz +Bz +tT +Oz +ZX +uq +ny +sL +qk +qk +qk +AR +sL +sL +Cv +qs +qs +qs +uq +Oz +zA +zA +zh +zA +zA +zA +zA +zA +zA +km +WI +aa +aa +aa +aa +aa +aa +Gx +aa +aa +aa +aa +aa +aa +aa +aa +Gx +aa +Xc +Zq +pm +aa +aa +aa +ce +ce +EI +Xc +ce +EI +ce +aa +aa +aa +aa +Xc +ce +EI +ce +aa +Xc +Xc +Ot +Ip +"} +(104,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Cq +Cq +Cq +Cq +hR +Xc +Xc +Xc +Os +eV +eV +gU +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +ok +Xc +ys +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +ok +ok +ok +ok +Cq +Cq +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +tr +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +tr +tr +tr +mF +Df +Bz +Bz +Bz +Bz +Bz +Bz +tT +nH +Oz +jW +or +or +Cv +Cv +Cv +Cv +Tq +Tq +Cv +Cv +Cv +uq +uq +CN +HO +HO +HO +HO +FK +HO +HO +HO +HO +HO +FK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Xc +Xc +EI +Xc +Xc +Xc +EI +Xc +aa +aa +EI +jI +EI +Xc +Xc +ce +VC +aa +aa +aa +aa +Xc +Xc +ce +Zq +pm +Xc +Xc +Ot +Ip +"} +(105,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Wb +dM +Cq +Cq +Cq +hR +Cq +Cq +Wb +dM +Cq +Cq +Cq +Cq +Cq +Se +Xc +ok +Xc +Xc +Wb +dM +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +ys +Cq +ok +ok +ok +ok +ok +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +tr +tr +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +tr +tr +tr +ze +Bz +Bz +Bz +Bz +Bz +Bz +lK +Oz +Oz +jW +or +or +or +MD +iR +Cv +or +or +or +sV +tC +jW +LU +fT +zA +il +zA +yo +HO +ob +zA +Uf +pN +JN +HO +aa +aa +aa +aa +aa +VC +aa +EI +wx +OW +xD +VC +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +aa +Xc +Xc +Xc +jI +OA +jI +Vg +EI +VC +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(106,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Se +Se +hR +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +hR +Xc +Xc +Cq +Cq +Cq +Cq +ok +ok +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +dk +tr +dk +tr +dk +dk +bb +ph +dk +dk +dk +dk +dk +bb +ph +dk +tr +tr +ze +Bz +Bz +Bz +Bz +Bz +Bz +uM +bm +Oz +jW +or +or +or +rB +MD +Cv +or +or +or +or +Rx +jW +WY +il +Uh +Uh +Uh +zA +HO +zA +zA +zA +zA +zA +HO +Gx +aa +aa +aa +tP +Xc +Xc +jI +aa +Ut +Ut +jI +aa +Xc +OW +tU +Ut +Xc +OW +jI +Ut +aa +Zq +pm +EI +EI +EI +ce +nP +VS +jI +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(107,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +LQ +LQ +Xc +Cq +Cq +Cq +Cq +Se +LQ +Se +Cq +Wb +dM +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Wb +dM +Cq +Cq +Cq +Cq +Cq +Cq +Ix +Cq +Cq +Cq +CS +XM +en +dk +dk +dk +dk +dk +dk +tr +tr +dk +dk +dk +dN +dk +dk +dk +dk +dN +dk +dk +dk +tr +mF +Df +Bz +Bz +Bz +Bz +Bz +lK +Oz +Oz +uq +aK +or +or +or +lW +Cv +lZ +or +or +rB +tC +jW +WY +il +Uh +gV +Uh +il +HO +zA +zA +zA +ZM +ob +HO +aa +Zq +pm +aa +Xc +Xc +oE +VC +Ue +Ut +jI +oE +ce +aa +aa +aa +Xc +Xc +EI +Xc +aa +aa +aa +jI +LT +Xc +EI +Xc +jI +EI +ce +Gx +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(108,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Xc +Xc +Cq +LQ +Cq +Cq +Cq +Xc +Xc +Xc +LQ +Se +Cq +Cq +Cq +ok +ok +Xc +Xc +Xc +hR +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Cq +Cq +Cq +Cq +Wb +dM +EK +EK +aj +Yo +EK +EK +bw +dk +dk +dk +tr +dk +dk +tr +tr +dk +dk +ap +EK +EK +aj +aj +EK +EK +ap +dk +dk +dk +ap +ze +Xs +Bz +Bz +Bz +Bz +lK +zA +Oz +uq +uq +or +or +or +ne +Cv +aK +or +sL +sL +uq +uq +WY +WY +Uh +mt +Uh +il +HO +ob +zA +zA +zA +IL +HO +aa +aa +aa +aa +Xc +EI +kf +Ue +Xc +Xc +EI +Xc +aa +aa +Zq +pm +Xc +Xc +Xc +Xc +aa +aa +aa +aa +US +Xc +jI +Xc +Xc +EI +Xc +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(109,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +hR +Cq +Cq +Cq +Xc +Xc +Xc +Xc +hR +Cq +Cq +Cq +Xc +Xc +hR +Cq +Cq +Cq +Cq +Xc +Xc +Xc +LQ +LQ +Se +Se +Cq +Cq +ok +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Cq +Cq +Cq +EK +aj +aj +EK +WL +PB +PB +PB +EK +aj +aj +EK +dk +tr +tr +dk +dk +tr +EK +aj +aj +EK +WL +WL +WL +WL +EK +aj +aj +EK +su +QF +ze +Bz +Bz +Bz +Bz +Bz +lK +zA +Oz +gw +uq +uq +or +sL +sL +Cv +or +sL +sL +uq +uq +WY +WY +WY +zA +il +il +zA +HO +zA +zA +zA +zA +zA +HO +aa +aa +aa +aa +Xc +EI +oE +VC +Xc +Xc +Xc +Xc +aa +Xc +Gx +aa +Xc +OW +jI +Ut +aa +aa +aa +jI +aa +Xc +Xc +Xc +Xc +Xc +Xc +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(110,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Cq +Cq +Cq +Wb +dM +Xc +Xc +Cq +Cq +Cq +Cq +Wb +dM +Xc +Xc +Xc +LQ +LQ +Se +Se +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ys +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +Wb +dM +Cq +Cq +aj +yE +yE +WL +zP +cH +cH +nx +PB +WH +WH +aj +dk +tr +tr +dk +dk +KV +aj +yE +yE +WL +zP +cH +cH +Fh +WL +yE +yE +aj +kb +kb +mF +Df +Bz +Bz +Bz +Bz +lK +EE +zA +AA +bm +uq +jW +jW +jW +uq +iY +iY +iY +uq +xe +WY +WY +Oz +zA +zA +il +EY +EY +EY +Sy +Sy +EY +EY +EY +aa +aa +aa +aa +Xc +wx +aB +jI +Xc +OW +jI +Ut +ry +Xc +Xc +aa +Xc +Xc +Xc +Xc +Xc +Gx +aa +aa +aa +aa +aa +Xc +OW +jI +Ut +aa +Zq +pm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(111,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Wb +dM +Xc +ok +ok +Cq +Cq +Cq +Xc +Xc +Wb +dM +Cq +Cq +Cq +Cq +Cq +Cq +LQ +LQ +LQ +LQ +LQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +aj +yE +zP +cH +MP +Tt +Tt +xC +cH +nx +WH +aj +dk +dk +tr +dk +dk +dk +aj +yE +zP +cH +MP +Tt +Tt +xC +cH +Fh +yE +aj +kb +kb +kb +mF +Df +Bz +Bz +Bz +lK +zA +zA +zA +Oz +CN +WY +WY +WY +CN +Oz +Oz +AA +bm +WY +WY +zA +zA +zA +CF +EY +EY +To +jV +cb +cb +cb +jV +EY +EY +Gx +aa +aa +Xc +aa +EI +Ut +VC +EI +ce +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +aa +Zq +pm +Xc +Xc +EI +Xc +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(112,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +ok +ok +ok +ok +ok +Cq +Cq +Xc +Xc +LQ +Cq +Xc +Xc +Cq +Cq +Cq +Cq +Cq +LQ +Se +Se +LQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +EK +EK +WL +Ig +uS +Jt +Tt +Tt +yi +uS +yj +PB +EK +EK +EK +my +uo +EK +EK +EK +WL +Ig +uS +Jt +OF +OF +yi +uS +PD +WL +EK +EK +kb +kb +DA +ze +Bz +Bz +Bz +lK +zA +zA +zA +zA +HO +il +cB +CF +HO +WY +WY +WY +zA +Oz +WY +yo +zA +zA +il +EY +lu +jV +jV +jV +cb +cb +jV +vL +of +aa +aa +aa +Xc +Xc +EI +aa +aa +HA +aa +VC +Xc +Xc +Xc +pp +Xa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Gx +Xc +Xc +Xc +Xc +aa +aa +Xc +EI +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(113,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Cq +Cq +ok +ok +ok +ok +ok +ok +ok +ok +Xc +Xc +LQ +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Cq +Se +Xc +Em +Em +ok +ok +ok +ok +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Wb +dM +Cq +Cq +Cq +Cq +Cq +aj +PB +zP +MP +XE +TG +WL +WL +TG +XE +xC +nx +WL +uS +qi +PB +PB +PQ +uS +WL +zP +MP +XE +TG +WL +PB +TG +XE +xC +Fh +WL +aj +kb +ef +kb +ze +Bz +Bz +Bz +lK +yo +zA +zA +zA +HO +il +zA +zA +Uw +il +il +il +il +zA +zA +km +WI +il +il +EY +xj +cb +cb +kY +ie +cb +cb +vL +of +aa +aa +aa +aa +Gx +aa +aa +aa +Xc +Xc +Xc +Xc +Wy +Xc +pp +oz +Wy +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +OW +jI +Ut +aa +aa +aa +Gx +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(114,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +Xc +LQ +LQ +LQ +Xc +Xc +Xc +Xc +LQ +Cq +Cq +Xc +hR +Cq +Cq +Cq +it +Em +ok +Ow +Ak +ok +ok +Em +uz +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +JP +Cq +Cq +Cq +Cq +Yo +PB +yq +Tt +Tt +WL +yE +yE +WL +OF +Tt +xC +cH +iT +LF +LF +LF +LF +nI +cH +MP +Tt +Tt +WL +WL +PB +WL +Tt +Tt +PD +WL +Yo +kb +ef +kb +ze +Bz +Bz +Bz +pY +fA +zA +zA +zA +HO +km +WI +il +Uw +il +il +il +il +zA +il +zA +zA +il +il +Sy +cb +cb +cb +kP +Rn +cb +cb +yw +EY +aa +aa +aa +aa +aa +aa +Zq +pm +Xc +Xc +zR +Wy +Wy +Xc +Xc +pp +Wy +Wy +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +er +aa +aa +aa +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(115,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +Xc +Xc +LQ +LQ +LQ +Xc +Xc +LQ +LQ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +it +Ke +pc +qc +Zo +Ak +Em +uz +uz +uz +ok +ok +Em +ok +ok +Ke +Xc +Xc +it +Cq +Cq +Cq +Cq +Yo +PB +yq +Tt +Tt +WL +yE +yE +WL +OF +Tt +bD +kR +my +Gw +Fy +Gw +Gw +my +Gw +LB +Tt +Tt +WL +WL +PB +WL +Tt +Tt +PD +WL +Yo +kb +ef +kb +ze +Bz +Bz +Bz +Bz +pY +fA +zX +zA +HO +zA +zA +il +Uw +il +il +il +il +zA +il +il +zA +zA +il +EY +wQ +cb +cb +UH +Bq +cb +cb +PP +of +aa +aa +aa +Xc +Xc +aa +aa +Xc +Xc +er +Wy +Wy +oz +dv +pp +Wy +Wy +Wy +Wy +Wy +er +er +Xc +Xc +er +er +er +aa +aa +aa +OW +jI +Ut +er +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(116,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +Xc +Xc +Xc +LQ +Xc +Xc +Xc +LQ +LQ +Cq +Cq +Cq +Cq +Cq +Cq +Wb +dM +ZF +Zo +Zo +Zo +Zo +Xc +uz +uz +Em +ok +ok +Em +ok +Ow +TT +lv +tc +it +ys +Cq +Cq +Cq +aj +WL +vJ +Sk +oI +TG +WL +PB +vt +qp +Sk +Mi +WL +uS +rv +WL +WL +bc +uS +WL +AW +LB +ym +TG +WL +PB +TG +oI +bD +Mi +WL +aj +kb +kb +kb +ze +Bz +Bz +Bz +Bz +Bz +lK +zA +zA +HO +zA +Bm +zA +Uw +il +il +il +zA +zA +il +il +zA +il +il +EY +ag +jV +jV +cb +cb +jV +cb +YM +of +aa +aa +Xc +aa +aa +jI +aa +Xc +er +er +Wy +Wy +uI +Wy +pp +dv +Wy +Wy +zR +Wy +er +er +Xc +er +er +er +er +aa +aa +aa +Xc +EI +Xc +er +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(117,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +Xc +Xc +Xc +ok +ok +Xc +Xc +LQ +Xc +Xc +Wb +dM +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Zo +Zo +Me +Xc +Xc +Em +ok +ok +ok +Em +Cq +AO +Zo +dw +tc +LQ +it +Cq +Cq +Cq +EK +EK +PB +Ig +uS +Jt +OF +OF +AD +uS +Sk +WL +uS +uS +uS +my +uo +uS +uS +uS +WL +Ig +uS +Jt +Tt +OF +yi +uS +PD +WL +EK +EK +kb +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +lK +zA +zA +HO +MQ +km +WI +HO +il +il +il +zA +zA +il +il +zA +il +il +EY +EY +Mu +jV +jV +cb +jV +jV +EY +EY +aa +aa +EI +EI +aa +WC +Xc +er +er +er +er +Wy +Xc +Xc +pp +Xc +Wy +Wy +Wy +Wy +er +er +er +er +er +Xc +er +aa +aa +OW +jI +Ut +Xc +er +er +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(118,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +ok +ok +ok +ok +Xc +Xc +ok +ok +ok +ok +ok +ok +Xc +Xc +Bg +ok +ok +Xc +Cq +ok +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +TT +Zo +Zo +TT +Xc +Ak +Cq +Cq +Cq +Xc +BP +Zo +Zo +Zo +CK +LQ +LQ +it +Cq +Cq +ys +aj +yE +AW +Gw +LB +Tt +OF +xw +Gw +Mi +yE +YT +WQ +QI +QI +hC +hC +fH +YT +yE +AW +Gw +LB +Tt +OF +xw +Gw +Mi +yE +aj +lg +kb +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +lK +zA +MQ +HO +zA +zA +zA +HO +il +il +CF +zA +zA +zA +il +zA +zA +il +cB +EY +EY +EY +Sy +of +Sy +EY +EY +Zq +pm +aa +Xc +ce +EI +ce +aa +er +er +er +Wy +Wy +Wy +Xc +Xc +Xc +Wy +Wy +Wy +Wy +Wy +er +er +er +er +er +Gx +aa +aa +Xc +EI +Xc +Xc +er +er +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(119,1,1) = {" +Ip +Ot +Xc +Xc +Xc +ok +ok +ok +ok +Xc +Xc +Xc +Xc +Bg +Bg +ok +ok +Xc +Xc +Xc +Bg +Bg +ok +ok +ok +ok +ok +Xc +Xc +Ak +Cq +Cq +Cq +Cq +Cq +ZF +TT +Zo +Zo +TT +TT +Zo +pc +pc +Xc +Xc +TT +Zo +qc +Zo +Zo +hi +LQ +Xc +Cq +Cq +Cq +aj +yE +yE +WL +AW +LB +bD +Mi +WL +yE +yE +YT +xZ +hC +hC +hC +hC +Yc +YT +yE +yE +WL +AW +LB +bD +JO +WL +yE +yE +aj +dR +kb +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +lK +yo +Bm +Qe +Kh +Kh +Kh +Qe +Qe +oA +zA +zA +zA +zA +zA +zA +zA +zA +il +il +of +uE +jV +cb +cb +aD +of +aa +aa +aa +Xc +Xc +ce +VC +aa +er +er +er +Wy +Wy +Wy +pp +dv +uI +Wy +Wy +Wy +Wy +Wy +Wy +er +er +er +Xc +ce +aa +aa +Xc +Xc +Xc +er +er +er +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(120,1,1) = {" +Ip +Ot +Xc +Xc +Xc +ok +ok +ok +Xc +Xc +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Xc +Xc +Bg +Bg +Bg +dY +ok +ok +ok +ok +Xc +Xc +Zo +Ak +Cq +Cq +Cq +Cq +ZF +TT +SA +Zo +TT +TT +Zo +GY +Zo +TT +lv +lv +lv +Zo +Zo +Me +TT +Xc +Xc +Cq +Cq +Cq +EK +aj +aj +EK +PB +yq +PD +WL +uS +YT +YT +uS +uS +cd +hC +hC +hC +an +uS +YT +YT +uS +WL +Ig +PD +PB +EK +aj +aj +EK +DA +kb +kb +kb +ze +Bz +Bz +Bz +Bz +Bz +uM +WI +zA +Qe +Wf +rC +ot +Qe +Fg +zw +zA +zA +il +zA +zA +il +zA +zA +zA +il +of +mK +jV +cb +jV +DB +of +aa +aa +Xc +Xc +aa +aa +er +er +Ad +Lg +er +Wy +oz +Wy +pp +dv +dv +pp +Wy +Xc +Wy +Wy +Wy +er +er +Xc +Xc +Xc +Zq +pm +aa +er +er +er +er +er +er +Xc +Xc +Xc +Xc +Ot +Ip +"} +(121,1,1) = {" +Ip +Ot +Xc +Xc +ok +ok +ok +YB +YB +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Xc +Xc +dY +Bg +Bg +Bg +Bg +ok +ok +ok +ok +Xc +Xc +Xc +Zo +Ak +Cq +Cq +Cq +AO +TT +SA +SA +TT +TT +Zo +Zo +Zo +Zo +TT +TT +lv +TT +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +hR +EK +uS +Gu +uo +uS +uS +eG +Kn +an +qg +hC +hC +hC +hC +Rj +uS +WG +gK +uS +uS +my +Rk +uS +EK +kb +kb +kb +kb +kb +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +pY +fA +zA +Kh +Wf +Hw +Ie +Qe +Fg +wC +WI +il +il +zA +zA +zA +il +il +zA +il +EY +QT +jV +jV +jV +xW +EY +aa +Xc +aa +aa +jI +aa +aa +er +er +er +er +Wy +Wy +Xc +Xc +dv +dv +pp +Xc +Xc +ws +Xc +Wy +er +Xc +Xc +er +er +aa +er +er +er +aB +er +er +er +er +Xc +Xc +Xc +Xc +Ot +Ip +"} +(122,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Xc +Xc +Bg +Lo +Bg +Bg +Bg +ok +ok +ok +ok +ok +Xc +Xc +Zo +uN +Cq +Cq +Cq +hQ +Xc +MY +SA +Xc +dw +Zo +Xc +Xc +Me +Zo +TT +lv +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Wb +dM +Cq +EK +eJ +yq +PD +DF +uS +VZ +hC +QI +QI +BK +VU +VU +Jy +hC +hC +QI +hC +uS +ti +yq +PD +DF +EK +kb +ef +kb +ef +kb +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +Bz +lK +yo +Kh +Wf +iE +hz +Qe +Fg +tp +zA +il +il +il +il +Xc +Xc +il +wE +wE +of +yt +jV +jV +jV +IT +of +aa +EI +EI +aa +WC +Xc +aa +aa +er +er +er +Wy +Wy +Wy +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +er +er +Xc +er +er +er +er +er +er +bh +Vj +Vj +Vj +bh +aB +Xc +Xc +Xc +Xc +Ot +Ip +"} +(123,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Xc +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +ok +ok +ok +ok +Xc +Xc +Zo +uN +Cq +Cq +Cq +Cq +Xc +Xc +vS +Xc +Xc +Xc +Xc +Xc +Xc +Xc +nr +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +ys +Cq +Cq +Cq +aj +WH +yq +PD +yE +YT +QI +hC +hC +hC +KN +uS +uS +KL +hC +hC +QI +hC +YT +yE +yq +PD +yE +aj +kb +ef +kb +ef +kb +ef +kb +ze +VJ +Bz +Bz +Bz +Bz +Bz +uM +WI +Qe +yb +iE +Ge +Qe +Fg +zw +zA +il +il +il +il +Xc +eC +wE +zA +wE +of +Aw +jV +jV +jV +HG +of +aa +Xc +ce +EI +ce +aa +aa +aa +er +er +er +er +Wy +Wy +Wy +Xc +dv +uI +Wy +pp +dv +sl +er +er +Xc +er +er +er +bh +Vj +Vj +bh +gp +GP +hV +bh +bh +bh +bh +Xc +Xc +Ot +Ip +"} +(124,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Xc +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +tq +ok +ok +ok +Xc +Xc +Zo +uN +Cq +Cq +Cq +Cq +Cq +Cq +Wb +dM +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +ys +Cq +Cq +aj +WH +Ig +PD +yE +YT +QI +hC +hC +hC +KN +uS +uS +KL +QI +QI +QI +QI +YT +yE +yq +PD +yE +aj +kb +ef +kb +ef +kb +kb +kb +mF +Df +Bz +Bz +Bz +Bz +Bz +pY +fA +Qe +Qe +Qe +Oi +Qe +Qe +uQ +wE +zA +zA +il +il +il +il +zA +CF +Uh +Uh +Uh +cb +jV +cb +EY +EY +Gx +Xc +Xc +Xc +Xc +aa +aa +aa +er +er +er +er +er +Wy +Wy +Wy +Wy +pp +Wy +pp +Xc +er +er +Xc +Xc +er +er +bh +bh +ln +ln +bh +Jz +gM +Jh +bh +wf +wf +bh +bh +Xc +Ot +Ip +"} +(125,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Xc +Xc +Xc +Bg +Bg +Bg +LN +Bg +Bg +Bg +Xc +ok +ok +Xc +Xc +Zo +uN +Cq +Cq +Cq +Xc +Cq +Cq +Cq +Cq +ys +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Wb +dM +Cq +Cq +Cq +Cq +Cq +Cq +EK +eJ +Ig +PD +DF +uS +VW +QI +hC +hC +NZ +IP +IP +va +QI +QI +QI +cM +uS +ti +yq +PD +DF +EK +Vq +ef +kb +ef +kb +ef +kb +kb +ze +Bz +Bz +Bz +Bz +Bz +Bz +lK +Qe +Qe +ij +Ge +YH +hn +uQ +il +il +zA +il +il +il +il +il +zA +Uh +gV +Uh +EY +Sy +EY +EY +aa +aa +aa +Xc +Zq +pm +jI +aa +aa +Xc +er +er +Ad +Lg +er +Wy +zR +Wy +Xc +Xc +Xc +Xc +er +Xc +Xc +er +er +er +Vj +ln +zu +ht +ln +RE +tb +Iq +ln +wf +wf +wf +bh +Xc +Ot +Ip +"} +(126,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Bg +Bg +Bg +Bg +vC +vC +vC +vC +vC +Xc +Xc +Xc +tq +Bg +Bg +Bg +ok +Lo +Bg +Bg +Bg +ok +ok +Xc +Xc +Zo +aO +Cq +Cq +Xc +Xc +Yr +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +EK +uS +my +uo +uS +uS +VW +UP +uS +tV +hC +hC +hC +QI +HQ +uS +wu +OG +uS +uS +Gu +uo +uS +EK +vo +dR +kb +kb +kb +ef +ef +kb +ze +Bz +Bz +Bz +Bz +Bz +Bz +pY +fA +Qe +gd +Ge +iE +TB +Qe +Qe +il +zA +zA +il +il +il +il +zA +Uh +mt +Uh +oV +aa +Nm +oV +aa +aa +aa +EI +EI +aa +WC +Xc +aa +Xc +Xc +er +er +er +er +er +er +er +er +PX +YD +sl +er +Xc +Xc +er +er +er +Vj +ln +OJ +xa +bh +gv +gM +qw +bh +wf +wf +wf +bh +Xc +Ot +Ip +"} +(127,1,1) = {" +Ip +Ot +Xc +Xc +Bg +Jp +vC +vC +vC +vC +vC +vC +vC +vC +Xc +Xc +Xc +Xc +Bg +Bg +ok +ok +ok +Bg +Bg +Bg +ok +ok +Xc +Xc +aO +Cq +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Wb +dM +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +EK +aj +aj +EK +ta +Ig +PD +WL +uS +YT +YT +uS +uS +QI +QI +TN +QI +an +uS +YT +YT +uS +WL +yq +PD +WL +EK +aj +aj +EK +kb +kb +ef +ef +kb +mF +Df +Bz +Bz +Bz +Bz +Bz +Xs +lK +Kh +Ge +Ge +iE +iE +ka +Qe +cB +il +zA +il +il +il +yo +zA +zA +zA +zA +oV +aa +KY +oV +aa +aa +aa +Xc +ce +EI +ce +aa +Zq +pm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +er +er +bh +bh +bh +ln +bh +bh +bh +qA +bh +bh +bh +oL +bh +bh +Xc +Ot +Ip +"} +(128,1,1) = {" +Ip +Ot +Xc +Xc +vC +vC +vC +vC +vC +vC +vC +vC +vC +vC +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +Bg +Bg +Bg +ok +Xc +Xc +Cq +Cq +Wb +dM +Xc +Xc +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +ys +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +aj +yE +WH +PB +zP +MP +xC +Fh +WL +yE +yE +YT +zy +hC +hC +QI +QI +Ro +YT +yE +yE +WL +zP +oS +xC +Fh +PB +WH +yE +aj +dR +kb +kb +kb +kb +kb +mF +Df +Bz +Bz +Bz +Bz +Bz +lK +Kh +pi +Nc +iE +iE +iE +Qe +Qe +il +il +il +il +il +il +zA +km +WI +zA +oV +aa +aa +oV +aa +aa +aa +Xc +Xc +ce +VC +aa +aa +Gx +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +PX +Xc +Xc +er +er +er +ke +BG +JP +JP +Th +bh +nt +vm +nq +bh +JP +qT +qT +Ww +Xc +Ot +Ip +"} +(129,1,1) = {" +Ip +Ot +Xc +Xc +vC +vC +vC +vC +vC +vC +vC +vC +vC +vC +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +ok +Bg +Bg +Xc +Xc +Se +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Xc +hR +Cq +Wb +dM +aj +yE +zP +cH +MP +OF +Tt +xC +cH +Fh +yE +YT +Qr +hC +hC +hC +hC +VW +YT +yE +zP +cH +MP +OF +OF +xC +cH +nx +WH +aj +dR +kb +ef +kb +ef +kb +kb +ze +Bz +Bz +Bz +Bz +Bz +lK +Qe +Ca +Ra +xp +iE +iE +UK +Qe +bi +il +il +il +il +il +il +zA +zA +zA +oV +aa +aa +oV +Gx +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Xc +Xc +aa +aa +Xc +Xc +Xc +Xc +El +El +PX +YD +er +er +er +XB +JP +JP +kh +JP +px +JP +KK +Qn +NU +JP +qT +qT +Xc +Xc +Ot +Ip +"} +(130,1,1) = {" +Ip +Ot +Xc +Xc +Xc +vC +vC +vC +vC +vC +vC +vC +vC +vC +vC +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +ok +Bg +HK +Xc +LQ +Se +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +AX +dB +rR +dB +AX +Cq +Cq +Cq +AB +Cq +Cq +Cq +Cq +Cq +Xc +Xc +Xc +Cq +Cq +EK +EK +PB +Ig +uS +Jt +Tt +OF +AD +uS +PD +WL +uS +uS +uS +my +uo +uS +uS +uS +WL +Ig +uS +Jt +Tt +OF +yi +uS +PD +WL +EK +EK +kb +ef +kb +ef +kb +kb +mF +Df +Bz +Bz +Bz +Bz +lK +Qe +vA +Ra +xp +iE +iE +Ge +Qe +zA +il +il +il +il +il +il +zA +zA +CF +Yz +HL +Yz +Yz +Yz +Yz +Yz +Zq +pm +aa +aa +Xc +Xc +aa +jI +Xc +Zq +pm +jI +aa +aa +er +El +El +El +PX +YD +YD +er +er +er +ke +JP +qT +qT +JP +bh +nq +Qn +gX +Xc +FQ +JP +JP +Xc +Xc +Ot +Ip +"} +(131,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +vC +vC +vC +vC +Xc +vC +vC +vC +HU +Xc +Xc +Xc +Xc +Xc +ok +ok +ok +Bg +Bg +ok +LQ +LQ +LQ +Se +Cq +Cq +Cq +Cq +AX +dB +dB +AX +GD +LE +St +AX +dB +dB +AX +Wb +dM +Cq +Cq +Xc +Xc +Xc +Xc +Cq +Cq +Cq +aj +PB +aH +MP +XE +TG +WL +PB +vt +XE +xC +Fh +Br +uS +sO +WL +WL +sO +uS +WL +zP +MP +XE +vt +WL +PB +TG +XE +xC +Fh +PB +aj +kb +ef +kb +ef +kb +kb +kb +ze +Bz +Bz +Bz +Bz +lK +Qe +Qe +Qe +Oi +Oi +Qe +Qe +Qe +zA +il +il +il +il +il +il +zA +zA +Yz +Yz +ir +Tj +Tj +Tj +Tj +Yz +Yz +Gx +aa +aa +aa +Xc +ce +aa +EI +EI +aa +WC +Xc +aa +er +er +PX +PX +PX +YD +Xc +er +er +er +bh +bh +bh +qD +bh +bh +bh +px +Xc +bh +Xc +px +bh +Xc +Xc +Ot +Ip +"} +(132,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +vC +vC +vC +Xc +Xc +Xc +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ok +Bg +Bg +tq +Se +LQ +LQ +Se +ys +Cq +Cq +AX +AX +bp +En +AX +RS +LE +aG +AX +qt +ms +AX +AX +Cq +Cq +Cq +Cq +Xc +Xc +Cq +Cq +Cq +Cq +Yo +PB +Ig +Tt +Tt +WL +yE +WH +PB +Tt +Tt +xC +cH +iT +cH +cH +cH +LF +iT +cH +MP +OF +OF +PB +yE +WH +WL +Tt +Tt +PD +PB +Yo +kb +ef +kb +ef +kb +ef +kb +ze +Bz +Bz +Bz +Bz +lK +Kh +AS +Xf +iE +iE +iE +iE +Oi +zA +zA +il +il +il +il +il +zA +Yz +Yz +uX +Tj +jc +jc +jc +Tj +Tj +Yz +Yz +aa +aa +aa +ce +ce +EI +Xc +ce +EI +ce +aa +aa +er +er +er +Xc +YD +er +er +er +er +er +er +Vj +qD +Gr +VL +bh +Wg +JP +tL +Xc +Xc +JP +QK +Xc +Xc +Ot +Ip +"} +(133,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +HU +HU +HU +Xc +Xc +Xc +HU +HU +VE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +jy +ok +Bg +ok +Se +Se +Xc +TO +LQ +it +Cq +BT +iW +mb +mb +jE +FJ +LE +aG +hA +ix +Oo +qt +BT +hR +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Yo +PB +Ig +Tt +OF +WL +yE +yE +PB +Tt +Tt +bD +Gw +my +Gw +Gw +Fy +Fy +Gu +Fy +nv +Tt +Tt +WL +yE +yE +WL +Tt +Tt +yj +np +Yo +kb +ef +kb +ef +kb +ef +kb +mF +Df +Bz +Bz +Bz +lK +Kh +DV +Ge +iE +iE +iE +iE +uQ +zh +zA +zA +il +il +il +il +zA +Yz +Qc +Tj +Tj +fI +Uv +YE +Tj +Tj +Yt +Yz +aa +aa +aa +EI +jI +EI +Xc +Xc +ce +VC +aa +aa +er +er +er +PX +YD +er +er +er +er +er +er +Vj +qD +lE +qT +qD +qT +qT +JP +px +JP +JP +JP +Xc +Xc +Ot +Ip +"} +(134,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +HU +HU +HU +Xc +Xc +Xc +HU +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Xc +ok +ok +Bg +Xc +LQ +gG +Xc +Xc +Xc +Se +Cq +BT +hb +Iw +Fs +hA +uB +LE +St +hA +Fs +rp +qt +BT +CZ +CZ +CZ +CZ +CZ +CZ +CZ +CZ +CZ +CZ +aj +WL +AW +nv +qp +TG +WL +WL +vt +oI +bD +JO +PB +uS +em +fG +fG +em +uS +WL +AW +LB +ym +TG +WL +WL +TG +ym +bD +JO +WL +aj +kb +ef +kb +ef +kb +ef +kb +kb +ze +Bz +Bz +VJ +lK +Qe +GQ +Ge +UC +GQ +iE +iE +uQ +wE +wE +il +il +il +il +il +Yz +Yz +AJ +Tj +Tj +zC +sb +ha +Tj +Tj +Yt +Yz +Yz +aa +Xc +Xc +Xc +jI +OA +jI +Vg +EI +VC +er +er +er +El +PX +Xc +Xc +er +er +er +er +er +bh +bh +qD +qD +bh +CU +Wg +JP +bh +DM +JP +Xc +Xc +Xc +Ot +Ip +"} +(135,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +HU +HU +Xc +Xc +Xc +HU +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Xc +ok +ok +Bg +Gf +it +LQ +Xc +Xc +Xc +aS +AX +AX +AX +jE +jE +jE +Fu +Ny +Ny +jE +hA +hA +AX +AX +AX +lH +lH +lH +lH +Dy +lH +lH +lH +lH +EK +EK +WL +yq +uS +Jt +Tt +Tt +yi +uS +PD +PB +EK +EK +EK +my +uo +EK +EK +EK +PB +Ig +uS +Jt +Tt +Tt +yi +uS +PD +PB +EK +EK +kb +ef +kb +ef +kb +ef +kb +kb +ze +Bz +VJ +Bz +lK +Qe +by +Ge +mx +by +iE +Jg +Kh +il +wE +XL +cB +il +XL +wE +Hs +Je +Tj +Tj +Fk +Do +dP +dP +Fk +Tj +Tj +fC +Yz +aa +aa +aa +EI +EI +EI +ce +nP +VS +YD +er +er +er +El +Xc +Xc +Xc +Xc +er +er +er +er +er +bh +Vj +Vj +bh +qD +qD +qD +bh +bh +Xc +Xc +Xc +Xc +Ot +Ip +"} +(136,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +HU +kA +jg +Xc +HU +HU +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Xc +vC +vC +Jp +ID +Xc +Xc +Xc +eI +HX +vR +BT +GD +GD +GD +GD +mv +im +Fs +aG +jE +St +aG +aG +LK +BT +mz +mz +mz +mz +mz +mz +mz +mz +mz +mz +aj +yE +vJ +Gw +LB +Tt +Tt +bD +Gw +JO +WH +aj +Cm +zE +zE +zE +dV +Et +aj +WH +AW +Gw +LB +Tt +OF +xw +Gw +Mi +WH +aj +kb +kb +kb +kb +kb +kb +kb +kb +kb +ze +Bz +Bz +Bz +lK +Qe +zj +iE +Jg +zj +iE +Jg +Kh +il +zA +XL +eC +wE +il +zA +vV +xF +Tj +Tj +Tj +Fk +Fk +Fk +Fk +Fk +Fk +Tj +vV +aa +aa +jI +EI +Xc +EI +Xc +jI +EI +El +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +er +er +er +er +er +er +bh +Vj +Vj +Vj +bh +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(137,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +HU +HU +lR +Xc +Xc +Xc +Xc +Xc +Xc +vC +vC +Jp +bz +bz +da +da +eC +HU +HU +fM +yM +yM +yM +db +Zh +Fs +Cj +Bx +jE +Pt +dr +Pt +hD +fM +zE +zE +zE +zE +zE +zE +zE +zE +zE +zE +aj +yE +yE +WL +AW +Fy +Fy +JO +WL +WH +WH +aj +zE +zE +xm +zE +xm +zE +aj +WH +WH +PB +vJ +Fy +Fy +Mi +WL +yE +WH +aj +kb +kb +kb +kb +DA +kb +kb +kb +kb +ze +Bz +Bz +Bz +lK +Qe +MU +iE +iE +iE +iE +Jg +uQ +il +wE +XL +eC +wE +XL +il +vV +RA +Tj +Tj +Tj +Tj +Tj +Tj +Tj +Tj +Tj +Tj +vV +aa +aa +aa +US +Xc +jI +EI +EI +Gx +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Gx +er +er +er +er +er +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(138,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Ua +HU +HU +HU +HU +HU +HU +HU +lR +re +Xc +Xc +Xc +Xc +Xc +HU +vC +vC +bz +bz +Jp +Xc +da +Xc +HU +VE +BT +yR +yR +MI +MI +Zh +la +wK +ND +jE +bv +ND +ND +pJ +BT +zE +zE +xm +zE +zE +zE +MS +MS +zE +zE +EK +aj +aj +EK +PB +PB +WL +WL +EK +aj +aj +EK +pL +xm +xm +TA +xm +zE +EK +aj +aj +EK +WL +WL +WL +WL +EK +aj +aj +EK +kb +kb +ef +kb +ef +kb +ef +kb +dR +ze +Bz +Bz +Bz +lK +Qe +iE +JD +sU +iE +iE +RM +uQ +wE +wE +Xc +Xc +zA +wE +XL +Hs +Tj +Tj +Fk +lk +ki +Sq +qx +ar +Tj +rH +rH +Yz +Gx +aa +jI +er +Xc +Xc +EI +er +YD +er +Xc +Xc +Xc +Xc +Xc +Xc +er +er +er +er +er +er +aa +aa +Zq +pm +Gx +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(139,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Ua +HU +HU +HU +HU +HU +HU +lR +re +re +Xc +Xc +Xc +Xc +Xc +HU +xL +vC +Xc +Jp +dz +da +da +vR +fX +lR +AX +AX +AX +jE +jE +jE +Hy +Iw +Iw +jE +hA +hA +AX +AX +AX +zE +xm +xm +xm +zE +dV +Et +MS +MS +zE +zE +zE +zE +EK +EK +aj +aj +EK +EK +dV +Et +zE +zE +zE +xm +TI +OM +zE +dV +Et +qj +EK +EK +aj +aj +EK +EK +fi +dR +kb +kb +kb +ef +kb +ef +kb +ef +kb +dR +ze +Bz +Bz +Bz +lK +Qe +Uh +Uh +Uh +Kh +Kh +Qe +uQ +zA +zA +zA +il +zA +zA +il +Yz +Tj +Tj +Tj +hJ +Yz +Yz +Yz +AP +jX +yH +GF +Yz +aa +aa +aa +er +er +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +er +er +er +er +er +er +er +er +er +aa +aa +Xc +Xc +Xc +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(140,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +Ua +HU +HU +HU +HU +HU +HU +Wo +re +re +Xc +Xc +Xc +Xc +Xc +HU +HU +vC +bz +Jp +Jp +Jp +NH +NH +Tb +re +re +BT +gl +Iw +wp +hA +MI +FB +ND +hA +Iw +Iw +ZD +AX +dV +Et +zE +xm +xm +xm +zE +zE +zE +zE +zE +zE +zE +zE +VX +zE +jL +Mz +Mz +Mz +Mz +Mz +Mz +ho +hr +zE +xm +TS +xm +zE +zE +qj +lH +ua +fi +kb +kb +MO +dR +ef +ef +ef +kb +ef +kb +ef +kb +ef +kb +dR +ze +Bz +Bz +Bz +pY +fA +Uh +gV +Uh +zX +zA +zA +zA +zA +km +WI +zA +zA +zA +il +HL +Tj +Tj +Tj +Xe +Yz +Yz +Yz +AP +Av +fV +HM +Yz +aa +aa +Zq +pm +er +er +Xc +Xc +Xc +Xc +Xc +aa +aa +OW +jI +Ut +er +er +er +OW +jI +Ut +jI +Ut +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(141,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +Ua +HU +HU +VE +Xc +Xc +HU +Wo +re +Xc +Xc +Xc +Xc +Xc +Xc +HU +oe +HU +mo +bz +bz +iQ +Iy +Jp +vC +HP +Gi +BT +gl +eY +fQ +jE +Ms +MB +ND +hA +Iw +Fs +ZD +AX +zE +zE +zE +zE +zE +zE +zE +zE +zE +zE +zE +MS +zE +zE +VX +jL +oq +Uh +Uh +EF +EF +EF +Uh +Uh +lQ +zE +zE +zE +xm +xm +zE +qj +lH +PZ +kb +kb +kb +kb +kb +kb +kb +kb +kb +ef +kb +ef +kb +ef +kb +kb +ze +Bz +Bz +Bz +Bz +lK +Uh +mt +Uh +Bm +zA +zA +il +il +il +zA +zA +zA +zA +zA +Yz +es +Tj +Tj +hJ +Yz +Yz +Yz +AP +jX +sF +fI +Yz +aa +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Gx +aa +aa +aa +Xc +EI +Xc +aa +OW +jI +Ut +EI +Xc +EI +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(142,1,1) = {" +Ip +Ot +Xc +Xc +re +re +Ua +HU +Xc +Xc +Xc +Xc +HU +Wo +re +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +Xc +mo +Xc +bz +uC +do +Jp +uR +vC +vC +AX +AX +jt +Uq +AX +NB +MB +Sh +AX +hY +kz +AX +AX +zE +zE +MS +Uh +Uh +Uh +xm +zE +zE +zE +MS +MS +MS +zE +VX +Yx +Uh +Uh +Vp +Qs +Qs +Qs +Qs +Uh +xO +zE +zE +xm +xm +xm +Cm +qj +lH +sz +kb +ef +ef +ef +kb +ef +ef +ef +kb +ef +kb +ef +kb +ef +kb +kb +ze +Bz +Bz +Bz +Bz +lK +HO +zA +zA +zA +il +il +il +il +il +il +zA +zA +zA +zA +Yz +xu +Tj +Fk +Lp +TD +Be +Gh +Lv +Tj +dP +SK +Yz +aa +aa +aa +aa +aa +Xc +aa +aa +aa +aa +aa +aa +OW +jI +Ut +OW +jI +Ut +EI +Xc +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(143,1,1) = {" +Ip +Ot +Xc +Xc +re +re +Ua +HU +HU +Xc +Xc +Xc +HU +Wo +re +Xc +Xc +Xc +Xc +Xc +JY +HU +HU +eC +uj +Xc +Xc +Xc +Xc +Xc +Jp +Jp +vC +vC +AX +dB +dB +AX +Yu +ey +ik +AX +AX +AX +AX +zE +zE +MS +MS +Uh +gV +Uh +xm +xm +zE +MS +MS +MS +zE +zE +VX +Yx +EF +Wd +ux +XR +HN +HN +HN +ib +Pk +zE +xm +xm +xm +xm +zE +fa +fa +uZ +kb +kb +DA +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +ze +OC +Bz +Bz +Bz +lK +Uw +il +il +il +il +il +il +il +il +il +il +zA +il +il +vV +nK +Tj +Tj +Fk +dP +SK +SK +Tj +Tj +Tj +Tj +vV +aa +aa +aa +Gx +aa +aa +aa +aa +aa +aa +aa +aa +Xc +EI +Xc +Xc +EI +Xc +aa +aa +er +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(144,1,1) = {" +Ip +Ot +Xc +Xc +re +re +Ua +HU +HU +BE +Xc +BE +HU +Wo +re +Xc +Xc +Xc +Xc +Xc +Tl +dF +HU +Xc +Xc +Xc +Xc +Xc +Xc +vC +Jp +Jp +Jp +vC +vC +HU +oB +AX +dB +rR +dB +AX +zE +zE +zE +zE +zE +MS +MS +Uh +mt +Uh +xm +xm +zE +MS +MS +MS +MS +zE +VX +Yx +EF +za +HN +HN +HN +HN +HN +ib +Pk +zE +zE +lX +xm +xm +zE +qj +lH +sz +kb +ef +kb +kb +kb +kb +wO +MO +tw +bl +gx +bl +tw +bl +bl +tw +cQ +zG +zG +zG +zG +ch +tw +bl +Tu +bl +tw +Fo +il +il +il +il +il +il +il +il +vV +yl +Tj +Tj +Tj +Tj +Tj +Tj +Tj +Tj +Fk +Fk +vV +er +aa +aa +aa +aa +aa +aa +aa +aa +Xc +Xc +aa +Xc +Xc +OW +jI +Ut +aa +OW +jI +Ut +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(145,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +GM +HU +HU +HU +BE +HU +HU +KD +Xc +Xc +Xc +Xc +xL +fu +re +Ua +Xc +Xc +HU +Xc +vR +Xc +Dv +vC +vC +Jp +Jp +ID +vC +IN +oB +lH +wy +zE +zE +zE +zE +MS +MS +zE +zE +MS +zE +zE +zE +zE +zE +zE +zE +zE +MS +Xc +Xc +zE +VX +Yx +Uh +Uh +lC +Qs +pR +Qs +Qs +Uh +rP +zE +OM +TI +xm +zE +zE +qj +lH +sz +Rv +ef +kb +kb +kb +tw +tw +tw +tw +RO +LC +DE +vF +RN +gs +tw +tw +bl +bl +bl +bl +tw +tw +oU +EU +EU +tw +bl +bl +bl +tw +il +il +il +il +Vt +Yz +Je +WU +Tj +Tj +jc +jc +jc +Fk +Fk +Fk +BS +Yz +er +aa +aa +aa +Xc +Xc +aa +jI +Xc +Zq +pm +jI +aa +Xc +Xc +EI +Xc +aa +Xc +EI +Xc +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(146,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +KD +re +Ua +Xc +Tx +HU +vR +mo +Tx +HU +oe +vC +Jp +Jp +Jp +vC +vC +oB +lH +wy +zE +zE +zE +MS +MS +zE +zE +zE +zE +zE +zE +xm +Ug +zE +xm +Wp +Et +Xc +Xc +Xc +Xc +Xc +YR +Tp +Uh +Uh +EF +EF +EF +Uh +Uh +Hx +zE +OM +TI +xP +zE +zE +qj +lH +Ir +uO +ef +kb +kb +tw +tw +lO +lO +tw +Lh +YJ +LC +nw +EU +LD +EU +YO +YO +YO +EU +YO +YO +EU +EU +EU +EU +EU +EU +cC +cC +bl +zA +il +il +il +Uh +Uh +Uh +AJ +Tj +Tj +eD +HY +pI +Tj +Tj +Sb +Yz +Yz +er +aa +aa +aa +aa +Xc +ce +aa +EI +EI +aa +WC +Xc +aa +aa +aa +aa +OW +jI +Ut +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(147,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +xL +Xc +Xc +Xc +Xc +HU +KD +GM +YS +mo +YS +Xc +YS +HU +HU +lR +Tl +dF +Jp +Jp +Jp +vC +oB +lH +wy +zE +zE +MS +dV +Et +zE +zE +xm +xm +xm +xm +xm +TI +OM +zE +xm +xm +Xc +Xc +Xc +Xc +Xc +Xc +YR +De +De +yc +yc +De +De +De +Aq +zE +xm +TI +OM +zE +Sl +fa +fa +fa +kb +kb +kb +ef +tw +Rc +jl +zn +Qw +YJ +YJ +YJ +us +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +rb +bl +CF +zA +il +il +Uh +gV +Uh +Bj +Tj +Tj +Ep +tQ +eh +Tj +Fk +fI +Yz +er +er +Gx +aa +aa +aa +ce +ce +EI +Xc +ce +EI +ce +aa +aa +aa +aa +aa +Xc +EI +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(148,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +hI +HU +HU +HU +HU +kA +jg +Xc +Xc +Xc +Xc +fX +HU +Xc +Xc +mo +mo +Qb +HU +kA +jg +KD +Gi +GM +Jp +Jp +Jp +vC +oB +lH +wy +MS +MS +zE +zE +zE +xm +xm +AC +xm +AC +xm +xm +xm +Vf +zE +xm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +dV +Et +zE +xm +xm +xm +zE +rz +xm +zE +zE +xm +WM +xm +xm +qj +lH +sz +kb +kb +kb +ef +bl +GS +az +az +Qw +YJ +YJ +eK +vF +YX +SU +Cf +fK +EU +EU +EU +Qx +vF +OD +EU +EU +EU +vF +yG +fK +GO +bl +Bm +zA +il +il +Uh +mt +Uh +Yz +Tj +Tj +SK +SK +SK +Fk +Fk +Yz +Yz +er +er +er +aa +aa +aa +EI +jI +EI +Xc +Xc +ce +VC +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(149,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +lR +Tl +dF +HU +Xc +Xc +Xc +Xc +HU +Xc +HU +Xc +vR +Tx +YS +HU +HU +HU +Xc +HU +Jp +Jp +Jp +Jp +HU +oB +Dy +wy +MS +zE +zE +zE +xm +xm +AC +xm +xm +AC +xm +AC +xm +xm +zE +xm +Sl +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zE +zE +zE +xm +zE +zE +zE +xm +zE +dV +Et +zE +xm +xm +qj +lH +sz +kb +kb +kb +ef +bl +LV +az +az +Qw +YJ +ji +NI +vF +vF +vF +vF +vF +vF +EU +EU +vF +vF +wN +EU +EU +gI +vF +vF +EU +YO +tw +tw +zA +il +il +il +zA +Gy +Yz +Yz +Tj +Tj +Tj +Fk +Fk +Yz +Yz +er +er +er +er +aa +aa +Xc +Xc +Xc +jI +OA +jI +Vg +EI +VC +aa +aa +aa +aa +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(150,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xL +Wo +re +re +dF +Xc +Xc +Xc +Xc +HU +Xc +mo +Xc +Xc +Qb +HU +HU +HU +HU +Jp +Jp +Jp +Jp +Jp +TV +HU +oB +Dy +wy +zE +zE +zE +xm +xm +xm +AC +xm +AC +AC +AC +AC +AC +xm +Ug +xm +xm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +dV +Et +zE +zE +zE +zE +zE +zE +zE +xm +xm +xm +qj +Lf +sz +kb +ef +kb +wO +tw +QD +sw +Yi +Qw +YJ +YJ +Vo +vF +yL +ah +aW +RX +xT +EU +EU +EU +lY +EU +EU +EU +EU +EU +EU +EU +YO +cl +bl +il +il +il +il +il +km +WI +Hs +Yz +vV +vV +vV +Yz +Yz +er +er +er +er +er +er +Zq +pm +aa +EI +EI +EI +ce +nP +VS +YD +Gx +aa +aa +aa +Gx +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(151,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +Wo +re +re +Ua +Xc +Xc +Xc +Xc +HU +mo +vR +Xc +Xc +Xc +Xc +HU +HU +dz +Jp +Jp +Jp +Jp +Jp +HU +HU +oB +lH +wy +zE +zE +zE +xm +xm +AC +AC +AC +AC +AC +AC +AC +xm +xm +OM +zE +xm +xm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +Cm +zE +zE +xm +zE +zE +xm +xm +qj +Lf +sz +kb +ef +kb +vk +tw +vF +cL +qS +Qw +YJ +YJ +YJ +vF +EU +EU +EU +EU +xT +YO +YO +EU +EU +EU +vF +vF +YO +EU +EU +EU +EU +YO +Gl +il +il +il +il +il +il +zA +Nq +km +WI +zA +zA +zh +HO +er +er +er +er +er +er +er +aa +jI +EI +Xc +EI +Xc +jI +EI +El +er +aa +aa +Zq +pm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(152,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +Wo +re +re +Ua +BE +Xc +Xc +Xc +Xc +Xc +kX +eC +Tx +Xc +Xc +Xc +Xc +Jp +Jp +Jp +Jp +Jp +Jp +HU +HU +oB +lH +wy +zE +zE +zE +zE +xm +xm +AC +AC +AC +AC +AC +xm +xm +zE +mU +MS +xm +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +zE +zE +xm +xm +xm +xm +zE +xm +xm +qj +lH +sz +kb +ef +kb +MO +tw +vF +UZ +vF +vF +RG +YJ +YJ +Ki +EU +PI +EU +bU +xT +YO +EU +EU +EU +EU +EU +YO +YO +EU +EU +EU +EU +bU +bl +il +il +il +il +il +il +il +Nq +zA +zA +zA +zA +Bm +HO +er +er +er +er +er +Xc +er +aa +aa +US +Xc +jI +EI +EI +Gx +er +er +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(153,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +KD +re +re +GM +HU +BE +Xc +Xc +Xc +Xc +YS +YS +vR +Ql +NH +da +Iy +Jp +Jp +Jp +Jp +Jp +uR +vC +HU +oB +lH +wy +zE +zE +zE +zE +xm +xm +xm +xm +xm +AC +xm +xm +xm +zE +zE +MS +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +EF +EF +Uh +pL +zE +xm +xm +zE +zE +zE +xm +qj +lH +sz +kb +kb +kb +ef +tw +kd +xU +fv +vF +Kw +YJ +LC +Ki +EU +EU +EU +vF +vF +YO +EU +vF +vF +wN +EU +EU +gI +vF +vF +EU +EU +tw +tw +il +il +il +il +il +il +il +HO +wE +zA +zA +zA +zA +HO +er +er +Xc +Xc +Xc +Xc +Xc +aa +jI +er +Xc +Xc +EI +er +YD +er +er +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Dc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(154,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +VE +KD +GM +HU +HU +HU +HU +hI +Xc +Xc +NC +Tx +YS +xS +vK +TO +do +Jp +ID +Jp +Jp +Jp +vC +vC +HU +oB +lH +wy +zE +zE +zE +zE +zE +xm +xm +xm +xm +xm +xm +zE +zE +zE +zE +zE +zE +OM +ks +xm +Ys +xm +xm +Xc +Xc +Uh +Uh +fe +BC +Uh +Uh +zE +xm +Rf +zE +xm +zE +Cm +fa +fa +fa +kb +kb +kb +ef +tw +kd +xU +fv +vF +iv +YJ +LC +vF +ZS +RJ +RJ +nw +ZL +EU +EU +Fr +vF +oU +EU +EU +EU +vF +pT +wr +AQ +bl +Vb +WI +il +il +il +il +il +il +Nq +wE +Xc +yo +zA +zA +HO +er +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Up +kL +kL +kL +kL +kL +kL +Xc +Up +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Dc +Dc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(155,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +HU +HU +Xc +HU +HU +vR +aS +kX +mo +da +da +da +bz +uC +Jp +Xc +Xc +Jp +Jp +vC +HU +Xc +HC +HC +HC +Sl +zE +zE +zE +zE +zE +zE +xm +xm +xm +zE +zE +MS +MS +zE +MS +mU +OM +zE +xm +xm +xm +zE +zE +zE +Uh +Zs +HN +HN +HN +ib +zE +rz +OM +zE +xm +xm +zE +qj +lH +sz +kb +ef +kb +ef +tw +kd +xU +fv +vF +YJ +YJ +LC +vF +cL +II +Yw +nw +IK +EU +EU +EU +EU +EU +EU +EU +EU +EU +EU +YO +gN +bl +zA +zA +il +il +il +il +il +il +eC +eC +Xc +eC +km +WI +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Up +Up +Up +aw +QX +QX +aw +Up +Up +Xc +Xc +Xc +Xc +Xc +Xc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(156,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +BE +HU +HU +HU +HU +YS +mo +TO +aS +rX +da +da +rX +bz +do +Jp +Jp +Jp +Jp +HU +HU +Xc +Xc +Xc +Xc +Xc +xm +xm +zE +zE +zE +zE +zE +dV +Et +zE +zE +zE +zE +MS +MS +zE +zE +zE +zE +zE +Ys +xm +zE +xm +xm +Uh +NT +HN +HN +ao +Uh +zE +OM +OM +xm +xm +xm +zE +qj +lH +Cs +kb +ef +kb +kb +tw +tw +vF +vF +vF +Ry +LC +LC +vF +cL +cL +dm +vF +hq +YO +EU +EU +EU +EU +EU +EU +EU +YO +YO +YO +QZ +bl +zA +zA +il +il +il +il +il +il +Xc +Xc +Xc +eC +XL +wE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Up +Xc +tK +bX +tK +tK +Vv +tK +Up +Xc +Xc +Xc +Xc +Xc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(157,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +BE +BE +HU +HU +HU +Xu +mo +mo +mo +vR +cJ +NH +da +Xc +ID +Jp +Jp +Jp +Jp +Jp +HU +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +zE +zE +zE +zE +zE +zE +zE +dV +Et +zE +zE +pL +Xc +Xc +Xc +Xc +Xc +xm +Bi +xm +Uh +Uh +Uh +DX +Ul +Uh +Uh +Qm +OM +xm +xm +xm +xm +zE +qj +lH +Cs +kb +ef +kb +ef +ef +tw +tw +vF +vF +YJ +LC +YJ +tw +bl +bl +bl +tw +tw +iF +rQ +EU +vF +dj +rt +YO +EU +tw +bl +bl +bl +tw +zA +zA +il +il +bd +So +qI +So +bd +Xc +eC +il +XL +wE +eC +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Ot +Ip +"} +(158,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +BE +HU +HU +HU +BE +HU +HU +HU +HU +Xc +kX +mo +YS +Tx +vC +vC +vC +Jp +Jp +Jp +Jp +Jp +fX +HU +HU +Xc +Xc +Xc +Xc +Xc +Uh +Uh +Uh +Uh +xm +xm +xm +zE +zE +zE +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +TI +TI +Uh +gV +Uh +Uh +Uh +Uh +xm +zE +Ly +zE +xm +xm +Wp +Et +fa +fa +fa +kb +kb +kb +kb +ef +ef +tw +tw +tw +bl +gx +bl +tw +ef +ef +ef +tw +tw +tw +bl +bl +tw +tw +tw +Tu +bl +tw +km +WI +zA +zA +zA +zA +zA +il +uw +RV +qF +GV +bd +bd +eC +XL +il +il +Xc +Xc +Xc +Xc +Xc +Xc +nk +Xc +aq +Xc +Xc +Xc +Xc +Xc +zN +zN +zN +zN +zN +zN +Xc +Xc +JP +zN +zN +zN +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Ot +Ip +"} +(159,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +xL +vC +Xc +Xc +HU +HU +BE +vC +vC +vC +Jp +Jp +Jp +Jp +vC +vC +HU +HU +HU +Xc +Uh +Xc +Xc +Xc +Uh +Uh +Uh +Uh +Uh +Xc +xm +zE +zE +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +eN +Uh +mt +Uh +zE +xm +Sl +xm +zE +zE +zE +xm +xm +xm +zE +qj +lH +sz +kb +ef +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +tw +uu +Nw +Nw +Nw +Nw +JG +tw +zh +zA +zA +zA +zA +zA +zA +zA +il +zA +il +xr +AM +qF +RK +GV +bd +XL +XL +XL +XL +XL +Xc +Xc +Xc +BF +Xc +nk +nk +aq +fo +Xc +Xc +Xc +zN +zN +LA +UM +LA +LA +LA +zN +zN +zN +zN +zN +zN +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Ot +Ip +"} +(160,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +Xc +vC +vC +vC +Xc +Xc +HU +vC +vC +vC +Jp +Jp +Jp +Jp +vC +vC +HU +HU +Xc +Xc +Xc +Uh +Fn +Ga +Hi +JF +Nb +Uh +Uh +Xc +Xc +Xc +zE +zE +Ug +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +xm +zE +zE +zE +xm +xm +zE +zE +xm +xm +xm +zE +zE +qj +lH +sz +kb +ef +kb +ef +kb +ef +ef +ef +kb +ef +ef +ef +kb +ef +ef +kb +kb +fk +yQ +yQ +yQ +jC +tH +HO +zA +il +il +il +zA +il +zA +il +il +zA +zA +xr +AM +qF +qF +GV +bd +uw +xr +So +uw +bd +Xc +fo +fo +fo +Xc +eC +bO +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Ot +Ip +"} +(161,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +Xc +Xc +vC +vC +vC +Xc +Xc +Xc +vC +dz +Jp +Jp +Jp +Jp +vC +HU +Xc +Xc +Xc +Xc +Uh +Uh +Ft +zw +zw +zw +so +so +so +NK +NK +Qf +zE +Ly +OM +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +MS +zE +VX +zE +xm +xm +dV +Et +zE +TI +qH +Cm +zE +zE +zE +xm +zE +zE +MS +qj +lH +sz +kb +ef +kb +ef +kb +kb +kb +kb +kb +kb +DA +kb +kb +kb +kb +kb +kb +fk +yQ +yQ +yQ +XV +HO +HO +km +WI +il +il +il +il +il +il +il +il +zA +uw +nd +nd +qF +RK +bd +fE +KP +Po +BV +bd +bd +rx +fo +fo +zN +zN +UM +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Ot +Ip +"} +(162,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +kA +jg +Xc +Xc +vC +vC +vC +Xc +Xc +vC +vC +Jp +Jp +Jp +TV +HU +HU +Dv +Xc +Xc +Xc +Xc +Uh +Eg +so +Gb +It +Kx +zw +NQ +zw +zw +zw +Xc +zE +zE +Ly +zE +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +xl +MS +zE +zE +vd +OM +hE +zE +zE +oO +TI +zE +zE +xm +xm +zE +zE +dV +Et +MS +qj +Dy +Dy +kb +kb +DA +ef +kb +ef +ef +ef +kb +ef +ef +ef +kb +ef +ef +ef +kb +fk +yQ +yQ +yQ +XV +HO +zA +zA +zA +zA +il +il +il +il +zA +zA +zA +zA +xr +AM +AM +qF +RK +qI +RK +RK +RK +qF +tk +bd +yW +fo +zN +zN +zN +UM +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Xc +Xc +Ot +Ip +"} +(163,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +Xc +Xc +vC +vC +vC +vC +vC +vC +vC +Jp +Jp +Jp +Jp +vC +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Ey +so +so +so +zw +zw +Uh +Uh +PY +Xc +Xc +zE +zE +MS +MS +zE +zE +zE +pL +Xc +Xc +Xc +MS +MS +bq +zE +VX +zE +zE +zE +ZI +mp +qP +zE +zE +zE +xm +xm +xm +zE +zE +MS +MS +Dy +Dy +Xc +mt +Uh +kb +ef +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +kb +fk +yQ +yQ +jC +tH +eC +QO +QO +QO +QO +qN +il +il +zA +zA +Xc +wE +CF +xr +GV +nd +qF +GV +bd +uk +RK +qF +qF +qF +So +rx +zN +zN +zN +zN +pQ +xg +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +xg +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +xg +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Ot +Ip +"} +(164,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +Xc +vC +vC +vC +vC +vC +vC +vC +vC +Jp +Jp +Jp +Jp +vC +HU +HU +HU +Xc +Xc +Xc +Xc +Xc +Fa +FI +Iz +so +so +Uh +Uh +Xc +Xc +Xc +pL +zE +zE +zE +MS +MS +zE +zE +zE +zE +MS +MS +MS +aU +zE +zE +Xc +Xc +Xc +Xc +Uh +Uh +Uh +tm +xm +Rw +Rf +xm +zE +zE +MS +MS +pL +Dy +Xc +Xc +HN +Uh +kb +kb +kb +kb +kb +kb +kb +dR +Ds +Xc +kb +kb +Xc +Xc +GJ +RI +yQ +yQ +XV +Xc +eC +wE +zA +zA +zA +Xq +zA +zA +zA +Bm +Xc +eC +wE +uw +RK +qF +qF +AM +So +wh +Lr +Zb +AM +qF +So +zN +zN +zN +zN +zN +zN +Da +Zi +Lt +ev +DP +am +Lt +ev +DP +am +Lt +ev +DP +am +Lt +ev +DP +am +Lt +ev +DP +am +Lt +Zi +By +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Ot +Ip +"} +(165,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +vC +vC +vC +vC +vC +vC +vC +Jp +Jp +Jp +Jp +Jp +vC +vC +HU +HU +kA +jg +Xc +Xc +Xc +Xc +Uh +Uh +KE +HN +so +Uh +Xc +Xc +Xc +bR +Et +zE +zE +MS +MS +MS +MS +zE +zE +zE +zE +MS +vs +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Fg +zE +xm +TI +OM +zE +ZI +xm +xm +xm +Xc +Xc +Xc +VP +HN +Uh +nn +wO +fh +Uh +kb +kb +kb +bG +Xc +Xc +Xc +Xc +Xc +Xc +UF +sj +yQ +yQ +XV +eC +eC +Jn +zA +zA +zA +Xq +zA +zA +Xc +Xc +Xc +Xc +eC +bd +lm +qF +nd +nd +So +wh +qF +Ln +EN +RK +bd +pQ +zN +zN +zN +zN +pQ +Da +Vr +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +eU +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +pH +By +Dc +Dc +Dc +Dc +Xc +Xc +Xc +Ot +Ip +"} +(166,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +vC +vC +vC +vC +vC +uR +Jp +Jp +Jp +Jp +vC +vC +HU +HU +HU +HU +HU +Xc +Xc +Xc +Xc +Uh +Uh +Uh +mt +Uh +Xc +Xc +Xc +Dy +Dy +Dy +zE +zE +zE +MS +MS +MS +MS +Rh +zE +zE +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Fg +zE +xm +OM +zE +zE +xm +xm +xm +Xc +Xc +NK +Bl +HN +tu +so +Uh +if +if +Uh +Uh +su +su +su +Xc +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +eC +wE +zA +zA +zA +zA +Xq +il +Xc +Xc +Xc +Xc +Xc +bd +bd +fd +qF +nd +nd +bd +Si +qF +qF +qF +RK +qI +pQ +zN +zN +zN +Xc +zN +Da +Pg +Zi +Zi +Zi +eU +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +eU +Zi +Vy +rm +By +Dc +Dc +Dc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(167,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +vC +vC +vC +vC +Jp +Jp +Jp +Jp +Jp +kA +jg +HU +HU +HU +HU +Dv +HU +jK +jK +jK +pL +Uh +gV +Uh +dn +zE +zE +Xc +Xc +qj +lH +wy +zE +MS +MS +MS +MS +MS +MS +OM +OM +zE +dV +Et +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Fg +zE +xm +gJ +zE +xm +xm +xm +Xc +Xc +zw +HN +HN +HN +HN +so +mt +BC +Bl +ov +Uh +qM +qM +Af +qM +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +eC +wE +zA +zA +zA +zA +hP +il +il +Xc +Xc +Xc +bd +bd +Qh +RK +qF +qF +nd +So +KP +RK +qF +RK +RK +bd +pQ +zN +zN +Xc +Xc +zN +Da +Kb +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +bo +By +Dc +Dc +Dc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(168,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +vC +vC +vC +vC +Jp +Jp +Jp +dz +HU +HU +HU +HU +kA +jg +HU +HU +HU +oB +pg +wy +zE +Uh +mt +Uh +xm +zE +zE +xl +Xc +qj +lH +wy +MS +MS +MS +MS +MS +MS +MS +MS +bM +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Fg +zE +zE +zE +zE +qJ +xm +xm +Xc +zD +HN +FY +fp +HN +HN +so +mt +HN +IO +ov +Uh +qM +Af +Af +Af +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +nm +zA +zA +zA +zA +zA +hP +il +il +Xc +Xc +uw +uw +pe +qF +qF +qF +AM +AM +So +RK +RK +qF +CM +mG +So +UM +zN +zN +Xc +zN +zN +Da +IC +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +RL +By +zN +Dc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(169,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +dF +HU +HU +HU +vC +vC +vC +vC +Jp +vC +Xc +Xc +Dv +HU +HU +HU +HU +HU +HU +HU +HU +oB +pg +wy +zE +zE +zE +xm +zE +zE +zE +MS +MS +qj +lH +wy +MS +MS +MS +MS +MS +MS +MS +zE +zE +zE +zE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Fg +ZI +zE +xm +zE +OM +hH +xm +mt +HN +HN +cz +so +Vx +HN +so +mt +HN +fY +bs +Uh +Af +Af +qM +Af +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +Gj +zA +zA +zA +zA +zA +Xq +il +il +il +Xc +uw +uw +Hd +qF +nd +nd +nd +GV +bd +uk +RK +qF +ZH +zQ +So +pQ +zN +zN +zN +pQ +zN +Da +Vr +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +pH +By +zN +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(170,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +re +IU +dF +HU +HU +HU +vC +vC +TV +Jp +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +HU +HU +oB +pg +wy +zE +zE +zE +xm +cR +zE +zE +MS +MS +qj +lH +wy +MS +MS +MS +MS +MS +MS +MS +MS +MS +zE +pL +Xc +Xc +Xc +Xc +zE +Xc +Xc +Xc +Uh +Uh +Uh +tm +zE +zE +zE +xm +xm +xm +Xc +RT +HN +so +HN +Xc +if +if +Uh +ov +cn +Uh +Uh +Af +Af +qM +qM +Af +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +Gj +zd +zd +cx +zd +zd +Yq +zA +il +il +il +qI +GV +RK +qF +qF +qF +qF +RK +qI +RK +RK +qF +sC +kG +bd +pQ +zN +zN +zN +pQ +zN +Da +Pg +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +rm +By +zN +zN +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(171,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +re +re +re +Ua +HU +HU +HU +HU +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +HU +Dv +HU +HU +kA +jg +HU +oB +pg +wy +zE +zE +zE +MS +OM +OM +zE +MS +MS +qj +lH +wy +MS +MS +MS +zE +MS +MS +MS +MS +zE +zE +Xc +Xc +Xc +Xc +zE +zE +MS +zE +VX +xm +Ux +zE +zE +xm +zE +zE +xm +qH +Xc +Xc +ss +wJ +IO +ol +Xc +Mk +Mk +Uh +Uh +Uh +Uh +Mk +Af +qM +qM +Af +Af +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +Gj +MQ +il +il +il +zA +Xq +zA +il +il +il +So +tF +Xy +Xy +Xy +Xy +Xy +tF +bd +Ws +Ac +Ac +KP +bd +bd +zN +zN +zN +zN +zN +zN +Da +Kb +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +bo +By +zN +zN +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(172,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +aL +re +re +re +Ua +HU +HU +HU +HU +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +HU +HU +HU +oB +pg +wy +zE +zE +zE +MS +MS +eT +zE +MS +MS +Dy +Dy +Dy +MS +MS +zE +zE +zE +MS +MS +zE +zE +zE +zE +Xc +Xc +dV +Et +MS +MS +zE +VX +xm +xm +zE +xm +xm +dV +Et +OM +TI +rz +Xc +Xc +SG +TJ +Xc +Xc +ME +Mk +RR +HH +Af +Mk +Mk +qM +qM +Af +po +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +Gj +il +il +il +il +zA +Xq +zA +zA +il +il +uw +RK +qF +qL +qY +AM +qF +uK +bd +So +So +So +bd +bd +Xc +bO +bO +zN +zN +UM +zN +Da +IC +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +RL +By +zN +zN +zN +Xc +Xc +Xc +Xc +Ot +Ip +"} +(173,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +re +re +re +re +Ua +kA +jg +HU +vC +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +jK +kD +kD +kD +kD +kD +qq +jK +wA +zi +zE +zE +zE +MS +zE +MS +MS +MS +Dy +Dy +Dy +MS +MS +zE +zE +zE +Xc +Xc +zE +zE +Rf +MS +zE +zE +zE +zE +MS +zE +zE +VX +xm +xm +Cm +zE +zE +zE +zE +mC +zE +zE +JR +Xc +Xc +Xc +Xc +QB +Mk +Mk +qM +Mk +mV +Af +Mk +qM +qM +FT +Xc +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +Gj +il +il +il +il +il +Xq +zA +zA +CF +il +uw +KJ +qF +qF +KJ +qF +RK +uK +bd +ac +ac +ac +Xc +Xc +Xc +Xc +bO +bO +HC +zN +zN +Da +Vr +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +pH +By +zN +zN +zN +Xc +Xc +Xc +Xc +Ot +Ip +"} +(174,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +re +re +re +re +Xc +Xc +Xc +HU +vC +vC +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +jK +pg +pg +pg +pg +pg +jK +jK +jK +wy +zE +zE +zE +MS +zE +MS +MS +MS +qj +lH +wy +MS +zE +dV +Et +Xc +Xc +Xc +Xc +zE +OM +MS +MS +zE +zE +zE +zE +zE +zE +VX +xm +xm +zE +pL +Ux +zE +zE +rz +xm +JR +je +je +iy +Xc +Xc +uW +Mk +qM +qM +qM +vG +Af +Mk +Mk +qM +kU +Xc +Xc +Xc +Xc +Xc +Xc +Xc +fk +yQ +yQ +XV +eC +XL +il +il +il +il +Xq +zA +zA +km +WI +bd +bd +ML +RK +RK +RK +Cu +bd +bd +ac +ac +ac +Xc +Xc +Xc +Xc +bO +Xc +HC +on +zN +Da +Pg +Zi +Zi +Zi +eU +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +eU +Zi +Zi +rm +By +zN +zN +zN +Xc +Xc +Xc +Xc +Ot +Ip +"} +(175,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +re +re +re +Xc +Xc +Xc +Xc +Xc +vC +Jp +Jp +TV +Xc +Xc +Xc +Xc +Xc +Xc +jK +mz +mz +mz +mz +mz +qQ +jK +xJ +yg +zE +zE +zE +zE +xm +xm +MS +MS +qj +lH +wy +MS +zE +Uh +Uh +Xc +HN +HN +ib +Jd +OM +zE +MS +zE +zE +zE +zE +zE +zE +VX +xm +zE +zE +Of +PJ +PJ +PJ +xm +Sl +Xc +je +JR +zE +pU +Mk +Mk +qM +Hr +YI +qM +qM +Af +RR +Mk +Af +nc +Xc +Xc +Xc +Xc +Xc +Xc +GJ +FO +yQ +yQ +XV +Xc +eC +XL +ZP +il +il +Xq +zA +zA +zA +zA +zA +bd +bd +So +So +So +bd +bd +Xc +XY +ac +ac +ac +Xc +Xc +Xc +Xc +Xc +HC +zN +zN +Da +Kb +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +eU +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +Zi +bo +By +zN +zN +zN +Xc +Xc +Xc +Xc +Ot +Ip +"} +(176,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +re +re +re +Xc +Xc +Xc +Xc +Xc +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +pL +zE +zE +zE +dV +Et +qV +mz +yg +zE +zE +zE +zE +zE +cR +xm +zE +MS +qj +lH +wy +zE +Uh +Uh +zw +ib +HN +HN +Uh +Uh +zE +zE +MS +MS +MS +zE +zE +zE +zE +VX +zE +zE +Of +Of +zE +zE +xm +xm +Xc +Xc +Xc +Uz +zE +Yp +Mk +Mk +Mk +qM +YI +qM +qM +Af +RR +Mk +Af +Af +jz +Xc +Xc +Xc +Xc +GJ +FO +yQ +yQ +yQ +XV +Xc +Xc +eC +XL +il +il +Xq +zA +il +zA +zA +zA +zA +Jf +Jf +Jf +Jf +Xc +Xc +Xc +XY +XY +ac +ac +ac +Xc +Xc +Xc +Xc +bO +zN +zN +Da +Zi +zp +ZK +rl +mH +zp +ZK +rl +mH +zp +ZK +rl +mH +zp +ZK +rl +mH +zp +ZK +rl +mH +zp +Zi +By +zN +zN +zN +Xc +Xc +Xc +Xc +Ot +Ip +"} +(177,1,1) = {" +Ip +Ot +Xc +Xc +re +re +re +re +re +Xc +Xc +Xc +Xc +Xc +uR +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +MS +zE +zE +zE +zE +MS +zE +zE +zE +zE +zE +dV +Et +zE +zE +OM +OM +zE +MS +qj +lH +wy +Uh +Uh +zw +HN +ib +HN +so +so +EF +zE +zE +zE +zE +zE +zE +zE +zE +zE +Of +Of +Of +Of +dV +Et +zE +xm +xm +Xc +Xc +EM +EM +EM +EM +Mk +Mk +Mk +Mk +qM +Hr +Af +Af +Mk +qM +Af +GJ +wc +Xc +Xc +Xc +Xc +fk +yQ +yQ +yQ +yQ +sv +wc +Xc +Xc +hO +dq +gZ +JZ +zA +il +il +zA +ZJ +Jf +Jf +Jf +Jf +Xc +Xc +Xc +XY +XY +XY +XY +ac +ac +Xc +Xc +Xc +Xc +Xc +zN +Dc +xg +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +xg +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +rF +zN +zN +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(178,1,1) = {" +Ip +Ot +Xc +Xc +re +re +re +re +re +re +Xc +Xc +Xc +vC +Jp +Jp +Jp +Xc +Xc +Xc +Xc +Xc +MS +MS +zE +zE +zE +MS +MS +MS +MS +zE +zE +zE +zE +zE +zE +zE +zE +xq +zE +zE +qj +lH +wy +Uh +HN +HN +Zs +Xc +Uh +Uh +Sx +EF +zE +MS +MS +zE +zE +dV +Et +Xc +Xc +Of +CD +tG +Xc +zE +zE +zE +xm +xm +rz +Xc +EM +oC +IF +EM +EM +EM +YF +UI +Mk +Af +Af +Mk +Xc +kj +vP +FO +cj +wc +Xc +Xc +GJ +YL +yQ +yQ +yQ +yQ +yQ +XV +Xc +eC +XL +zA +zA +zA +il +il +il +il +Uh +Uh +Uh +Jf +Xc +Xc +Xc +ZQ +ZQ +ZQ +XY +XY +XY +ac +ac +Xc +Xc +Xc +eC +Dc +Dc +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(179,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +re +re +re +Ua +kA +jg +vC +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +MS +MS +zE +zE +zE +MS +MS +zE +zE +zE +zE +zE +zE +zE +zE +zE +xm +xm +zE +Dy +Dy +Dy +Xc +Sx +so +Xc +Xc +MS +Uh +Uh +Uh +MS +MS +zE +zE +zE +pL +Xc +Xc +CD +dS +dS +dS +Xc +Xc +WW +SF +xm +xm +zE +EM +EM +TE +TE +Mr +VB +EM +Xc +Xc +Pz +Af +Mk +Xc +Xc +Xc +fk +yQ +eW +cj +lV +lV +FO +yQ +yQ +yQ +yQ +yQ +yQ +XV +Xc +eC +PM +ZQ +ZQ +ZQ +XY +XY +XY +XY +Uh +gV +Uh +ac +zq +zq +zq +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +ac +Xc +Xc +Xc +eC +hu +Dc +Dc +zN +zN +zN +zN +zN +zN +zN +LS +zN +UM +zN +UM +aY +aY +zN +UM +aY +Xc +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(180,1,1) = {" +Ip +Ot +Xc +Xc +Xc +re +re +aL +re +GM +HU +HU +vC +vC +Jp +Jp +uR +Xc +Xc +Xc +Xc +Xc +Xc +Xc +MS +zE +zE +zE +MS +zE +zE +zE +zE +zE +MS +MS +MS +zE +zE +zE +zE +mA +xm +xm +Xc +Xc +Xc +so +Xc +MS +MS +zE +zE +Xc +zE +zE +zE +zE +Of +Of +Xc +tG +Um +Um +Um +Um +XN +Xc +zE +xm +xm +sJ +WW +EM +xy +TE +TE +TE +FS +EM +Zc +Xc +Xc +Xd +pu +Xc +Xc +GJ +KZ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +Xc +eC +jF +gn +CE +XY +XY +XY +XY +XY +Uh +mt +Uh +ZQ +Ae +DU +TQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +ac +Xc +Xc +Xc +Xc +hu +Dc +Dc +Dc +Dc +zN +zN +zN +zN +zN +Xc +Xc +zN +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(181,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +re +re +GM +HU +HU +vC +vC +vC +Jp +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +MS +zE +zE +zE +zE +zE +zE +zE +zE +MS +MS +yZ +yZ +Xt +Xt +yZ +yZ +OM +OM +xm +Uh +Uh +Uh +ib +Xc +zE +zE +zE +zE +VX +zE +Of +ES +ES +Of +Gd +Of +QN +CD +Um +CD +Um +dS +Xc +xm +xm +xm +xm +zE +EM +WA +Zy +dc +dc +TE +EM +KH +tX +Xc +UJ +UJ +Xc +kp +FO +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +cj +wc +eC +jF +ZQ +ZQ +XY +XY +XY +XY +XY +Qt +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +eC +hu +hu +Dc +Dc +Dc +Dc +zN +zN +zN +zN +zN +Xc +zN +zN +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(182,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +GM +HU +HU +HU +vC +vC +vC +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +MS +dV +Et +zE +zE +zE +zE +MS +MS +MS +yZ +yZ +Gm +SC +SC +aN +yZ +yZ +OM +zE +Uh +gV +Uh +xm +xm +zE +zE +jQ +zE +VX +zE +ES +CD +Um +Bc +dS +Of +Um +Xc +Xc +Xc +CD +dS +XH +xm +xm +BX +xm +xm +EM +EM +EM +EM +EM +Pn +EM +zT +cX +cX +cX +cX +UJ +Ed +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +jF +Ec +Ec +ZQ +ZQ +XY +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +eC +hu +hu +hu +Dc +Dc +Dc +zN +zN +zN +ZR +zN +zN +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(183,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +kA +jg +HU +vC +vC +vC +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zE +zE +zE +zE +zE +MS +MS +MS +yZ +yZ +yZ +sZ +GT +dT +dT +Ju +aN +yZ +bJ +zE +Uh +mt +Uh +zE +Lx +zE +zE +zE +zE +VX +zE +ES +FV +Um +dS +dS +XH +Um +Um +Um +HT +dS +dS +Xc +xm +AC +uh +AC +xm +FC +NY +Kc +cX +SI +cX +FC +UW +cX +st +Sj +cX +UJ +Ed +Qj +yQ +yQ +yQ +yQ +yQ +yQ +eW +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +jF +Ec +jF +ZQ +ZQ +XY +ZQ +ZQ +ZQ +ZQ +gn +CE +Ae +DU +TQ +ZQ +ZQ +Xc +Xc +Xc +ZQ +ZQ +XY +XY +iB +Xc +Xc +Xc +Xc +Xc +eC +eC +Xc +Dc +Dc +Xc +zN +UM +zN +zN +zN +zN +zN +zN +zN +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(184,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +HU +vC +vC +vC +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VX +VX +VX +VX +VX +yZ +yZ +yZ +yZ +zU +SC +Rr +dT +dT +dT +Nd +sA +yZ +zE +zE +HD +zE +zE +zE +OM +OM +zE +zE +MS +Of +Of +Of +CD +Um +dS +zJ +Of +CD +Um +CD +Xc +FP +dS +Xc +AC +AC +ml +AC +AC +FC +Mw +eg +tl +UJ +cX +FC +sf +cX +iM +UG +cX +FC +Pd +aF +OI +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +jF +jF +Xc +jF +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +Xc +Xc +Xc +Xc +Xc +ZQ +jF +ZQ +Zd +TY +bn +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zN +ZR +zN +aY +UM +aY +aY +zN +UM +zN +zN +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(185,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +HU +HU +xL +vC +vC +Jp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +rK +zE +zE +zE +rK +yZ +rk +iA +ay +Ai +VR +dT +oX +oX +dT +VR +sA +yZ +zE +zE +zE +zE +zE +zE +xm +OM +zE +zE +MS +ES +CD +EO +dS +Um +LJ +Op +Of +Of +XH +Xc +Xc +Xc +Xc +Xc +AC +AC +Kt +AC +AC +FC +UJ +UJ +UJ +FC +cX +FC +FC +cX +FC +FC +FC +FC +FC +Xc +Ed +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +xQ +ZQ +jF +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +Ec +Xc +Xc +Xc +ad +Ec +jF +kr +Xc +ZQ +kK +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Up +VQ +VQ +VQ +VQ +VQ +VQ +Up +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(186,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +hI +VK +VK +VK +Ze +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +rK +zE +zE +rK +yZ +UL +dT +al +VR +VR +sZ +SC +SC +iA +VR +Xk +yZ +pL +zE +zE +zE +zE +xm +xm +zt +zE +MS +MS +ES +CO +Nt +ns +Of +Of +Of +Of +ZB +IQ +VY +Um +tj +Xz +Of +bH +AC +Ni +AC +AC +FC +LZ +Xv +uA +qd +cX +FC +MJ +cX +Qz +Xc +KM +bg +cX +Xc +Pd +OI +yQ +yQ +yQ +yQ +yQ +yQ +rw +yQ +yQ +yQ +yQ +eW +XV +xQ +ZQ +ZQ +jF +Xc +ZQ +ZQ +ZQ +ZQ +XY +ZQ +ZQ +ZQ +zq +zq +zq +ZQ +kr +Ec +Xc +Xc +Ec +Ec +Ec +UR +kr +ZQ +ZQ +XY +XY +ac +ac +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Up +Up +aw +QX +QX +aw +Up +Up +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(187,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +rK +zE +zE +rK +yZ +rs +WT +ay +DL +Xk +tv +BM +nW +AI +tv +ow +al +xm +xm +RQ +OM +OM +xm +zE +zE +zE +MS +Of +Of +Nt +MZ +dS +CD +Um +FU +Of +ZU +xx +Nj +Cp +Um +dS +ES +av +mT +VF +AC +xm +FC +Az +cX +cX +cX +cX +SI +cX +cX +cX +Xc +fD +cX +cX +Xc +Xc +Ed +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +Zk +ZQ +ZQ +Ec +jF +ZQ +ZQ +ZQ +XY +XY +XY +ZQ +ZQ +Xc +Xc +Xc +ZQ +kr +Ec +Xc +Xc +ad +ad +MA +jF +jF +ad +Xc +XY +XY +ac +ac +ac +Xc +Xc +Xc +Xc +Xc +Xc +Up +Vv +Vv +Vv +Vv +Vv +Vv +Up +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(188,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +PR +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +rK +zE +rK +yZ +ay +ay +ay +pD +AI +lx +gB +Di +Xk +tv +yV +al +xm +zE +zE +OM +OM +xn +zE +zE +MS +MS +Of +CD +Td +Td +Um +Um +Um +OR +Xc +ZV +jT +ly +Cp +Um +dS +ES +xm +xm +Uy +av +av +UJ +Tz +cX +cX +cX +hZ +FC +ls +cX +hZ +Xc +Xc +iG +cX +OT +Xc +Pd +yJ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +XO +ZQ +ZQ +jF +ZQ +ZQ +XY +XY +XY +XY +ZQ +Qt +Xc +Xc +Xc +Xc +ad +ad +Xc +Xc +Xc +Ec +Xc +Ec +ad +PS +ZQ +ZQ +XY +ac +ac +ac +ac +Xc +Xc +Xc +Xc +gn +CE +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(189,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +dE +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zE +rK +yZ +wT +iA +ay +DL +Xk +lx +Wz +SY +Xk +tv +AI +yZ +Zm +oA +xm +xm +zE +zE +zE +zE +MS +Of +Of +Of +Of +QM +ns +Xc +Xc +Xc +Xc +Cg +Td +Td +dS +Um +Um +XH +xm +xm +xY +xm +xm +UJ +zF +cX +cX +cX +Xv +Xc +ax +cX +cX +SP +Xc +Xc +cX +hZ +Xc +Xc +Ed +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +XO +ZQ +ZQ +Ec +ZQ +ZQ +XY +XY +XY +XY +ZQ +eC +Xc +Xc +Xc +Xc +Xc +kr +Ec +Xc +Xc +Ec +jF +Xc +Xc +jF +ZQ +ZQ +XY +XY +ac +ac +ac +ac +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Ot +Ip +"} +(190,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +VK +tB +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +al +yZ +yZ +UL +dT +al +VR +Xk +tv +tv +Xk +Xk +tv +Di +yZ +Fg +zw +zE +xm +zE +xm +zE +QL +MS +ES +CD +Um +IJ +dS +dS +CD +Um +CD +Of +Hl +Um +dS +dS +MC +Xc +Xc +xm +xm +xm +xm +xm +Xc +Xc +cX +cX +cX +Xv +Xc +vX +sB +cX +cX +rT +FC +cX +cX +Tz +UJ +Ed +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +jC +tH +ZQ +ZQ +ZQ +Za +Za +ZQ +ZQ +ZQ +XY +XY +ZQ +ZQ +jF +eC +Xc +Xc +Xc +Xc +ad +Ec +Xc +Xc +Xc +Xc +Xc +Ec +Hk +jF +ZQ +ZQ +XY +XY +ac +ac +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Ot +Ip +"} +(191,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +sZ +iA +ay +Ih +WT +ay +br +dT +wk +oX +oX +WT +dT +Di +yZ +Fg +zw +zE +zE +bC +zE +zE +zE +MS +ES +CD +as +dS +dS +dS +Um +Um +FU +Of +si +td +aA +Um +Xc +Xc +PJ +xm +xm +xm +xm +xm +zE +Xc +Xc +cX +cX +Xv +Xc +vl +sB +cX +cX +cX +SI +cX +Hm +Tz +UJ +Pd +OI +yQ +yQ +yQ +yQ +eW +yQ +yQ +yQ +yQ +XV +cg +CC +ZQ +XY +Xc +Xc +XY +gn +CE +ZQ +XY +ZQ +ZQ +ZQ +jF +eC +Xc +Xc +ZQ +ZQ +ad +Ec +Xc +Xc +Xc +Ec +Ec +ad +Ec +ZQ +ZQ +ZQ +sx +ct +ac +Xc +Xc +Xc +ZQ +ZQ +ZQ +Nh +kx +Xc +ad +ZQ +ZQ +ZQ +ZQ +Nv +XY +XY +Xc +Xc +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(192,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +yZ +tv +AI +ay +ay +ay +ay +tv +dT +Xw +MG +MG +ru +GW +Ap +yZ +Fg +zw +zE +OM +TI +zE +zE +zE +Of +Of +Of +Of +Of +XH +XH +Uh +Uh +Uh +Of +ES +ES +ES +ES +Xc +PJ +rz +xm +TU +xm +xm +xm +xm +zE +Xc +SI +FC +Xc +Xc +Xc +Xc +UJ +SI +UJ +FC +Uh +Uh +Uh +FC +FC +Pd +aF +aF +aF +aF +OI +yQ +yQ +yQ +yQ +XV +cg +cg +XY +XY +Xc +mI +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Qt +KT +zq +zq +ZQ +ZQ +ZQ +ad +Ec +Xc +Xc +Xc +Ec +TF +kr +ZQ +ZQ +ZQ +ZQ +XY +ac +Xc +Xc +Xc +ZQ +ZQ +ZQ +kr +ZQ +Ec +Rs +gS +BR +kr +Xc +ZQ +XY +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(193,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +cN +VK +VK +OS +nS +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +mE +tv +AI +ay +id +Dz +Dz +Rr +dT +VR +VR +VR +yV +WT +yZ +yZ +Zm +zw +zE +OM +TI +Wp +Et +zE +zE +PJ +PJ +PJ +PJ +zE +zE +Uh +gV +mt +zE +zE +zE +zE +rz +PJ +zE +xm +TI +OM +zE +zE +zE +xm +xm +og +xm +xm +xm +xm +xm +zE +zE +xm +xm +xm +Uh +gV +Uh +zE +mI +mI +qu +qu +qu +mI +Pd +aF +aF +aF +aF +gh +mI +qu +qu +qu +mI +mI +Sp +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ui +Rt +TQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +eo +Xc +Xc +mR +CE +ZQ +ZQ +ZQ +ZQ +XY +ac +Xc +Xc +Xc +Xc +ZQ +eb +Xc +Xc +ad +JP +Hk +Hk +ad +ZQ +ZQ +ZQ +XY +Xc +Xc +ZQ +XY +XY +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(194,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +cN +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +mM +tv +ow +Xi +zo +VR +yV +oX +oX +Ef +Ef +Ef +Gk +yZ +yZ +MS +MS +zE +Ss +Sm +zE +xm +zE +zE +zE +zE +sJ +xm +xm +xm +xm +Uh +Uh +Uh +xm +xm +zE +zE +xm +xm +xm +xm +TI +OM +Xc +AC +zE +zE +zE +KF +xm +xm +zE +sJ +zE +zE +zE +zE +xm +xm +Uh +mt +Uh +xm +MH +oP +oP +oP +Cl +mI +mI +qu +qu +qu +qu +mI +mI +oP +oP +oP +Cl +PH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ui +Rt +TQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +Xc +Xc +Xc +ZQ +ZQ +Xc +Xc +kx +kr +kX +Hk +ad +kx +jF +ZQ +ZQ +XY +Xc +Xc +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(195,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +OS +nS +VK +VK +VK +VK +VK +Hh +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +yZ +tv +yV +al +KW +yV +WT +yZ +yZ +Xt +Xt +Xt +yZ +yZ +MS +MS +zE +zE +zE +zE +zE +zE +zE +xm +xm +xm +xm +xm +xm +xm +xm +xm +zE +xm +xm +xm +xm +xm +xm +xm +xm +xm +Jq +Xc +Xc +Xc +iI +zE +zE +og +xm +xm +xm +zE +zE +MS +MS +zE +dV +Et +xm +xm +xm +xm +MH +Cl +Cl +Cl +Cl +Au +Cl +Cl +Cl +oP +oP +oP +Wu +oP +Cl +Cl +Cl +PH +ZQ +ZQ +ZQ +XY +XY +ZQ +ZQ +ZQ +ZQ +Ae +Rt +TQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +Xc +Xc +Ec +Cx +ZQ +Xc +Ec +Rd +SD +Xc +Xc +Ec +Xc +ZQ +ZQ +ZQ +XY +Xc +Xc +Xc +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(196,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +VA +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +op +oF +ay +rM +uY +yZ +yZ +zE +zE +zE +zE +MS +MS +MS +zE +zE +QL +zE +zE +zE +zE +xm +TI +TI +LL +xm +xm +xm +ds +OM +OM +zE +zE +NP +zE +xm +xm +TI +JX +xm +xm +zE +Xc +Xc +Xc +AC +zE +zE +zE +xm +zE +cY +TI +OM +zE +MS +MS +zE +xm +xm +xm +xm +xm +MH +Cl +Cl +oP +oP +oP +oP +Cl +Cl +Cl +Cl +Cl +Cl +Cl +Cl +Cl +oP +PH +ZQ +ZQ +XY +XY +XY +XY +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +ZQ +Xc +ZQ +ZQ +Xc +Xc +Xc +ZQ +ZQ +ZQ +Nv +ZQ +ZQ +ZQ +ZQ +Ec +Xc +ZQ +Ec +Xc +Ec +Xc +Ec +kx +kr +Xc +Xc +Xc +Xc +ZQ +Xc +ZQ +XY +Xc +Xc +Xc +ac +ZQ +ZQ +ZQ +XY +Xc +Xc +Xc +Ot +Ip +"} +(197,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +VK +VA +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yZ +yZ +yZ +yZ +yZ +yZ +yZ +xm +zE +zE +zE +dV +Et +zE +zE +zE +zE +zE +zE +zE +zE +xm +ri +TI +TI +xm +xm +xm +xm +zE +OM +OM +OM +EG +zE +zE +zE +RU +OM +zE +xm +xm +zE +zE +Xc +zE +zE +zE +xm +zE +KF +zE +zE +OM +OM +rS +zE +zE +zE +xm +xm +xm +xm +xm +MH +Cl +Cl +Cl +Cl +iw +oP +oP +oP +Cl +Cl +Cl +qy +oP +Cl +oP +oP +PH +ZQ +ZQ +XY +XY +XY +XY +XY +ZQ +ZQ +Ae +DU +TQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +Rp +ZQ +Xc +ZQ +ZQ +ZQ +ZQ +Ec +Ec +ZQ +Rd +Ec +Ec +Xc +Rs +Is +ad +Xc +gS +ad +Hk +jF +ZQ +ZQ +XY +XY +Xc +ac +ac +ac +ZQ +ZQ +ZQ +Xc +Xc +Xc +Ot +Ip +"} +(198,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +Hh +pv +Ag +xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zE +zE +xm +xm +zE +zE +zE +zE +zE +zE +zE +MS +MS +MS +MS +zE +zE +pL +zE +xm +xm +xm +xm +xm +zE +zE +zE +xm +xm +xm +zE +zE +zE +zE +zE +xm +xm +zE +zE +zE +zE +zE +zE +xm +xm +xm +og +xm +xm +zE +zE +xm +sJ +zE +zE +zE +xm +xm +zE +xm +MH +oP +oP +oP +Cl +mI +mI +qu +qu +qu +qu +mI +mI +oP +oP +eS +Cl +PH +ZQ +ZQ +ZQ +XY +XY +XY +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +kr +Xc +Xc +ZQ +ZQ +ZQ +ZQ +Ec +Ec +ZQ +ZQ +Ec +Xc +Xc +ZQ +Ec +Hk +kr +Ec +jF +Xc +ZQ +ZQ +ZQ +XY +XY +Xc +ac +ac +ac +ac +ZQ +ZQ +Xc +Xc +Xc +Ot +Ip +"} +(199,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +Xc +Xc +Ag +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zE +xm +pL +zE +zE +zE +zE +zE +zE +MS +MS +Xc +Xc +Xc +Xc +Xc +Xc +zE +zE +SF +SF +SF +xm +xm +xm +xm +sJ +xm +SF +SF +SF +xm +xm +xm +xm +xm +zE +xm +zE +XQ +xm +xm +xm +zE +zE +KF +zE +xm +xm +xm +xm +xm +xm +WW +WW +WW +zE +zE +zE +mI +mI +qu +qu +qu +mI +uu +Nw +Nw +Nw +Nw +JG +mI +qu +qu +qu +mI +mI +Qt +ZQ +ZQ +ZQ +XY +ZQ +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +kX +Xc +Ec +Xc +Xc +ZQ +ZQ +ZQ +ZQ +Xc +Ec +ZQ +ZQ +ZQ +Ec +Xc +Xc +Ec +ZQ +ZQ +Nh +ZQ +kr +ZQ +ZQ +ZQ +ZQ +XY +Xc +Xc +ac +ZQ +ZQ +ZQ +XY +Xc +Xc +Xc +Ot +Ip +"} +(200,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +VK +VK +VK +OS +nS +Xc +Xc +Xc +Ag +Ag +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +zE +zE +zE +zE +zE +MS +MS +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +mJ +mJ +mJ +mJ +mJ +EA +EA +mJ +mJ +mJ +mJ +mJ +EA +EA +mJ +mJ +sY +xm +xm +xm +TI +TI +xm +zE +zE +vN +vN +xK +wX +wX +wX +xK +vN +vN +vN +vN +vN +xK +vN +vN +vN +Xc +kF +Lk +Lk +EP +fk +yQ +yQ +yQ +jC +tH +Gs +ZQ +ZQ +gn +CE +mI +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ae +DU +TQ +ZQ +ZQ +Xc +SB +ZQ +Xc +eC +aS +ad +Ec +Xc +Xc +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Rd +ZQ +ZQ +Ec +Ec +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(201,1,1) = {" +Ip +Ot +Xc +Xc +Xc +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +xc +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +xm +dV +Et +zE +zE +MS +MS +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Nl +Nl +Nl +wo +hj +Mh +EA +dC +ja +EA +DZ +JA +mJ +pB +dC +ja +CP +mJ +UQ +sY +xm +xm +zE +OM +xm +WW +WW +vN +om +YK +aX +xo +CJ +YK +yD +xo +vN +ET +zx +YK +YK +vN +Xc +Xc +Lk +Lk +Lk +EP +fk +yQ +yQ +yQ +XV +Xc +Gs +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +gn +CE +Ae +DU +TQ +ZQ +ZQ +eC +ZQ +oW +kX +Ec +Ec +Ec +Ec +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +ZQ +ZQ +Xc +Rs +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +gn +CE +Xc +Xc +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(202,1,1) = {" +Ip +Ot +Xc +Xc +Xc +WJ +WJ +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +zE +zE +xm +xm +zE +zE +zE +MS +Xc +Xc +Xc +Xc +BY +Xc +Xc +Xc +Nl +Nl +Nl +Nl +wo +XZ +Mh +EA +dC +dC +EA +cI +UV +mJ +Nu +eM +ja +ST +mJ +mJ +mJ +xm +zE +zE +He +zE +vN +vN +vN +WB +YK +rd +yD +yD +YK +yD +xo +wX +jH +YK +Ka +Ah +vN +Xc +kF +Lk +Lk +kF +EP +fk +yQ +yQ +rw +XV +Xc +Xc +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +zq +zq +zq +ZQ +ZQ +kX +yr +jF +Ec +Ec +cA +Ec +eC +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Ec +Rs +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +XY +XY +ZQ +XY +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(203,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Ru +Ru +WJ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Ag +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +zE +zE +xm +zE +zE +zE +MS +Xc +Xc +BY +BY +BY +BY +ko +ko +ko +ko +Nl +Nl +mJ +mJ +mJ +mJ +ud +dC +mJ +mJ +mJ +mJ +ST +ja +ja +ST +JI +wS +mJ +xm +zE +zE +zE +zE +wX +SE +yD +YK +Ka +YK +YK +yS +YK +yD +xo +wX +Sv +YK +YK +vN +vN +Lk +Lk +Lk +Lk +Lk +hS +fk +yQ +yQ +yQ +XV +Xc +Xc +XY +XY +XY +XY +XY +ZQ +ZQ +gn +CE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +Cx +ad +kr +eC +Ec +Ec +Ec +kX +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Ec +Ec +JM +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +Xc +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Ot +Ip +"} +(204,1,1) = {" +Ip +Ot +Xc +Xc +Xc +WJ +Ru +Ru +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Ag +Ag +xc +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +xm +xm +xm +zE +zE +MS +Xc +Xc +BY +BY +BY +BY +BY +ko +ko +ko +ko +Nl +Nl +mJ +Dr +TZ +dC +dC +EA +li +yx +mJ +ST +ja +ja +ST +JI +eM +mJ +SF +sJ +SF +WW +zE +wX +Fe +rd +YK +YK +YK +YK +YK +YK +yD +xo +vN +wb +YK +om +vN +co +pV +Lk +Lk +Lk +EP +GJ +FO +yQ +yQ +yQ +XV +Xc +Xc +Sp +XY +XY +XY +XY +XY +ZQ +Qt +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +XY +XY +XY +Xc +Xc +Xc +Ec +Ec +Ec +eC +Ec +jF +ZQ +hc +yn +ZQ +ZQ +ZQ +Ec +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Ot +Ip +"} +(205,1,1) = {" +Ip +Ot +Xc +Xc +VK +VK +WJ +WJ +Xc +Xc +Xc +VK +Xc +Xc +Xc +VK +wD +nR +nR +nR +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +xm +xm +mZ +mu +mu +mu +Xc +Xc +BY +BY +BY +BY +BY +Xc +ko +ko +ko +ko +ko +Nl +mJ +mJ +Ml +ja +dC +EA +jG +qK +mJ +ST +Mh +ja +dC +eM +eM +mJ +xm +zE +xm +xm +zE +xK +yS +YK +YK +YK +rd +yD +ug +vN +vN +vN +vN +xK +xK +vN +vN +co +co +Xc +Lk +kF +hS +fk +eW +yQ +yQ +yQ +XV +Xc +Xc +zq +cW +cW +cW +cW +cW +cW +zq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +Xc +Xc +Xc +XY +kr +Ec +Ec +Ec +kr +ZQ +Rd +Cx +ZQ +ZQ +ZQ +ZQ +Ec +Ec +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Ot +Ip +"} +(206,1,1) = {" +Ip +Ot +Xc +Xc +VK +VK +VK +OS +nS +Xc +VK +VK +Ru +Xc +Xc +VK +VK +VK +aR +VK +wD +nR +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +se +Im +vU +Im +se +BY +BY +BY +BY +BY +Xc +Xc +Xc +ko +ko +ko +ko +ko +ko +wo +Mh +Mh +ja +mJ +mJ +mJ +mJ +ST +jx +Mq +ja +eM +bu +mJ +xm +OM +ks +xm +zE +xK +lJ +YK +YK +yS +xo +aX +xo +vN +vN +KI +rd +YK +Mj +vN +co +co +co +Xc +Xc +Xc +co +fk +yQ +yQ +yQ +yQ +XV +Xc +Xc +zq +DU +DU +DU +DU +DU +DU +zq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +Xc +Xc +Xc +XY +XY +XY +Ec +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Ec +ZQ +ZQ +ZQ +ZQ +ZQ +JM +Xc +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Ot +Ip +"} +(207,1,1) = {" +Ip +Ot +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +VK +VK +Ru +Ru +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ko +Xc +Xc +ko +Xc +jO +SS +SS +SS +rg +BY +BY +BY +BY +Xc +Xc +Xc +Xc +Xc +ko +ko +ko +ko +ko +wo +gH +Mh +ja +EA +ja +ja +EA +qh +eM +ja +ja +ST +Cb +mJ +xm +OM +TI +xm +zE +wX +JU +YK +YK +Xj +vN +vN +vN +vN +xv +rd +YK +YK +vN +vN +co +co +Xc +Xc +Xc +co +co +fk +yQ +yQ +yQ +yQ +XV +Xc +Xc +zq +eE +eE +eE +eE +eE +eE +zq +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +ac +ac +ac +ac +XY +XY +XY +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +ZQ +ZQ +ZQ +ZQ +Ec +Ec +ZQ +ZQ +ZQ +ZQ +kr +Ec +Xc +Xc +Xc +ZQ +ZQ +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(208,1,1) = {" +Ip +Ot +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +VK +VK +Ru +Ru +Ru +VK +VK +VK +VK +VK +OS +nS +Xc +Xc +Xc +Xc +Xc +ko +ko +ko +ko +ko +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +Xc +Xc +Xc +BY +BY +BY +ko +ko +ko +mJ +mJ +mJ +Mh +EA +ja +dC +EA +eM +eM +ja +ja +Mh +mJ +mJ +SF +zb +SF +xm +xm +wX +Xb +yD +YK +yS +fy +sc +NW +zx +YK +YK +Mj +vN +vN +co +co +co +co +Xc +kT +mh +co +fk +yQ +yQ +yQ +yQ +cj +wc +Xc +eb +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +ZQ +XY +XY +XY +XY +ac +ac +ac +ac +ac +XY +XY +XY +ZQ +ZQ +ZQ +Xc +Xc +ZQ +ad +Xc +gn +CE +ad +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ad +kX +Xc +Xc +Xc +Xc +eC +Ec +wB +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(209,1,1) = {" +Ip +Ot +Xc +Xc +VK +VK +VK +VK +Xc +Xc +LP +Xc +VK +VK +Ru +Ru +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +ko +ko +ko +ko +ko +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +Xc +QW +BY +BY +BY +HC +HC +cG +ko +ko +ko +Xc +Xc +Xc +JV +ip +mJ +gH +ST +ja +cT +mJ +mJ +xm +xm +zE +xm +sJ +SF +vN +vN +vN +Va +YK +rd +rd +rd +YK +YK +rd +xo +wX +co +co +co +co +co +co +co +co +co +fk +yQ +yQ +yQ +yQ +yQ +cj +wc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +eb +ZQ +ZQ +ZQ +XY +XY +XY +XY +ac +ac +ac +XY +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +jF +ZQ +Ec +Ec +ZQ +yn +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +Ec +Xc +Xc +Ec +Hk +Ec +kr +kr +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(210,1,1) = {" +Ip +Ot +Xc +Xc +Xc +VK +VK +VK +Hp +Xc +eC +pZ +VK +VK +Ru +Ru +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +ko +ko +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +Xc +Xc +mJ +mJ +mJ +mJ +EA +mJ +mJ +co +Li +Li +co +co +Li +Li +Li +Li +vN +wb +YK +YK +YK +YK +yS +yS +VG +xo +wX +co +co +co +co +co +co +co +co +co +fk +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +ac +XY +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +jF +jF +Ec +Xc +jF +Ec +jF +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ad +Ec +Xc +Xc +TF +Ec +Ec +jF +jF +ZQ +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(211,1,1) = {" +Ip +Ot +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +ko +ko +pd +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Xh +BY +BY +BY +BY +BY +mJ +fS +FL +Ur +ja +lf +mJ +Li +Li +Nf +RZ +co +co +co +Li +Li +wX +YK +YK +YK +rd +yD +yS +vN +vN +vN +vN +co +co +co +Xc +Xc +Xc +co +co +co +fk +yQ +Qj +yQ +yQ +yQ +yQ +cj +wc +wB +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +wB +ZQ +ZQ +XY +XY +XY +XY +XY +XY +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +ad +Ec +Xc +Xc +jF +kr +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ad +kX +Xc +Xc +Xc +Ec +ad +ZQ +Xc +ZQ +XY +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(212,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +gj +VK +VK +VK +VK +Xc +Xc +Xc +ko +ko +BY +pk +CB +OU +OU +DS +fc +Ng +OU +DS +fc +Ng +OU +Er +fc +Ng +OU +DS +fc +Ng +OU +DS +fc +PA +CB +Xo +BY +BY +BY +BY +BY +EA +ja +ja +ja +ja +ja +EA +Li +gL +Nf +Nf +co +Li +co +co +Li +xK +YK +YK +lJ +wP +xo +vN +vN +Xc +Xc +Xc +Ov +MV +MV +Xc +Xc +Xc +Xc +co +co +fk +yQ +yQ +yQ +yQ +yQ +yQ +yQ +cj +wc +ZQ +ZQ +ZQ +gn +CE +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +aS +Xc +Xc +ak +ZQ +ZQ +ZQ +JM +ZQ +Xc +Xc +Xc +ad +yN +ad +OQ +Ec +kr +sN +XY +ZQ +JM +ad +Ec +Ec +Xc +Pj +TF +Xc +Xc +Ec +eb +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(213,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +OS +nS +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Xc +se +ko +BY +BY +pk +sn +Ve +Ve +CL +Ve +Ve +Ve +Ve +Ve +Ve +Ve +CL +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +CL +Ve +Wh +Xo +BY +BY +BY +BY +BY +EA +zg +BA +Yb +ja +ja +EA +Li +AN +Nf +co +Li +Li +Li +co +co +wX +yD +yS +yS +vN +vN +vN +Xc +Xc +hx +hx +kc +Lk +Xc +Xc +Xc +Xc +Xc +co +co +fk +yQ +yQ +yQ +yQ +yQ +yQ +yQ +eW +XV +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +aS +eC +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +Ec +Ec +jF +lz +Pe +XU +XY +XY +XY +ZQ +ZQ +Ec +Xc +Xc +Ec +Ec +Ec +Xc +ad +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(214,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +yO +nS +VK +VK +VK +se +se +se +BY +BY +pk +sr +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +QJ +Wn +Xo +BY +BY +BY +BY +Xc +mJ +mJ +mJ +ST +dC +ja +mJ +Li +Li +co +co +Li +Li +Li +co +co +vN +NW +vN +xK +vN +Xc +Xc +Xc +zs +hx +co +MW +Lk +Xc +Xc +Xc +Xc +Xc +co +co +fk +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ej +Ec +aS +Xc +ZQ +ZQ +ZQ +gn +CE +ZQ +ad +Ec +Xc +Ec +Xc +ad +Ec +EW +XY +ac +XY +XY +ZQ +Ec +ad +Xc +Xc +jF +Ec +ZQ +kK +ZQ +wB +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(215,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +PR +VK +VK +VK +jw +se +hB +BY +BY +pk +sX +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wr +Xo +BY +BY +BY +Xc +Xc +Xc +Xc +mJ +mJ +pz +Ls +mJ +kl +zS +zS +Xc +Xc +Li +co +co +vN +vN +wX +vN +Li +Li +Xc +Xc +zs +zs +hx +hx +MW +Lk +wj +Xc +Xc +Xc +Xc +co +co +UF +sj +yQ +yQ +yQ +yQ +yQ +yQ +jC +tH +ZQ +ZQ +ZQ +ZQ +ZQ +wB +ZQ +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +gn +CE +ZQ +wB +kX +ej +kX +aS +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ph +Xc +ad +Ec +Ec +eQ +XY +XY +ac +ac +XY +XU +aS +ad +Xc +jF +Hk +ZQ +ad +ZQ +ZQ +ZQ +gn +CE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(216,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +VK +kq +YP +hB +BY +BY +pk +ue +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +VO +Xo +BY +BY +BY +BY +Xc +Xc +mJ +mJ +mJ +eR +ja +mJ +kl +co +co +co +Xc +zS +zS +vN +vN +pP +Li +Li +Li +co +Xc +Xc +zs +hx +hx +Ov +Lk +Lk +EP +PO +Xc +Xc +co +co +co +co +fk +yQ +yQ +yQ +yQ +yQ +Ej +XV +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +kX +Ec +Ec +BR +sN +ZQ +ZQ +ZQ +ZQ +ZQ +ad +XY +Xc +Xc +Ec +XY +XU +XY +ac +ac +ac +XU +Za +Xc +Xc +Xc +ad +Xc +PM +ZQ +ZQ +Xc +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(217,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +wF +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +VK +kk +Im +hB +BY +BY +pk +sn +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wh +Xo +BY +BY +BY +BY +BY +mJ +mJ +mJ +mJ +dC +ja +mJ +co +co +co +co +co +co +co +vN +ty +pP +co +co +co +co +Xc +Xc +zs +hx +hx +MW +kF +Lk +EP +PO +PO +PO +co +co +co +co +UF +sj +yQ +yQ +yQ +yQ +yQ +XV +wB +ZQ +gn +CE +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +Xc +Xc +eC +Ec +Jj +ZQ +Nv +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +ac +Xc +XY +XY +XY +ac +ac +ac +ac +Za +kX +Xc +eC +jF +Ec +ad +ZQ +ZQ +ZQ +ZQ +Qo +ZQ +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(218,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Bh +VK +VK +aR +kq +Im +hB +BY +BY +pk +sr +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wn +Xo +BY +BY +BY +ko +ko +wo +ST +rL +Mh +ja +ja +mJ +co +co +co +co +co +co +PO +pP +ty +PO +co +co +co +co +co +Xc +up +hx +Ov +Lk +up +up +hS +co +PO +PO +co +co +co +co +co +fk +yQ +yQ +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Ec +Ec +Ec +eC +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +ac +ac +XY +XY +XY +ac +ac +ac +XY +BR +Xc +Ec +Ec +Rd +ad +ZQ +Xc +gn +CE +ZQ +ZQ +ZQ +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(219,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +kq +Im +hB +BY +BY +pk +sX +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wr +Xo +BY +BY +ko +ko +Xc +wo +SJ +ja +aT +dG +ja +wo +co +co +co +co +hx +zs +QY +QY +QY +PO +PO +co +co +co +co +PO +up +up +vh +hm +up +kC +Uk +cD +VV +Xc +co +co +kT +mh +co +fk +rw +yQ +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +ZQ +ZQ +eb +Xc +Xc +Xc +XY +Xc +Xc +jF +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +kX +Ec +kX +eQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +ac +XY +XY +ac +ac +ac +XY +XY +Xc +Xc +Xc +jF +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +kK +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(220,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +cN +VK +VK +VK +kk +YP +hB +BY +BY +pk +ue +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +VO +Xo +BY +ko +ko +ko +Xc +mJ +AY +ja +Mb +dg +dC +wo +co +co +co +co +Xc +Us +zs +Us +QY +QY +PO +co +co +co +co +PO +up +VV +Hq +cD +QV +au +cD +Hq +uG +Xc +Xc +Xc +Xc +co +co +fk +yQ +yQ +yQ +yQ +jC +tH +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +XY +Za +Za +jF +eb +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +eC +ZQ +ZQ +Xc +ZQ +ZQ +wB +ZQ +XY +XY +Xc +XY +ac +ac +ac +XY +XY +XY +Xc +jF +ad +Ec +ZQ +ZQ +ZQ +ZQ +Xc +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(221,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +aR +VK +VK +VK +Ru +Xc +Xc +Xc +Xc +Xc +Ru +VK +VK +VK +VK +jw +se +hB +BY +BY +pk +sn +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wh +Xo +BY +ko +ko +ko +Xc +mJ +Dm +ja +aT +dG +dC +mJ +co +co +co +Xc +Xc +zs +Us +Us +Us +Xc +Xc +co +co +co +co +PO +VV +VV +cD +cD +uG +Hq +cD +cD +cD +Wj +Wj +Xc +Xc +Xc +co +xV +yQ +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +Xc +Xc +XY +XY +XY +Za +Ec +Ec +jF +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aS +TO +jF +ZQ +eb +ZQ +ZQ +ZQ +ZQ +CH +XY +XY +XY +ac +ac +XY +XY +XY +Xc +Ec +Ec +jF +kr +ZQ +ZQ +ZQ +Xc +Xc +XY +XY +XY +XY +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(222,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Ru +Xc +Xc +Xc +Xc +Xc +Ru +VK +VK +VK +VK +se +se +se +BY +BY +pk +sr +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Wn +Xo +ko +ko +ko +Xc +Xc +mJ +mJ +Oc +ja +Kv +Oc +mJ +Li +co +co +Xc +Xc +Xc +zs +Us +Xc +Xc +Li +co +co +co +co +co +VV +VV +cD +up +nJ +Vm +NV +ii +GZ +NV +uG +le +ut +Xc +PO +UF +sj +yQ +yQ +yQ +XV +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +ZQ +Ec +Ec +jF +ZQ +ZQ +ZQ +Xc +Qo +ad +jF +kr +Ec +kr +ZQ +ZQ +ZQ +ZQ +ZQ +Xc +ZQ +XY +XY +XY +XY +XY +XY +ac +ac +Xc +Xc +Xc +Xc +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(223,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Ru +Ru +Ru +Xc +Xc +Ru +Ru +VK +VK +VK +VK +Xc +se +ko +BY +BY +pk +sX +Ve +Ve +CL +Ve +Ve +Ve +Ve +Ve +Ve +Ve +CL +Ve +Ve +Ve +Ve +Ve +Ve +Ve +Ve +CL +Ve +Wr +Xo +ko +ko +ko +Xc +mJ +mJ +mJ +mJ +EA +mJ +mJ +mJ +Li +Li +co +co +Xc +Xc +hx +zs +Xc +Li +Li +Li +Ov +MV +up +up +VV +cD +cD +up +Pm +NV +vb +Mo +Mo +PW +NV +cD +dd +VV +VV +Xc +fk +yQ +yQ +yQ +XV +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +jF +Ec +jF +jF +ZQ +Ne +Xc +Xc +kX +Ec +jF +Ec +ad +ZQ +ZQ +ZQ +ZQ +Nh +ZQ +ZQ +wB +XY +XY +XY +XY +ac +ac +Xc +Xc +Xc +Xc +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(224,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +Ru +Ru +Ru +Ru +Ru +OS +nS +VK +VK +WJ +Xc +Xc +ko +ko +BY +pk +CB +Ps +Ps +Eb +Ve +Nx +Ps +Eb +DC +Nx +Ps +EV +DC +Nx +Ps +Eb +DC +Nx +Ps +Eb +DC +PA +CB +Xo +ko +ko +ko +ko +EA +ST +rL +dC +ja +dC +YN +wo +Li +Li +Li +co +Li +Xc +hx +hx +Xc +Li +Li +Li +MW +Lk +Lk +up +up +bZ +Uk +up +Uo +NV +gT +Gc +DR +Pw +et +uG +VV +VV +VV +Xc +fk +yQ +yQ +me +gh +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +EW +EW +Za +Ec +jF +ZQ +ZQ +Ne +Ne +Ec +Ec +ZQ +kX +ad +mR +CE +ZQ +wB +ZQ +ZQ +ZQ +Xc +XY +XY +XY +ac +ac +Xc +Xc +Xc +Xc +Xc +ZQ +XY +XY +XY +ZQ +XY +XY +XY +XY +XY +gn +CE +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(225,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +ga +VK +VK +VK +VK +VK +VK +VK +Ru +VK +VK +Ru +Xc +Xc +LP +Xc +Lc +Lc +Xc +Xc +ko +ko +qa +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +uL +Xn +ko +ko +ko +ko +EA +We +ja +ja +ja +ja +NX +wo +Li +Li +Li +Li +Li +hx +hx +hx +hx +Li +Li +Ov +Lk +Lk +Lk +EP +VV +uG +Hq +cD +cD +cD +gT +Gc +Gc +sQ +cD +cD +cD +VV +Xc +Xc +fk +yQ +yQ +iH +VD +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +EW +Xc +Xc +Xc +Xc +ZQ +ZQ +Ne +Ne +ad +Ec +TO +TO +Ec +TO +Ec +ZQ +ZQ +ZQ +TO +ZQ +Xc +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +ZQ +ZQ +ZQ +XY +XY +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(226,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +VK +Xc +Xc +VK +VK +VK +Hp +Xc +eC +ZC +Lc +Lc +Xc +Xc +Xc +ko +ko +ko +BY +BY +BY +BY +BY +BY +ko +ko +ko +ko +ko +ko +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +ko +ko +ko +ko +ko +EA +Ff +dC +dC +ja +ja +Tc +mJ +Li +Li +Li +Li +Li +Li +hx +hx +Li +Li +Ov +Lk +Lk +Lk +Lk +Od +VV +cD +uG +cD +NV +cD +Jr +PU +PU +dU +NV +Hq +cD +Xc +Xc +Xc +fk +yQ +yQ +iH +Mp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +aS +TO +TO +TO +TO +TO +TO +TO +TO +jF +TO +ad +kr +Xc +Xc +XY +Xc +Xc +Xc +ZQ +ZQ +XY +XY +XY +XY +XY +XY +gn +CE +XY +XY +XY +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(227,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +VK +VK +VK +VK +VK +Ru +Xc +VK +VK +wF +VK +VK +In +Lc +Lc +tn +vy +Xc +Xc +ko +ko +ko +ko +ko +ko +ko +ko +BY +ko +ko +ko +ko +ko +ko +ko +ko +ko +BY +BY +BY +BY +BY +BY +BY +BY +ko +ko +ko +ko +ko +EA +pt +nl +Fm +dC +Mh +Uh +Uh +Uh +Li +Li +Li +Li +Li +Li +Li +Li +co +MW +Lk +Lk +Lk +Lk +EC +up +up +Eh +cD +NV +NV +NV +uG +cD +NV +no +uG +cD +Xc +Xc +Xc +fk +yQ +yQ +iH +Mp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +kr +Ec +ad +TO +TO +Ec +Ec +Ec +TO +TO +Ec +Ec +ad +ad +Xc +Xc +eb +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(228,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Bh +VK +OS +nS +Xc +Xc +Ru +Ru +VK +VK +VK +VK +VK +VK +In +Lc +Lc +Lc +Lc +Lc +Xc +Xc +ko +Xc +Xc +ko +ko +ko +ko +ko +ko +ko +ko +ko +Nl +Nl +Nl +Nl +ko +ko +ko +BY +BY +BY +DT +BY +ko +ko +ko +ko +Xc +mJ +mJ +mJ +mJ +mJ +mJ +mJ +Uh +gV +mt +co +co +Li +Li +Li +Li +Li +Li +co +MW +Lk +Lk +Lk +Lk +up +up +Ch +cD +uG +up +up +no +NV +uG +up +up +cD +uG +Xc +Xc +GJ +FO +yQ +Pb +mw +ld +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +eC +kX +kr +Ec +ad +Ec +gS +Ec +Ec +kr +Ec +ad +Xc +kr +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(229,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Ag +Bh +VK +VK +Xc +Xc +Xc +Xc +Ru +Ru +VK +VK +VK +TO +WJ +Xc +Xc +Xc +Xc +In +In +Xc +Xc +Xc +Xc +Xc +Xc +jM +jM +Xc +Xc +Xc +jM +Xc +Nl +Nl +Nl +Nl +Nl +Nl +Xc +Xc +Xc +mZ +UA +UA +UA +vT +ko +ko +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Uh +Uh +Uh +co +kT +mh +Li +Xc +Xc +Xc +Li +Li +pV +Lk +Lk +Lk +Lk +up +up +pb +Gg +uG +cD +up +NV +wz +Uk +up +cD +cD +Hq +Xc +Xc +fk +Qj +yQ +iH +Jc +JC +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +Xc +ZQ +Xc +Xc +XY +ZQ +PM +lI +Xc +Xc +TO +TO +TO +TO +Ec +jF +ad +gS +Xc +Ec +jF +jF +ZQ +ZQ +ZQ +CH +Zf +MT +ZQ +ZQ +ZQ +ZQ +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(230,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Ag +Bh +VK +VK +Xc +Xc +Xc +Xc +Ru +Ru +VK +VK +VK +WJ +Ru +Ar +Ru +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Nl +Xc +Xc +Nl +Xc +Xc +Xc +Xc +se +Im +vU +Im +se +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Lk +Lk +hS +co +co +co +Xc +Xc +Li +Xc +zs +Li +Li +pV +Lk +Lk +Lk +Lk +Xc +Xc +cD +cD +GZ +cD +uG +cD +cD +cD +cD +cD +Xc +Xc +Xc +fk +yQ +yQ +iH +Mp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +ZQ +ZQ +ZQ +XY +XY +XY +ZQ +Xc +Xc +Xc +TO +Ec +Ec +jF +Ec +Ec +kr +gS +Xc +kr +kr +Xc +Xc +ZQ +ZQ +ZQ +qf +bE +yX +MT +ZQ +ZQ +XY +XY +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(231,1,1) = {" +Ip +Ot +Xc +Xc +Ag +Ag +Ag +PR +VK +Xc +Xc +Xc +Xc +Ru +Xc +Xc +VK +VK +WJ +oQ +Ru +WJ +Ru +Ru +Xc +Xc +Xc +WJ +WJ +WJ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +OS +nS +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +jO +SS +SS +SS +rg +VK +pZ +Xc +Xc +Xc +VK +VA +Xc +Xc +Xc +Ag +Lk +EP +co +co +co +co +co +Li +Li +zs +zs +hx +Li +Li +pV +Lk +Lk +Lk +Xc +Xc +Xc +cD +cD +Xc +Xc +fj +wR +Xc +cD +cD +Xc +Xc +Xc +fk +yQ +yQ +iH +Mp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +ZQ +ZQ +ad +jF +Ec +Ec +jF +TO +TO +TO +jF +Ec +Xc +ad +kr +Xc +Xc +gn +CE +Zf +bE +bE +TY +bn +ZQ +ZQ +ZQ +XY +XY +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(232,1,1) = {" +Ip +Ot +Xc +Xc +Ag +Ag +Ag +Bh +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +Xc +Xc +oQ +pZ +Ru +WJ +Xc +Ru +Ru +VK +VK +WJ +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +Ar +Ar +Ru +Xc +Ar +Ru +sk +nS +VK +VK +VK +VK +VK +pZ +Ru +OS +nS +VK +VA +Ag +Xc +Ag +Ag +Lk +EP +co +co +co +co +co +Li +Li +Li +zs +zs +Li +Li +Li +MW +Lk +Lk +Lk +Xc +PO +co +co +Xc +Xc +Xc +Xc +Xc +NR +Li +Xc +Xc +Xc +WR +aF +aF +KB +Mp +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +ZQ +ZQ +kr +kr +jF +Ec +Xc +Xc +TO +TO +Xc +kr +ad +kr +jF +Xc +Xc +ZQ +ZQ +Zd +TY +bn +Xc +Xc +jF +jF +ZQ +XY +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(233,1,1) = {" +Ip +Ot +Xc +Xc +Ag +Ag +Ag +Bh +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +Xc +Xc +Xc +Ru +Ar +vw +Ru +VK +Ru +Xc +WJ +Xc +VK +VK +VK +Hp +Xc +VK +VK +VK +VK +VK +Ru +Xc +VK +VK +WJ +Ru +Ar +VK +VK +VK +VK +VK +VK +VK +Ru +pZ +VK +VK +VA +Ag +Ag +Ag +Ag +Lk +hS +co +co +co +co +co +co +Li +Li +zs +pP +pP +Li +Xc +pV +Lk +Lk +Lk +EP +PO +PO +co +co +Xc +Xc +Xc +Li +Li +Li +Xc +Xc +BJ +jU +VD +VD +VD +ld +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +XY +XY +XY +XY +XY +XY +Xc +Xc +Xc +XY +XY +Xc +Xc +Xc +Ec +Ec +Xc +kr +ad +kr +Xc +Xc +kr +kr +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +Xc +Xc +Ec +Ec +jF +jF +jF +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(234,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Ag +Ag +cN +VK +VK +Xc +Xc +Xc +Lc +Xc +Xc +Lc +VK +ab +VK +WJ +Xc +Xc +Ru +Ar +VK +VK +VK +Ru +pZ +VK +VK +tB +Xc +Hp +JW +VK +VK +VK +VK +VK +VK +VK +tB +VK +Ru +pZ +VK +VK +VK +pZ +pZ +Xc +Xc +LP +Xc +pZ +VK +VK +VA +Ag +Ag +Ag +Ag +EP +co +co +co +co +co +co +co +co +Li +Xc +Xc +pP +Xc +Li +Li +pV +Lk +Lk +Od +PO +PO +PO +co +co +co +Li +Li +Li +Li +Li +Xc +Bw +VH +VH +NA +cE +Rm +Xc +Xc +Xc +Xc +Xc +Xc +XY +XY +XY +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ec +Ec +ad +jF +ZQ +eb +ZQ +ZQ +gn +CE +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +Ec +jF +jF +Ec +Ec +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(235,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +cN +VK +VK +VK +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +VK +OS +nS +VK +Ru +WJ +VK +VK +VK +Ar +VK +XW +VK +VK +VK +VK +Ar +VK +VK +VK +VK +OS +nS +VK +vQ +Xc +Xc +LP +Xc +pZ +pZ +pZ +Ru +Hp +Xc +eC +pZ +VK +VK +VK +wD +Ag +Ag +Ag +Ag +EP +co +co +co +co +co +co +kT +mh +Xc +Xc +zs +Xc +Xc +Li +Li +Li +MW +Lk +kZ +xN +PO +PO +co +Li +Li +Li +Li +Li +Li +Li +Xc +Mg +VD +NA +Ij +SM +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ec +jF +Hk +kx +ZQ +ZQ +ZQ +ZQ +wB +ZQ +PM +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Ec +jF +jF +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(236,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +VK +VK +VK +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +Lc +VK +VK +VK +VK +Ru +lS +VK +VK +VK +VK +VK +VK +VK +ab +Ar +OS +nS +VK +VK +VK +VK +VK +VK +Xc +Hp +Xc +eC +pZ +Ru +Ru +Ru +VK +VK +pZ +Ru +Ru +VK +VK +VK +VK +VA +Ag +Xc +Xc +Xc +co +co +co +co +co +co +co +co +hx +zs +zs +hx +Li +Li +Li +Li +pV +Lk +kZ +kZ +xN +Xc +Xc +Xc +Xc +Xc +Xc +Li +Li +Li +Li +VD +gi +Km +SM +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +eC +Xc +Xc +kr +ad +Xc +Xc +Xc +ZQ +ZQ +ZQ +ZQ +ZQ +Qo +ZQ +ZQ +ZQ +Ec +RP +jF +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(237,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +OS +nS +Lc +Lc +Lc +Lc +Xc +Xc +Xc +Xc +Lc +Lc +Lc +Xc +VK +ps +VK +Xc +VK +VK +VK +Ar +Ar +bR +nS +VK +VK +VK +VK +VK +VK +VK +VK +VK +Xc +VK +lt +uT +mO +wl +Vd +pv +pv +pv +pv +PR +VK +VK +Xc +Xc +LP +OS +nS +VA +Xc +Xc +Xc +Xc +Xc +Xc +kT +mh +co +co +co +co +co +hx +zs +zs +hx +hx +Li +Li +Li +pV +kZ +kZ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Li +Li +Li +Yy +Rm +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +XY +Xc +Xc +Xc +Xc +Xc +ZQ +ZQ +ZQ +Ec +jF +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(238,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +VK +Lc +Lc +Lc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +VK +VK +VK +VK +Ar +Xc +Xc +PV +Ar +VK +ga +VK +VK +VK +VK +VK +VK +VK +VK +VK +VK +Hh +Ag +Ag +Ag +Ag +Ag +Ag +Ag +PR +VK +Hp +Xc +eC +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +zs +zs +zs +hx +hx +hx +Li +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Li +WV +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +ZQ +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(239,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +VK +VK +Xc +Xc +Xc +Ru +Ru +Wc +Xc +Xc +Xc +VK +Ar +VK +VK +VK +VK +VK +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ag +Ag +Ag +Ag +Ag +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(240,1,1) = {" +Ip +Ot +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Xc +Ot +Ip +"} +(241,1,1) = {" +Ip +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ip +"} +(242,1,1) = {" +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +Ip +"}