diff --git a/_runtimestation.dm b/_runtimestation.dm deleted file mode 100644 index b0a5aa1a88..0000000000 --- a/_runtimestation.dm +++ /dev/null @@ -1,11 +0,0 @@ -/* -Toggle this var to 1 to compile using runtime station instead. -Useful if you're constantly having to recompile to debug something. -*/ -#define RUNTIME_STATION 0 - -#if RUNTIME_STATION - #include "modular_chomp/maps/runtime/runtime_station_defines.dm" - #include "modular_chomp/maps/runtime/runtime_station.dmm" - #define USING_MAP_DATUM /datum/map/runtime_station -#endif \ No newline at end of file diff --git a/code/__defines/color_priority.dm b/code/__defines/color_priority.dm new file mode 100644 index 0000000000..eb2dfdf6ca --- /dev/null +++ b/code/__defines/color_priority.dm @@ -0,0 +1,11 @@ +//different types of atom colorations +///only used by rare effects like greentext coloring mobs and when admins varedit color +#define ADMIN_COLOUR_PRIORITY 1 +///e.g. purple effect of the revenant on a mob, black effect when mob electrocuted +#define TEMPORARY_COLOUR_PRIORITY 2 +///color splashed onto an atom (e.g. paint on turf) +#define WASHABLE_COLOUR_PRIORITY 3 +///color inherent to the atom (e.g. blob color) +#define FIXED_COLOUR_PRIORITY 4 +///how many priority levels there are. +#define COLOUR_PRIORITY_AMOUNT 4 \ No newline at end of file diff --git a/code/__defines/lum_ch.dm b/code/__defines/lum_ch.dm new file mode 100644 index 0000000000..4d152073d3 --- /dev/null +++ b/code/__defines/lum_ch.dm @@ -0,0 +1,4 @@ +//Luma coefficients suggested for HDTVs. If you change these, make sure they add up to 1. +#define LUMA_R 0.213 +#define LUMA_G 0.715 +#define LUMA_B 0.072 \ No newline at end of file diff --git a/code/__defines/misc_ch.dm b/code/__defines/misc_ch.dm index 126c925bba..dde3d325f4 100644 --- a/code/__defines/misc_ch.dm +++ b/code/__defines/misc_ch.dm @@ -14,3 +14,5 @@ #define MAT_CARPET_PINK "pink carpet" #define MAT_CARPET_PURPLE "purple carpet" #define MAT_CARPET_ORANGE "orange carpet" + +#define PHASE_SHIELDED 16 // Prevents shadekin phasing in/out in this area \ No newline at end of file diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index b928ff1612..a14c8420b4 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -962,15 +962,32 @@ var/global/list/selectable_speech_bubbles = list( "cyber", "ghost", "slime_green", + "slime_yellow", + "slime_red", + "slime_blue", "dark", "plant", "clown", "fox", + "latte_fox", + "blue_fox", "maus", + "wolf", + "red_panda", + "blue_panda", + "tentacles", "heart", "textbox", "posessed", - "square") + "square", + "medical", + "medical_square", + "cardiogram", + "security", + "notepad", + "science", + "engineering", + "cargo") diff --git a/code/_helpers/icons.dm b/code/_helpers/icons.dm index 82e135c544..b8c501be26 100644 --- a/code/_helpers/icons.dm +++ b/code/_helpers/icons.dm @@ -80,8 +80,8 @@ Blend(M, ICON_ADD) /proc/BlendRGB(rgb1, rgb2, amount) - var/list/RGB1 = rgb2num(rgb1) - var/list/RGB2 = rgb2num(rgb2) + var/list/RGB1 = ReadRGB(rgb1) //CHOMPEdit - Better rgb blend + var/list/RGB2 = ReadRGB(rgb2) // add missing alpha if needed if(RGB1.len < RGB2.len) RGB1 += 255 diff --git a/code/_helpers/icons_ch.dm b/code/_helpers/icons_ch.dm new file mode 100644 index 0000000000..e366ee4b2a --- /dev/null +++ b/code/_helpers/icons_ch.dm @@ -0,0 +1,661 @@ +/* +IconProcs README + +A BYOND library for manipulating icons and colors + +by Lummox JR + +version 1.0 + +The IconProcs library was made to make a lot of common icon operations much easier. BYOND's icon manipulation +routines are very capable but some of the advanced capabilities like using alpha transparency can be unintuitive to beginners. + +CHANGING ICONS + +Several new procs have been added to the /icon datum to simplify working with icons. To use them, +remember you first need to setup an /icon var like so: + +GLOBAL_DATUM_INIT(my_icon, /icon, new('iconfile.dmi')) + +icon/ChangeOpacity(amount = 1) + A very common operation in DM is to try to make an icon more or less transparent. Making an icon more + transparent is usually much easier than making it less so, however. This proc basically is a frontend + for MapColors() which can change opacity any way you like, in much the same way that SetIntensity() + can make an icon lighter or darker. If amount is 0.5, the opacity of the icon will be cut in half. + If amount is 2, opacity is doubled and anything more than half-opaque will become fully opaque. +icon/GrayScale() + Converts the icon to grayscale instead of a fully colored icon. Alpha values are left intact. +icon/ColorTone(tone) + Similar to GrayScale(), this proc converts the icon to a range of black -> tone -> white, where tone is an + RGB color (its alpha is ignored). This can be used to create a sepia tone or similar effect. + See also the global ColorTone() proc. +icon/MinColors(icon) + The icon is blended with a second icon where the minimum of each RGB pixel is the result. + Transparency may increase, as if the icons were blended with ICON_ADD. You may supply a color in place of an icon. +icon/MaxColors(icon) + The icon is blended with a second icon where the maximum of each RGB pixel is the result. + Opacity may increase, as if the icons were blended with ICON_OR. You may supply a color in place of an icon. +icon/Opaque(background = "#000000") + All alpha values are set to 255 throughout the icon. Transparent pixels become black, or whatever background color you specify. +icon/BecomeAlphaMask() + You can convert a simple grayscale icon into an alpha mask to use with other icons very easily with this proc. + The black parts become transparent, the white parts stay white, and anything in between becomes a translucent shade of white. +icon/AddAlphaMask(mask) + The alpha values of the mask icon will be blended with the current icon. Anywhere the mask is opaque, + the current icon is untouched. Anywhere the mask is transparent, the current icon becomes transparent. + Where the mask is translucent, the current icon becomes more transparent. +icon/UseAlphaMask(mask, mode) + Sometimes you may want to take the alpha values from one icon and use them on a different icon. + This proc will do that. Just supply the icon whose alpha mask you want to use, and src will change + so it has the same colors as before but uses the mask for opacity. + +COLOR MANAGEMENT AND HSV + +RGB isn't the only way to represent color. Sometimes it's more useful to work with a model called HSV, which stands for hue, saturation, and value. + + * The hue of a color describes where it is along the color wheel. It goes from red to yellow to green to + cyan to blue to magenta and back to red. + * The saturation of a color is how much color is in it. A color with low saturation will be more gray, + and with no saturation at all it is a shade of gray. + * The value of a color determines how bright it is. A high-value color is vivid, moderate value is dark, + and no value at all is black. + +Just as BYOND uses "#rrggbb" to represent RGB values, a similar format is used for HSV: "#hhhssvv". The hue is three +hex digits because it ranges from 0 to 0x5FF. + + * 0 to 0xFF - red to yellow + * 0x100 to 0x1FF - yellow to green + * 0x200 to 0x2FF - green to cyan + * 0x300 to 0x3FF - cyan to blue + * 0x400 to 0x4FF - blue to magenta + * 0x500 to 0x5FF - magenta to red + +Knowing this, you can figure out that red is "#000ffff" in HSV format, which is hue 0 (red), saturation 255 (as colorful as possible), +value 255 (as bright as possible). Green is "#200ffff" and blue is "#400ffff". + +More than one HSV color can match the same RGB color. + +Here are some procs you can use for color management: + +ReadRGB(rgb) + Takes an RGB string like "#ffaa55" and converts it to a list such as list(255,170,85). If an RGBA format is used + that includes alpha, the list will have a fourth item for the alpha value. +hsv(hue, sat, val, apha) + Counterpart to rgb(), this takes the values you input and converts them to a string in "#hhhssvv" or "#hhhssvvaa" + format. Alpha is not included in the result if null. +ReadHSV(rgb) + Takes an HSV string like "#100FF80" and converts it to a list such as list(256,255,128). If an HSVA format is used that + includes alpha, the list will have a fourth item for the alpha value. +RGBtoHSV(rgb) + Takes an RGB or RGBA string like "#ffaa55" and converts it into an HSV or HSVA color such as "#080aaff". +HSVtoRGB(hsv) + Takes an HSV or HSVA string like "#080aaff" and converts it into an RGB or RGBA color such as "#ff55aa". +BlendRGB(rgb1, rgb2, amount) + Blends between two RGB or RGBA colors using regular RGB blending. If amount is 0, the first color is the result; + if 1, the second color is the result. 0.5 produces an average of the two. Values outside the 0 to 1 range are allowed as well. + The returned value is an RGB or RGBA color. +BlendHSV(hsv1, hsv2, amount) + Blends between two HSV or HSVA colors using HSV blending, which tends to produce nicer results than regular RGB + blending because the brightness of the color is left intact. If amount is 0, the first color is the result; if 1, + the second color is the result. 0.5 produces an average of the two. Values outside the 0 to 1 range are allowed as well. + The returned value is an HSV or HSVA color. +BlendRGBasHSV(rgb1, rgb2, amount) + Like BlendHSV(), but the colors used and the return value are RGB or RGBA colors. The blending is done in HSV form. +HueToAngle(hue) + Converts a hue to an angle range of 0 to 360. Angle 0 is red, 120 is green, and 240 is blue. +AngleToHue(hue) + Converts an angle to a hue in the valid range. +RotateHue(hsv, angle) + Takes an HSV or HSVA value and rotates the hue forward through red, green, and blue by an angle from 0 to 360. + (Rotating red by 60° produces yellow.) The result is another HSV or HSVA color with the same saturation and value + as the original, but a different hue. +GrayScale(rgb) + Takes an RGB or RGBA color and converts it to grayscale. Returns an RGB or RGBA string. +ColorTone(rgb, tone) + Similar to GrayScale(), this proc converts an RGB or RGBA color to a range of black -> tone -> white instead of + using strict shades of gray. The tone value is an RGB color; any alpha value is ignored. +*/ + +/* +Get Flat Icon DEMO by DarkCampainger + +This is a test for the get flat icon proc, modified approprietly for icons and their states. +Probably not a good idea to run this unless you want to see how the proc works in detail. +mob + icon = 'old_or_unused.dmi' + icon_state = "green" + + Login() + // Testing image underlays + underlays += image(icon='old_or_unused.dmi',icon_state="red") + underlays += image(icon='old_or_unused.dmi',icon_state="red", pixel_x = 32) + underlays += image(icon='old_or_unused.dmi',icon_state="red", pixel_x = -32) + + // Testing image overlays + add_overlay(image(icon='old_or_unused.dmi',icon_state="green", pixel_x = 32, pixel_y = -32)) + add_overlay(image(icon='old_or_unused.dmi',icon_state="green", pixel_x = 32, pixel_y = 32)) + add_overlay(image(icon='old_or_unused.dmi',icon_state="green", pixel_x = -32, pixel_y = -32)) + + // Testing icon file overlays (defaults to mob's state) + add_overlay('_flat_demoIcons2.dmi') + + // Testing icon_state overlays (defaults to mob's icon) + add_overlay("white") + + // Testing dynamic icon overlays + var/icon/I = icon('old_or_unused.dmi', icon_state="aqua") + I.Shift(NORTH,16,1) + add_overlay(I) + + // Testing dynamic image overlays + I=image(icon=I,pixel_x = -32, pixel_y = 32) + add_overlay(I) + + // Testing object types (and layers) + add_overlay(/obj/effect/overlayTest) + + loc = locate (10,10,1) + verb + Browse_Icon() + set name = "1. Browse Icon" + // Give it a name for the cache + var/iconName = "[ckey(src.name)]_flattened.dmi" + // Send the icon to src's local cache + src<

") + + Output_Icon() + set name = "2. Output Icon" + to_chat(src, "Icon is: [icon2base64html(get_flat_icon(src))]") + + Label_Icon() + set name = "3. Label Icon" + // Give it a name for the cache + var/iconName = "[ckey(src.name)]_flattened.dmi" + // Copy the file to the rsc manually + var/icon/I = fcopy_rsc(get_flat_icon(src)) + // Send the icon to src's local cache + src< 57 && ch < 65) || (ch > 70 && ch < 97) || ch > 102) + break + ++digits + if(digits == 8) + break + + var/single = digits < 6 + if(digits != 3 && digits != 4 && digits != 6 && digits != 8) + return + if(digits == 4 || digits == 8) + usealpha = 1 + for(i=start, digits>0, ++i) + ch = text2ascii(rgb, i) + if(ch >= 48 && ch <= 57) + ch -= 48 + else if(ch >= 65 && ch <= 70) + ch -= 55 + else if(ch >= 97 && ch <= 102) + ch -= 87 + else + break + --digits + switch(which) + if(0) + r = (r << 4) | ch + if(single) + r |= r << 4 + ++which + else if(!(digits & 1)) + ++which + if(1) + g = (g << 4) | ch + if(single) + g |= g << 4 + ++which + else if(!(digits & 1)) + ++which + if(2) + b = (b << 4) | ch + if(single) + b |= b << 4 + ++which + else if(!(digits & 1)) + ++which + if(3) + alpha = (alpha << 4) | ch + if(single) + alpha |= alpha << 4 + + . = list(r, g, b) + if(usealpha) + . += alpha + +/proc/ReadHSV(hsv) + if(!hsv) + return + + // interpret the HSV or HSVA value + var/i=1,start=1 + if(text2ascii(hsv) == 35) + ++start // skip opening # + var/ch,which=0,hue=0,sat=0,val=0,alpha=0,usealpha + var/digits=0 + for(i=start, i<=length(hsv), ++i) + ch = text2ascii(hsv, i) + if(ch < 48 || (ch > 57 && ch < 65) || (ch > 70 && ch < 97) || ch > 102) + break + ++digits + if(digits == 9) + break + if(digits > 7) + usealpha = 1 + if(digits <= 4) + ++which + if(digits <= 2) + ++which + for(i=start, digits>0, ++i) + ch = text2ascii(hsv, i) + if(ch >= 48 && ch <= 57) + ch -= 48 + else if(ch >= 65 && ch <= 70) + ch -= 55 + else if(ch >= 97 && ch <= 102) + ch -= 87 + else + break + --digits + switch(which) + if(0) + hue = (hue << 4) | ch + if(digits == (usealpha ? 6 : 4)) + ++which + if(1) + sat = (sat << 4) | ch + if(digits == (usealpha ? 4 : 2)) + ++which + if(2) + val = (val << 4) | ch + if(digits == (usealpha ? 2 : 0)) + ++which + if(3) + alpha = (alpha << 4) | ch + + . = list(hue, sat, val) + if(usealpha) + . += alpha + +/proc/HSVtoRGB(hsv) + if(!hsv) + return "#000000" + var/list/HSV = ReadHSV(hsv) + if(!HSV) + return "#000000" + + var/hue = HSV[1] + var/sat = HSV[2] + var/val = HSV[3] + + // Compress hue into easier-to-manage range + hue -= hue >> 8 + if(hue >= 0x5fa) + hue -= 0x5fa + + var/hi,mid,lo,r,g,b + hi = val + lo = round((255 - sat) * val / 255, 1) + mid = lo + round(abs(round(hue, 510) - hue) * (hi - lo) / 255, 1) + if(hue >= 765) + if(hue >= 1275) {r=hi; g=lo; b=mid} + else if(hue >= 1020) {r=mid; g=lo; b=hi } + else {r=lo; g=mid; b=hi } + else + if(hue >= 510) {r=lo; g=hi; b=mid} + else if(hue >= 255) {r=mid; g=hi; b=lo } + else {r=hi; g=mid; b=lo } + + return (HSV.len > 3) ? rgb(r,g,b,HSV[4]) : rgb(r,g,b) + +/proc/RGBtoHSV(rgb) + if(!rgb) + return "#0000000" + var/list/RGB = ReadRGB(rgb) + if(!RGB) + return "#0000000" + + var/r = RGB[1] + var/g = RGB[2] + var/b = RGB[3] + var/hi = max(r,g,b) + var/lo = min(r,g,b) + + var/val = hi + var/sat = hi ? round((hi-lo) * 255 / hi, 1) : 0 + var/hue = 0 + + if(sat) + var/dir + var/mid + if(hi == r) + if(lo == b) {hue=0; dir=1; mid=g} + else {hue=1535; dir=-1; mid=b} + else if(hi == g) + if(lo == r) {hue=512; dir=1; mid=b} + else {hue=511; dir=-1; mid=r} + else if(hi == b) + if(lo == g) {hue=1024; dir=1; mid=r} + else {hue=1023; dir=-1; mid=g} + hue += dir * round((mid-lo) * 255 / (hi-lo), 1) + + return hsv(hue, sat, val, (RGB.len>3 ? RGB[4] : null)) + +/proc/hsv(hue, sat, val, alpha) + if(hue < 0 || hue >= 1536) + hue %= 1536 + if(hue < 0) + hue += 1536 + if((hue & 0xFF) == 0xFF) + ++hue + if(hue >= 1536) + hue = 0 + if(sat < 0) + sat = 0 + if(sat > 255) + sat = 255 + if(val < 0) + val = 0 + if(val > 255) + val = 255 + . = "#" + . += TO_HEX_DIGIT(hue >> 8) + . += TO_HEX_DIGIT(hue >> 4) + . += TO_HEX_DIGIT(hue) + . += TO_HEX_DIGIT(sat >> 4) + . += TO_HEX_DIGIT(sat) + . += TO_HEX_DIGIT(val >> 4) + . += TO_HEX_DIGIT(val) + if(!isnull(alpha)) + if(alpha < 0) + alpha = 0 + if(alpha > 255) + alpha = 255 + . += TO_HEX_DIGIT(alpha >> 4) + . += TO_HEX_DIGIT(alpha) + +/* + Smooth blend between HSV colors + + amount=0 is the first color + amount=1 is the second color + amount=0.5 is directly between the two colors + + amount<0 or amount>1 are allowed + */ +/proc/BlendHSV(hsv1, hsv2, amount) + var/list/HSV1 = ReadHSV(hsv1) + var/list/HSV2 = ReadHSV(hsv2) + + // add missing alpha if needed + if(HSV1.len < HSV2.len) + HSV1 += 255 + else if(HSV2.len < HSV1.len) + HSV2 += 255 + var/usealpha = HSV1.len > 3 + + // normalize hsv values in case anything is screwy + if(HSV1[1] > 1536) + HSV1[1] %= 1536 + if(HSV2[1] > 1536) + HSV2[1] %= 1536 + if(HSV1[1] < 0) + HSV1[1] += 1536 + if(HSV2[1] < 0) + HSV2[1] += 1536 + if(!HSV1[3]) {HSV1[1] = 0; HSV1[2] = 0} + if(!HSV2[3]) {HSV2[1] = 0; HSV2[2] = 0} + + // no value for one color means don't change saturation + if(!HSV1[3]) + HSV1[2] = HSV2[2] + if(!HSV2[3]) + HSV2[2] = HSV1[2] + // no saturation for one color means don't change hues + if(!HSV1[2]) + HSV1[1] = HSV2[1] + if(!HSV2[2]) + HSV2[1] = HSV1[1] + + // Compress hues into easier-to-manage range + HSV1[1] -= HSV1[1] >> 8 + HSV2[1] -= HSV2[1] >> 8 + + var/hue_diff = HSV2[1] - HSV1[1] + if(hue_diff > 765) + hue_diff -= 1530 + else if(hue_diff <= -765) + hue_diff += 1530 + + var/hue = round(HSV1[1] + hue_diff * amount, 1) + var/sat = round(HSV1[2] + (HSV2[2] - HSV1[2]) * amount, 1) + var/val = round(HSV1[3] + (HSV2[3] - HSV1[3]) * amount, 1) + var/alpha = usealpha ? round(HSV1[4] + (HSV2[4] - HSV1[4]) * amount, 1) : null + + // normalize hue + if(hue < 0 || hue >= 1530) + hue %= 1530 + if(hue < 0) + hue += 1530 + // decompress hue + hue += round(hue / 255) + + return hsv(hue, sat, val, alpha) + +/proc/BlendRGBasHSV(rgb1, rgb2, amount) + return HSVtoRGB(RGBtoHSV(rgb1), RGBtoHSV(rgb2), amount) + +/proc/HueToAngle(hue) + // normalize hsv in case anything is screwy + if(hue < 0 || hue >= 1536) + hue %= 1536 + if(hue < 0) + hue += 1536 + // Compress hue into easier-to-manage range + hue -= hue >> 8 + return hue / (1530/360) + +/proc/AngleToHue(angle) + // normalize hsv in case anything is screwy + if(angle < 0 || angle >= 360) + angle -= 360 * round(angle / 360) + var/hue = angle * (1530/360) + // Decompress hue + hue += round(hue / 255) + return hue + + +// positive angle rotates forward through red->green->blue +/proc/RotateHue(hsv, angle) + var/list/HSV = ReadHSV(hsv) + + // normalize hsv in case anything is screwy + if(HSV[1] >= 1536) + HSV[1] %= 1536 + if(HSV[1] < 0) + HSV[1] += 1536 + + // Compress hue into easier-to-manage range + HSV[1] -= HSV[1] >> 8 + + if(angle < 0 || angle >= 360) + angle -= 360 * round(angle / 360) + HSV[1] = round(HSV[1] + angle * (1530/360), 1) + + // normalize hue + if(HSV[1] < 0 || HSV[1] >= 1530) + HSV[1] %= 1530 + if(HSV[1] < 0) + HSV[1] += 1530 + // decompress hue + HSV[1] += round(HSV[1] / 255) + + return hsv(HSV[1], HSV[2], HSV[3], (HSV.len > 3 ? HSV[4] : null)) + +// Convert an rgb color to grayscale +/proc/GrayScale(rgb) + var/list/RGB = ReadRGB(rgb) + var/gray = RGB[1]*0.3 + RGB[2]*0.59 + RGB[3]*0.11 + return (RGB.len > 3) ? rgb(gray, gray, gray, RGB[4]) : rgb(gray, gray, gray) + +// Change grayscale color to black->tone->white range +/proc/ColorTone(rgb, tone) + var/list/RGB = ReadRGB(rgb) + var/list/TONE = ReadRGB(tone) + + var/gray = RGB[1]*0.3 + RGB[2]*0.59 + RGB[3]*0.11 + var/tone_gray = TONE[1]*0.3 + TONE[2]*0.59 + TONE[3]*0.11 + + if(gray <= tone_gray) + return BlendRGB("#000000", tone, gray/(tone_gray || 1)) + else + return BlendRGB(tone, "#ffffff", (gray-tone_gray)/((255-tone_gray) || 1)) + + +//Used in the OLD chem colour mixing algorithm +/proc/GetColors(hex) + hex = uppertext(hex) + // No alpha set? Default to full alpha. + if(length(hex) == 7) + hex += "FF" + var/hi1 = text2ascii(hex, 2) // R + var/lo1 = text2ascii(hex, 3) // R + var/hi2 = text2ascii(hex, 4) // G + var/lo2 = text2ascii(hex, 5) // G + var/hi3 = text2ascii(hex, 6) // B + var/lo3 = text2ascii(hex, 7) // B + var/hi4 = text2ascii(hex, 8) // A + var/lo4 = text2ascii(hex, 9) // A + return list(((hi1>= 65 ? hi1-55 : hi1-48)<<4) | (lo1 >= 65 ? lo1-55 : lo1-48), + ((hi2 >= 65 ? hi2-55 : hi2-48)<<4) | (lo2 >= 65 ? lo2-55 : lo2-48), + ((hi3 >= 65 ? hi3-55 : hi3-48)<<4) | (lo3 >= 65 ? lo3-55 : lo3-48), + ((hi4 >= 65 ? hi4-55 : hi4-48)<<4) | (lo4 >= 65 ? lo4-55 : lo4-48)) + +//Interface for using DrawBox() to draw 1 pixel on a coordinate. +//Returns the same icon specifed in the argument, but with the pixel drawn +/proc/DrawPixel(icon/I,colour,drawX,drawY) + if(!I) + return 0 + + var/Iwidth = I.Width() + var/Iheight = I.Height() + + if(drawX > Iwidth || drawX <= 0) + return 0 + if(drawY > Iheight || drawY <= 0) + return 0 + + I.DrawBox(colour,drawX, drawY) + return I + + +//Interface for easy drawing of one pixel on an atom. +/atom/proc/DrawPixelOn(colour, drawX, drawY) + var/icon/I = new(icon) + var/icon/J = DrawPixel(I, colour, drawX, drawY) + if(J) //Only set the icon if it succeeded, the icon without the pixel is 1000x better than a black square. + icon = J + return J + return 0 + +//Hook, override to run code on- wait this is images +//Images have dir without being an atom, so they get their own definition. +//Lame. +/image/proc/setDir(newdir) + dir = newdir + +/* Gives the result RGB of a RGB string after a matrix transformation. No alpha. + * Input: rr, rg, rb, gr, gg, gb, br, bg, bb, cr, cg, cb + * Output: RGB string + */ +/proc/RGBMatrixTransform(list/color, list/cm) + ASSERT(cm.len >= 9) + if(cm.len < 12) // fill in the rest + for(var/i in 1 to (12 - cm.len)) + cm += 0 + if(!islist(color)) + color = ReadRGB(color) + color[1] = color[1] * cm[1] + color[2] * cm[2] + color[3] * cm[3] + cm[10] * 255 + color[2] = color[1] * cm[4] + color[2] * cm[5] + color[3] * cm[6] + cm[11] * 255 + color[3] = color[1] * cm[7] + color[2] * cm[8] + color[3] * cm[9] + cm[12] * 255 + return rgb(color[1], color[2], color[3]) \ No newline at end of file diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm index d08c7a7246..7c430aca70 100755 --- a/code/game/area/Space Station 13 areas.dm +++ b/code/game/area/Space Station 13 areas.dm @@ -1823,7 +1823,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "\improper Vault" icon_state = "nuke_storage" ambience = AMBIENCE_HIGHSEC - limit_shadekin_phasing = TRUE // CHOMPEdit /area/security/checkpoint name = "\improper Security Checkpoint" diff --git a/code/game/area/Space Station 13 areas_ch.dm b/code/game/area/Space Station 13 areas_ch.dm index 22f361ab24..5c0e7c50fa 100644 --- a/code/game/area/Space Station 13 areas_ch.dm +++ b/code/game/area/Space Station 13 areas_ch.dm @@ -126,3 +126,6 @@ limit_dark_respite = TRUE ambience = AMBIENCE_OTHERWORLDLY flags = RAD_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT | BLUE_SHIELDED + +/area/security/nuke_storage + flags = PHASE_SHIELDED \ No newline at end of file diff --git a/code/game/area/areas_ch.dm b/code/game/area/areas_ch.dm index 59530dfba0..5187cea206 100644 --- a/code/game/area/areas_ch.dm +++ b/code/game/area/areas_ch.dm @@ -1,3 +1,2 @@ /area - var/limit_shadekin_phasing = FALSE //Allows setting areas where shadekin cannot phase in/out var/limit_dark_respite = FALSE // Shadekin will die normally in an area where this is set to true diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm index 3a10a23df5..b19d7ba79b 100644 --- a/code/game/jobs/job/special_vr.dm +++ b/code/game/jobs/job/special_vr.dm @@ -98,7 +98,7 @@ /datum/job/emergency_responder/get_access() return get_all_accesses().Copy() - +/* CHOMPEDIT: Removing Clown/Mime job from being initialized at all (These are alt titles of Entertainer on our codebase) /datum/job/clown title = "Clown" flag = CLOWN @@ -157,3 +157,4 @@ return list(access_maint_tunnels, access_entertainment, access_tomfoolery, access_mime) else return list(access_entertainment, access_tomfoolery, access_mime) +*/ //CHOMPEDIT: END remove Mime/clown defines (These are alt titles of Entertainer on our codebase) diff --git a/code/game/machinery/painter_vr.dm b/code/game/machinery/painter_vr.dm index e10311915d..93698cffa4 100644 --- a/code/game/machinery/painter_vr.dm +++ b/code/game/machinery/painter_vr.dm @@ -1,3 +1,5 @@ +/* CHOMPStation edit - File overidden. See modular_chomp/code/game/machinery/colormate.dm + // I'm honestly pretty sure that short of stuffing five million things into this // there's absolutely no way it could ever have any performance impact // Given that all it does is set the color var @@ -115,3 +117,4 @@ . = TRUE update_icon() +/* \ No newline at end of file diff --git a/code/game/objects/items/trash_vr.dm b/code/game/objects/items/trash_vr.dm index 572c08a265..fc2d997182 100644 --- a/code/game/objects/items/trash_vr.dm +++ b/code/game/objects/items/trash_vr.dm @@ -64,4 +64,35 @@ /obj/item/trash/ratpackturkey name = "\improper Prepackaged Meal Tray" icon = 'icons/obj/trash_vr.dmi' - icon_state = "altevian_pack_turkey-trash" \ No newline at end of file + icon_state = "altevian_pack_turkey-trash" + +/obj/item/trash/ratpackramen + name = "\improper Prepackaged Meal Tray" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "altevian_pack_ramen_standard-trash" + +/obj/item/trash/ratpackramen/standard + icon_state = "altevian_pack_ramen_standard-trash" + +/obj/item/trash/ratpackramen/lacquer1 + icon_state = "altevian_pack_ramen_lacquer1-trash" + +/obj/item/trash/ratpackramen/lacquer2 + icon_state = "altevian_pack_ramen_lacquer2-trash" + +/obj/item/trash/ratpackramen/lacquer3 + icon_state = "altevian_pack_ramen_lacquer3-trash" + +/obj/item/trash/ratpackramen/fleet + icon_state = "altevian_pack_ramen_fleet-trash" + +/obj/item/trash/ratpackramen/trans + icon_state = "altevian_pack_ramen_trans-trash" + +/obj/item/trash/ratpackramen/ace + icon_state = "altevian_pack_ramen_ace-trash" + +/obj/item/trash/ratpacktaco + name = "\improper Prepackaged Meal Tray" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "altevian_pack_taco-trash" \ No newline at end of file diff --git a/code/game/objects/items/weapons/id cards/syndicate_ids.dm b/code/game/objects/items/weapons/id cards/syndicate_ids.dm index 727d76fd26..b89868ca19 100644 --- a/code/game/objects/items/weapons/id cards/syndicate_ids.dm +++ b/code/game/objects/items/weapons/id cards/syndicate_ids.dm @@ -30,7 +30,7 @@ if(istype(O, /obj/item/weapon/card/id)) var/obj/item/weapon/card/id/I = O src.access |= I.access - if(player_is_antag(user.mind)) + if(player_is_antag(user.mind) || registered_user == user) to_chat(user, "The microscanner activates as you pass it over the ID, copying its access.") /obj/item/weapon/card/id/syndicate/attack_self(mob/user as mob) diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks.dm b/code/modules/client/preference_setup/loadout/gear_tweaks.dm index ed5306412b..8e2c770314 100644 --- a/code/modules/client/preference_setup/loadout/gear_tweaks.dm +++ b/code/modules/client/preference_setup/loadout/gear_tweaks.dm @@ -40,7 +40,14 @@ /datum/gear_tweak/color/tweak_item(var/obj/item/I, var/metadata) if(valid_colors && !(metadata in valid_colors)) return - I.color = metadata + //CHOMPEdit start + if(!metadata || (metadata == "#ffffff")) + return + if(istype(I)) + I.add_atom_colour(metadata, FIXED_COLOUR_PRIORITY) + else + I.color = metadata // fuck off underwear + //CHOMPEdit end /* * Path adjustment diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index 5bf688f40e..c13cc226c7 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -264,7 +264,7 @@ var/list/gear_datums = list() if(!description) var/obj/O = path description = initial(O.desc) - gear_tweaks = list(gear_tweak_free_name, gear_tweak_free_desc, gear_tweak_item_tf_spawn) //CHOMPEdit - Item TF spawnpoints + gear_tweaks = list(gear_tweak_free_name, gear_tweak_free_desc, gear_tweak_item_tf_spawn, GLOB.gear_tweak_free_matrix_recolor) //CHOMPEdit - Item TF spawnpoints /datum/gear_data var/path diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm index 2d4c242ae6..084a8e5576 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm @@ -98,3 +98,9 @@ Talon hats /datum/gear/head/beret/talon display_name = "beret, Talon" path = /obj/item/clothing/head/beret + +// tiny tophat + +/datum/gear/head/tiny_tophat + display_name = "tiny tophat" + path = /obj/item/clothing/head/tinytophat diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index b554e951f2..85e90416e9 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -369,4 +369,10 @@ Talon jumpsuit "jumper skirt"=/obj/item/clothing/under/skirt/colorable/jumper, "jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress ) - gear_tweaks += list(new/datum/gear_tweak/path(skirts), gear_tweak_free_color_choice) \ No newline at end of file + gear_tweaks += list(new/datum/gear_tweak/path(skirts), gear_tweak_free_color_choice) + +// gwen beedells clown clothes + +/datum/gear/uniform/stripeddungarees + display_name = "striped dungarees" + path = /obj/item/clothing/under/stripeddungarees \ No newline at end of file diff --git a/code/modules/clothing/head/misc_vr.dm b/code/modules/clothing/head/misc_vr.dm index 559defab45..ce420fbd31 100644 --- a/code/modules/clothing/head/misc_vr.dm +++ b/code/modules/clothing/head/misc_vr.dm @@ -163,3 +163,12 @@ sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/head/mob_vr_teshari.dmi' ) + +// tiny tophat + +/obj/item/clothing/head/tinytophat + name = "tiny tophat" + desc = "A tophat that is far too small to properly sit on someone's head!" + icon = 'icons/inventory/head/item_vr.dmi' + default_worn_icon = 'icons/inventory/head/mob_vr.dmi' + icon_state = "tiny_tophat" diff --git a/code/modules/clothing/under/altevian_vr.dm b/code/modules/clothing/under/altevian_vr.dm index 89c44205f9..d7720272f3 100644 --- a/code/modules/clothing/under/altevian_vr.dm +++ b/code/modules/clothing/under/altevian_vr.dm @@ -19,24 +19,29 @@ name = "Altevian Hegemony Security Pants" icon_state = "altevian-pants-sec" worn_state = "altevian-pants-sec" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.9 starting_accessories = list(/obj/item/clothing/accessory/jacket/altevian/security) /obj/item/clothing/under/pants/altevian/engineering name = "Altevian Hegemony Engineering Pants" icon_state = "altevian-pants-eng" worn_state = "altevian-pants-eng" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) starting_accessories = list(/obj/item/clothing/accessory/jacket/altevian/engineering) /obj/item/clothing/under/pants/altevian/medical name = "Altevian Hegemony Medical Pants" icon_state = "altevian-pants-med" worn_state = "altevian-pants-med" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) starting_accessories = list(/obj/item/clothing/accessory/jacket/altevian/medical) /obj/item/clothing/under/pants/altevian/science name = "Altevian Hegemony Science Pants" icon_state = "altevian-pants-sci" worn_state = "altevian-pants-sci" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) starting_accessories = list(/obj/item/clothing/accessory/jacket/altevian/science) /obj/item/clothing/under/pants/altevian/cargo @@ -56,20 +61,25 @@ /obj/item/clothing/under/altevian/sci name = "Altevian Science Duty Jumpsuit" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) icon_state = "altevian-specialist-sci" worn_state = "altevian-specialist-sci" /obj/item/clothing/under/altevian/med name = "Altevian Medical Duty Jumpsuit" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) icon_state = "altevian-specialist-med" worn_state = "altevian-specialist-med" /obj/item/clothing/under/altevian/sec name = "Altevian Security Duty Jumpsuit" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.9 icon_state = "altevian-specialist-sec" worn_state = "altevian-specialist-sec" /obj/item/clothing/under/altevian/eng name = "Altevian Engineering Duty Jumpsuit" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) icon_state = "altevian-specialist-eng" worn_state = "altevian-specialist-eng" \ No newline at end of file diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 196024ef98..2d2c29ca0a 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -586,4 +586,13 @@ desc = "A dress held up by suspenders. Not quite a skirt anymore." icon_state = "skirt_jumperdress" item_state = "skirt_jumperdress" - worn_state = "skirt_jumperdress" \ No newline at end of file + worn_state = "skirt_jumperdress" + +// Gwen Beedell's clown outfit + +/obj/item/clothing/under/stripeddungarees + name = "striped dungarees" + desc = "A colourful set of striped dungarees, pretty funny lookin'." + icon = 'icons/inventory/uniform/item_vr.dmi' + default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' + icon_state = "striped_clown_uniform" diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index beccc03230..12816a0174 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -34,20 +34,21 @@ SSradiation.z_radiate(locate(1, 1, z), radiation_level, 1) for(var/mob/living/carbon/C in living_mob_list) - var/area/A = get_area(C) - if(!A) - continue - if(A.flags & RAD_SHIELDED) - continue - if(istype(C,/mob/living/carbon/human)) - var/mob/living/carbon/human/H = C - if(prob(5)) - if (prob(75)) - randmutb(H) // Applies bad mutation - domutcheck(H,null,MUTCHK_FORCED) - else - randmutg(H) // Applies good mutation - domutcheck(H,null,MUTCHK_FORCED) + if((C.z in using_map.station_levels) && !C.isSynthetic()) //CHOMPEdit + var/area/A = get_area(C) + if(!A) + continue + if(A.flags & RAD_SHIELDED) + continue + if(istype(C,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = C + if(prob(5)) + if (prob(75)) + randmutb(H) // Applies bad mutation + domutcheck(H,null,MUTCHK_FORCED) + else + randmutg(H) // Applies good mutation + domutcheck(H,null,MUTCHK_FORCED) /datum/event/radiation_storm/end() revoke_maint_all_access() diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index f5c276d887..732567356c 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -864,7 +864,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackturkey name = "Compact Holiday Special Bird" - desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging" + desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_turkey" package_open_state = "altevian_pack_turkey-open" @@ -873,3 +873,43 @@ trash = /obj/item/trash/ratpackturkey nutriment_amt = 18 nutriment_desc = list("high-quality poultry" = 4) + +/obj/item/weapon/reagent_containers/food/snacks/ratpackramen + name = "Big Noodle Package" + desc = "A pack containing fully cooked ramen meal, alongside some seafood-and-rice based sides. Utensils included. For those who prefer more traditional meals." + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_pack_ramen" + package_open_state = "altevian_pack_ramen_standard-open" + package_opening_state = "altevian_pack_ramen_standard-opening" + package = TRUE + trash = /obj/item/trash/ratpackramen/standard + nutriment_amt = 2 + nutriment_desc = list("savory noodles" = 4) + var/list/bowl_color_options = list("standard" = 6, + "lacquer1" = 2, + "lacquer2" = 2, + "lacquer3" = 2, + "fleet" = 6, + "trans" = 3, + "ace" = 3) + var/randomize_bowl_color = TRUE + +/obj/item/weapon/reagent_containers/food/snacks/ratpackramen/Initialize() + . = ..() + if(randomize_bowl_color) + var/bowl_color = pickweight(bowl_color_options) + package_open_state = "altevian_pack_ramen_[bowl_color]-open" + package_opening_state = "altevian_pack_ramen_[bowl_color]-opening" + trash = text2path("/obj/item/trash/ratpackramen/[bowl_color]") + +/obj/item/weapon/reagent_containers/food/snacks/ratpacktaco + name = "Triple Taco Tuck" + desc = "Three mini-tacos, minituarized further via altevian mad science into a convenient container. It comes with a salsa sauce!" + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_pack_taco" + package_open_state = "altevian_pack_taco-open" + package_opening_state = "altevian_pack_taco-opening" + package = TRUE + trash = /obj/item/trash/ratpacktaco + nutriment_amt = 2 + nutriment_desc = list("salsa sauce" = 2, "meat chunks" = 4, "cheese" = 3) diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm index 0ce3512bef..23bc29d296 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -228,6 +228,7 @@ H.adjustBruteLoss((-0.25)) H.adjustToxLoss((-0.25)) H.heal_organ_damage(3, 0) + H.add_chemical_effect(CE_ANTIBIOTIC, ANTIBIO_NORM) for(var/obj/item/organ/I in H.internal_organs) if(I.robotic >= ORGAN_ROBOT) continue diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm index 537ca9ea3d..27ec88fa45 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm @@ -38,6 +38,9 @@ if(!T) to_chat(src,"You can't use that here!") return FALSE + if((get_area(src).flags & PHASE_SHIELDED)) //CHOMPAdd - Mapping tools to control phasing + to_chat(src,"This area is preventing you from phasing!") + return FALSE var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 darkness = 1-brightness //Invert @@ -98,13 +101,6 @@ to_chat(src, "Not enough energy for that ability!") return FALSE - //CHOMPEdit begin - restricting areas where you can phase shift - var/area/A = T.loc - if(A?.limit_shadekin_phasing) - to_chat(src, "You can't use that here!") - return FALSE - //CHOMPEdit end - if(!(ability_flags & AB_PHASE_SHIFTED)) shadekin_adjust_energy(-ability_cost) playsound(src, 'sound/effects/stealthoff.ogg', 75, 1) @@ -171,9 +167,9 @@ var/destroy_lights = 0 //CHOMPEdit start - Add back light destruction - if(SK.get_shadekin_eyecolor() == RED_EYES) + if(SK.get_shadekin_eyecolor(src) == RED_EYES) destroy_lights = 80 - else if(SK.get_shadekin_eyecolor() == PURPLE_EYES) + else if(SK.get_shadekin_eyecolor(src) == PURPLE_EYES) destroy_lights = 25 //CHOMPEdit end diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index edde1c5bbb..4252437ef2 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -199,3 +199,21 @@ speak = list("Squeek!","SQUEEK!","Squeek?") emote_hear = list("squeeks","squeaks","squiks") emote_see = list("runs in a circle", "shakes", "scritches at something") + +// CHOMPAdd - Verb for mice colour changing +/mob/living/simple_mob/animal/passive/mouse/verb/set_mouse_colour() + set name = "Set Mouse Colour" + set category = "Abilities" + set desc = "Set the colour of your mouse." + var/new_mouse_colour = tgui_input_list(usr, "Set Mouse Colour", "Pick a colour", list("brown","gray","white","black")) + if(!new_mouse_colour) return + icon_state = resting ? "mouse_[new_mouse_colour]_sleep" : "mouse_[new_mouse_colour]" + item_state = "mouse_[new_mouse_colour]" + icon_living = "mouse_[new_mouse_colour]" + icon_dead = "mouse_[new_mouse_colour]_dead" + icon_rest = "mouse_[new_mouse_colour]_sleep" + desc = "A small [new_mouse_colour] rodent, often seen hiding in maintenance areas and making a nuisance of itself." + holder_type = text2path("/obj/item/weapon/holder/mouse/[new_mouse_colour]") + to_chat(src, SPAN_NOTICE("You are now a [new_mouse_colour] mouse!")) + verbs -= /mob/living/simple_mob/animal/passive/mouse/verb/set_mouse_colour +// CHOMPAdd End diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm index e6c84387c8..ea45c2a6fd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm @@ -8,6 +8,10 @@ to_chat(src,"You can't use that here!") return FALSE + if((get_area(src).flags & PHASE_SHIELDED)) //CHOMPAdd - Mapping tools to control phasing + to_chat(src,"This area is preventing you from phasing!") + return FALSE + if(shift_state && shift_state == AB_SHIFT_ACTIVE) to_chat(src,"You can't do a shift while actively shifting!") return FALSE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_procs.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_procs.dm index 63ae6367c2..d77dc081d6 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_procs.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_procs.dm @@ -4,6 +4,9 @@ if(!T.CanPass(src,T) || loc != T) to_chat(src,"You can't use that here!") return FALSE + if((get_area(src).flags & PHASE_SHIELDED)) + to_chat(src,"This area is preventing you from phasing!") + return FALSE forceMove(T) var/original_canmove = canmove diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 5b2f14b8c0..ab4a438cbb 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -85,10 +85,10 @@ /proc/is_admin(var/mob/user) return check_rights(R_ADMIN|R_EVENT, 0, user) != 0 - +/* CHOMPEdit - See modular_chomp/code/_HELPERS/type2type/color.dm /proc/hsl2rgb(h, s, l) return //TODO: Implement - +*/ /* Miss Chance */ diff --git a/code/modules/tgui/modules/communications.dm b/code/modules/tgui/modules/communications.dm index 7a0223d2b8..542f330713 100644 --- a/code/modules/tgui/modules/communications.dm +++ b/code/modules/tgui/modules/communications.dm @@ -273,10 +273,14 @@ if(!is_authenticated(usr)) return - call_shuttle_proc(usr) - if(emergency_shuttle.online()) - post_status(src, "shuttle", user = usr) - setMenuState(usr, COMM_SCREEN_MAIN) + //CHOMPEdit Start - Add confirmation message + var/response = tgui_alert(usr, "OOC: You are required to Ahelp first before calling the shuttle. Please obtain confirmation from staff before calling the shuttle. \n\n Are you sure you want to call the shuttle?", "Confirm", list("Yes", "No")) + + if(response == "Yes") //CHOMPEdit End + call_shuttle_proc(usr) + if(emergency_shuttle.online()) + post_status(src, "shuttle", user = usr) + setMenuState(usr, COMM_SCREEN_MAIN) if("cancelshuttle") if(isAI(usr) || isrobot(usr)) diff --git a/code/modules/vore/eating/belly_obj_ch.dm b/code/modules/vore/eating/belly_obj_ch.dm index ae3c9f8068..cca366f995 100644 --- a/code/modules/vore/eating/belly_obj_ch.dm +++ b/code/modules/vore/eating/belly_obj_ch.dm @@ -472,3 +472,12 @@ for(var/A in contents) if(isliving(A)) vore_fx(A,1) + +/obj/belly/deserialize(var/list/data) + ..() + STOP_PROCESSING(SSbellies, src) + STOP_PROCESSING(SSobj, src) + if(speedy_mob_processing) + START_PROCESSING(SSobj, src) + else + START_PROCESSING(SSbellies, src) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 27f2376d93..0b40e591a5 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -55,6 +55,7 @@ var/emote_active = TRUE // Are we even giving emotes out at all or not? var/next_emote = 0 // When we're supposed to print our next emote, as a world.time var/selective_preference = DM_DIGEST // Which type of selective bellymode do we default to? + var/is_feedable = TRUE // If this belly shows up in belly selections for others. //CHOMPAdd // Generally just used by AI var/autotransferchance = 0 // % Chance of prey being autotransferred to transfer location @@ -292,7 +293,8 @@ "slow_brutal", "sound_volume", "speedy_mob_processing", - "egg_name", //CHOMP end of variables from CHOMP + "egg_name", + "is_feedable", //CHOMP end of variables from CHOMP "egg_type", "save_digest_mode" ) @@ -328,6 +330,9 @@ // Called whenever an atom enters this belly /obj/belly/Entered(atom/movable/thing, atom/OldLoc) . = ..() //CHOMPEdit Start + if(!owner) + thing.forceMove(get_turf(src)) + return if(owner && istype(owner.loc,/turf/simulated) && !cycle_sloshed && reagents.total_volume > 0) var/turf/simulated/T = owner.loc var/S = pick(T.vorefootstep_sounds["human"]) @@ -485,7 +490,7 @@ I.alpha = max(150, min(custom_max_volume, 255)) - (255 - belly_fullscreen_alpha) I.pixel_y = -450 + (450 / custom_max_volume * reagents.total_volume) F.add_overlay(I) - F.update_for_view(owner.client.view) + F.update_for_view(L.client.view) else var/obj/screen/fullscreen/F = L.overlay_fullscreen("belly", /obj/screen/fullscreen/belly/fixed, severity) //preserving save data F.icon = file("modular_chomp/icons/mob/vore_fullscreens/[belly_fullscreen].dmi") @@ -504,7 +509,7 @@ I.alpha = max(150, min(custom_max_volume, 255)) - (255 - belly_fullscreen_alpha) I.pixel_y = -450 + (450 / custom_max_volume * reagents.total_volume) F.add_overlay(I) - F.update_for_view(owner.client.view) + F.update_for_view(L.client.view) //CHOMPEdit End else L.clear_fullscreen("belly") @@ -519,7 +524,6 @@ return if(!L.client) return - if(belly_fullscreen) if(colorization_enabled) var/obj/screen/fullscreen/F = L.overlay_fullscreen("belly", /obj/screen/fullscreen/belly, reagents.total_volume) //CHOMPedit Start: preserving save data @@ -550,7 +554,7 @@ I.alpha = max(150, min(custom_max_volume, 255)) - (255 - belly_fullscreen_alpha) I.pixel_y = -450 + (450 / custom_max_volume * reagents.total_volume) F.add_overlay(I) - F.update_for_view(owner.client.view) + F.update_for_view(L.client.view) else var/obj/screen/fullscreen/F = L.overlay_fullscreen("belly", /obj/screen/fullscreen/belly/fixed, reagents.total_volume) //preserving save data F.cut_overlays() @@ -568,7 +572,7 @@ I.alpha = max(150, min(custom_max_volume, 255)) - (255 - belly_fullscreen_alpha) I.pixel_y = -450 + (450 / custom_max_volume * reagents.total_volume) F.add_overlay(I) - F.update_for_view(owner.client.view)//CHOMPEdit End + F.update_for_view(L.client.view)//CHOMPEdit End else L.clear_fullscreen("belly") @@ -1013,7 +1017,7 @@ else qdel(M) if(isanimal(owner)) - owner.update_transform() + owner.update_icon() //CHOMPEdit End // Handle a mob being absorbed @@ -1519,7 +1523,8 @@ dupe.slow_digestion = slow_digestion dupe.slow_brutal = slow_brutal dupe.sound_volume = sound_volume - dupe.egg_name = egg_name //CHOMP end of variables from CHOMP + dupe.egg_name = egg_name + dupe.is_feedable = is_feedable //CHOMP end of variables from CHOMP dupe.belly_fullscreen = belly_fullscreen dupe.disable_hud = disable_hud diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index c67794c993..3ed6efdaa0 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -354,8 +354,8 @@ if((mode_flags & DM_FLAG_LEAVEREMAINS) && M.digest_leave_remains) handle_remains_leaving(M) digestion_death(M) - if(!ishuman(owner)) - owner.update_icons() + //if(!ishuman(owner)) CHOMPremoval. Bad. + // owner.update_icons() if(isrobot(owner)) var/mob/living/silicon/robot/R = owner if(reagent_mode_flags & DM_FLAG_REAGENTSDIGEST && reagents.total_volume < reagents.maximum_volume) //CHOMPedit: digestion producing reagents diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 0883c1c2ed..6c6d3fe047 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -578,6 +578,16 @@ // // Eating procs depending on who clicked what // + +//CHOMPAdd Start +/mob/living/proc/feedable_bellies() + var/list/bellies = list() + for(var/obj/belly/Y in src.vore_organs) + if(Y.is_feedable) + bellies += Y + return bellies +//CHOMPAdd End + /mob/living/proc/feed_grabbed_to_self(mob/living/user, mob/living/prey) var/belly = user.vore_selected return perform_the_nom(user, prey, user, belly) @@ -585,17 +595,17 @@ /mob/living/proc/eat_held_mob(mob/living/user, mob/living/prey, mob/living/pred) var/belly if(user != pred) - belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.vore_organs) + belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.feedable_bellies()) //CHOMPEdit else belly = pred.vore_selected return perform_the_nom(user, prey, pred, belly) /mob/living/proc/feed_self_to_grabbed(mob/living/user, mob/living/pred) - var/belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.vore_organs) + var/belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.feedable_bellies()) //CHOMPEdit return perform_the_nom(user, user, pred, belly) /mob/living/proc/feed_grabbed_to_other(mob/living/user, mob/living/prey, mob/living/pred) - var/belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.vore_organs) + var/belly = tgui_input_list(usr, "Choose Belly", "Belly Choice", pred.feedable_bellies()) //CHOMPEdit return perform_the_nom(user, prey, pred, belly) // diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 54d9de1809..2e6cbda3ff 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -180,6 +180,7 @@ "release_sound" = selected.release_sound, // "messages" // TODO "can_taste" = selected.can_taste, + "is_feedable" = selected.is_feedable, //CHOMPAdd "egg_type" = selected.egg_type, "egg_name" = selected.egg_name, //CHOMPAdd "nutrition_percent" = selected.nutrition_percent, @@ -1492,6 +1493,9 @@ if("b_tastes") host.vore_selected.can_taste = !host.vore_selected.can_taste . = TRUE + if("b_feedable") //CHOMPAdd + host.vore_selected.is_feedable = !host.vore_selected.is_feedable + . = TRUE if("b_bulge_size") var/new_bulge = tgui_input_number(user, "Choose the required size prey must be to show up on examine, ranging from 25% to 200% Set this to 0 for no text on examine.", "Set Belly Examine Size.", max_value = 200, min_value = 0) if(new_bulge == null) diff --git a/icons/_nanomaps/southern_cross_nanomap_z10.png b/icons/_nanomaps/southern_cross_nanomap_z10.png index c0209bedd7..64ad1413ed 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z10.png and b/icons/_nanomaps/southern_cross_nanomap_z10.png differ diff --git a/icons/inventory/head/item_vr.dmi b/icons/inventory/head/item_vr.dmi index 7f0bda20ba..a60948269e 100644 Binary files a/icons/inventory/head/item_vr.dmi and b/icons/inventory/head/item_vr.dmi differ diff --git a/icons/inventory/head/mob_vr.dmi b/icons/inventory/head/mob_vr.dmi index 00b0686e30..90aba59462 100644 Binary files a/icons/inventory/head/mob_vr.dmi and b/icons/inventory/head/mob_vr.dmi differ diff --git a/icons/inventory/uniform/item_vr.dmi b/icons/inventory/uniform/item_vr.dmi index 40659b94f8..1363a19d6d 100644 Binary files a/icons/inventory/uniform/item_vr.dmi and b/icons/inventory/uniform/item_vr.dmi differ diff --git a/icons/inventory/uniform/mob_vr.dmi b/icons/inventory/uniform/mob_vr.dmi index 400e781f9e..c2d8baca44 100644 Binary files a/icons/inventory/uniform/mob_vr.dmi and b/icons/inventory/uniform/mob_vr.dmi differ diff --git a/icons/mob/talk_vr.dmi b/icons/mob/talk_vr.dmi index eafdd6ad9f..28337d0136 100644 Binary files a/icons/mob/talk_vr.dmi and b/icons/mob/talk_vr.dmi differ diff --git a/icons/obj/food_vr.dmi b/icons/obj/food_vr.dmi index 6dc23e9275..35ecb88dcb 100644 Binary files a/icons/obj/food_vr.dmi and b/icons/obj/food_vr.dmi differ diff --git a/icons/obj/trash_vr.dmi b/icons/obj/trash_vr.dmi index 740fd0abc6..cf0cdbd120 100644 Binary files a/icons/obj/trash_vr.dmi and b/icons/obj/trash_vr.dmi differ diff --git a/maps/runtime_station.dm b/maps/runtime_station.dm new file mode 100644 index 0000000000..9858734567 --- /dev/null +++ b/maps/runtime_station.dm @@ -0,0 +1,16 @@ +//Toggle this file if you want to compile and run an instance quicker for faster testing of non-map related things + +#if !defined(USING_MAP_DATUM) + #include "runtime_station_defines.dm" + #include "runtime_station.dmm" +//Include these if you need them +// #include "southern_cross/southern_cross_jobs.dm" +// #include "southern_cross/loadout/loadout_accessories.dm" +// #include "southern_cross/datums/supplypacks/munitions.dm" +// #include "southern_cross/job/outfits.dm" + #define USING_MAP_DATUM /datum/map/runtime_station +#elif !defined(MAP_OVERRIDE) + + #warn A map has already been included, ignoring Southern Cross + +#endif diff --git a/modular_chomp/maps/runtime/runtime_station.dmm b/maps/runtime_station.dmm similarity index 90% rename from modular_chomp/maps/runtime/runtime_station.dmm rename to maps/runtime_station.dmm index 0bac9fab12..c9ac0eefe0 100644 --- a/modular_chomp/maps/runtime/runtime_station.dmm +++ b/maps/runtime_station.dmm @@ -9,7 +9,7 @@ "aw" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "aA" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21,27 +21,25 @@ "aD" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "aP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/structure/fans/tiny, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/cafeteria) "aW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) +"bj" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/bar) "bA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -58,7 +56,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "bK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/wingrille_spawn/reinforced, @@ -74,7 +72,7 @@ opacity = 1 }, /turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "cg" = ( /obj/structure/closet/gmcloset, /obj/item/glass_jar, @@ -92,7 +90,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "ch" = ( /obj/structure/closet/crate, /obj/random/maintenance/cargo, @@ -101,18 +99,18 @@ /obj/random/maintenance/clean, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "cu" = ( /obj/machinery/gibber, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "cC" = ( /obj/machinery/appliance/cooker/grill, /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "cT" = ( /obj/structure/cable/green{ d1 = 1; @@ -125,7 +123,7 @@ /obj/structure/catwalk, /obj/random/junk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "dt" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -146,7 +144,7 @@ }, /obj/item/weapon/reagent_containers/food/condiment/enzyme, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "dw" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -156,11 +154,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "dT" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "ef" = ( /obj/structure/table/marble, /obj/machinery/cash_register/civilian{ @@ -176,7 +174,7 @@ }, /obj/item/toy/xmastree, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "en" = ( /obj/structure/cable/green{ d1 = 1; @@ -226,7 +224,7 @@ name = "Bar Shutters" }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "fo" = ( /obj/item/weapon/stool/padded, /obj/effect/landmark/start{ @@ -248,11 +246,11 @@ /obj/item/weapon/material/knife/butch, /obj/item/weapon/material/kitchen/rollingpin, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "fJ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "fZ" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -265,7 +263,7 @@ name = "Kitchen Shutters" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "gh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -277,7 +275,7 @@ dir = 4 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "gQ" = ( /obj/machinery/vending/cigarette{ dir = 1 @@ -290,7 +288,7 @@ "gX" = ( /obj/machinery/media/jukebox, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "hp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -335,7 +333,7 @@ /area/crew_quarters/cafeteria) "hO" = ( /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "hR" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -344,7 +342,7 @@ name = "Botanist" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "il" = ( /obj/machinery/light/small{ dir = 4 @@ -361,7 +359,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "ix" = ( /obj/effect/landmark{ name = "JoinLateCryo" @@ -376,7 +374,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "iQ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -387,7 +385,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/fans/tiny, /turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "jg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -415,7 +413,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "jB" = ( /obj/structure/bed/chair/wood, /obj/effect/landmark/start{ @@ -427,7 +425,7 @@ /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "kg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -468,7 +466,7 @@ req_access = list(28) }, /turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "lo" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -480,7 +478,7 @@ }, /obj/structure/closet/secure_closet/freezer/fridge, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "lF" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -488,7 +486,7 @@ name = "Chaplain" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "lQ" = ( /obj/item/weapon/stool/padded, /obj/structure/disposalpipe/segment, @@ -496,7 +494,7 @@ name = "Bartender" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "nh" = ( /obj/machinery/vending/coffee{ dir = 1 @@ -509,6 +507,9 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) +"oc" = ( +/turf/simulated/wall, +/area/crew_quarters/kitchen) "os" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -524,7 +525,7 @@ light_color = "#D7D7D7" }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "oM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -542,7 +543,7 @@ dir = 1 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "oT" = ( /obj/item/weapon/card/id/gold/captain/spare, /turf/simulated/floor/wood, @@ -567,7 +568,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "pm" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -580,11 +581,11 @@ name = "Barista" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "pu" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "pw" = ( /obj/structure/table/woodentable, /obj/machinery/reagentgrinder, @@ -592,13 +593,13 @@ /obj/item/weapon/packageWrap, /obj/structure/cable/green, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "pA" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/structure/cable, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "qj" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -607,7 +608,7 @@ pixel_x = -28 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "qC" = ( /obj/effect/landmark{ name = "JoinLateGateway" @@ -647,11 +648,11 @@ }, /obj/effect/landmark/start, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "rS" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "sa" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -660,7 +661,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "ss" = ( /turf/simulated/wall, /area/crew_quarters/cafeteria) @@ -684,7 +685,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "sC" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start{ @@ -721,7 +722,7 @@ /area/crew_quarters/cafeteria) "uv" = ( /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "vm" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -747,7 +748,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "vM" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -756,7 +757,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "wc" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -772,7 +773,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "wy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -789,7 +790,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "wD" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -800,7 +801,7 @@ /obj/structure/table/marble, /obj/item/weapon/book/manual/chef_recipes, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "wW" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -827,14 +828,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "xg" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "xh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -854,7 +855,7 @@ dir = 1 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "xM" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -868,7 +869,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "ya" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -881,14 +882,14 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "ys" = ( /obj/machinery/appliance/cooker/fryer, /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "yC" = ( /obj/structure/table/woodentable, /obj/item/weapon/gun/projectile/shotgun/doublebarrel, @@ -903,7 +904,7 @@ wires = 7 }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "yJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -916,7 +917,7 @@ req_access = list(25) }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "yT" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -926,11 +927,6 @@ /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "yW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, @@ -948,7 +944,7 @@ dir = 1 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "zh" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -959,7 +955,7 @@ location = "Bar" }, /turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "zu" = ( /obj/structure/sink{ dir = 8; @@ -974,13 +970,13 @@ pixel_y = 4 }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "zP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "zQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -998,7 +994,7 @@ dir = 4 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "zS" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1010,21 +1006,22 @@ name = "Kitchen Shutters" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "zY" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, +/mob/living/carbon/human/monkey/punpun, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Ai" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Am" = ( /obj/structure/flora/pottedplant/bamboo{ pixel_y = 10 @@ -1046,14 +1043,13 @@ name = "light switch "; pixel_x = 38 }, -/obj/machinery/power/fractal_reactor/fluff/smes, /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "AM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "AT" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -1063,7 +1059,7 @@ "AU" = ( /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "AX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -1072,7 +1068,7 @@ dir = 5 }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Bj" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ @@ -1082,7 +1078,7 @@ name = "Bar Shutters" }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "BK" = ( /obj/structure/flora/pottedplant, /obj/machinery/light, @@ -1102,7 +1098,7 @@ pixel_y = 17 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Cq" = ( /obj/machinery/camera/network/civilian{ c_tag = "CIV - Cafeteria Starboard"; @@ -1146,7 +1142,7 @@ name = "Atmospheric Technician" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "CZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1178,7 +1174,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Dc" = ( /obj/structure/table/marble, /obj/machinery/cash_register/civilian{ @@ -1199,7 +1195,7 @@ dir = 4 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "DR" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1213,7 +1209,7 @@ pixel_x = -5 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "DV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -1222,7 +1218,10 @@ dir = 10 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) +"Eo" = ( +/turf/space, +/area/maintenance/bar) "Ev" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1230,7 +1229,7 @@ /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "EG" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1253,7 +1252,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Fo" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1269,7 +1268,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Fq" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/glass/rag, @@ -1285,14 +1284,14 @@ pixel_x = 22 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Fy" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "FM" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1316,7 +1315,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "FV" = ( /obj/structure/cable/green{ d1 = 1; @@ -1337,7 +1336,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Ga" = ( /obj/effect/landmark/start{ name = "Head of Security" @@ -1365,7 +1364,7 @@ /obj/item/weapon/packageWrap, /obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Gf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -1376,7 +1375,13 @@ req_access = list(25) }, /turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) +"Gl" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/kitchen) +"Gt" = ( +/turf/simulated/wall, +/area/maintenance/bar) "GA" = ( /obj/structure/table/marble, /obj/item/weapon/material/ashtray/glass, @@ -1392,7 +1397,7 @@ icon_state = "1-2" }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "GJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -1406,7 +1411,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "Hs" = ( /obj/machinery/appliance/mixer/cereal, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -1416,7 +1421,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Hz" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1431,7 +1436,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "HP" = ( /obj/machinery/appliance/cooker/oven, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -1439,11 +1444,11 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "HY" = ( /obj/structure/closet/secure_closet/bar, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Iv" = ( /obj/structure/kitchenspike, /obj/machinery/alarm/freezer{ @@ -1451,7 +1456,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "II" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -1466,7 +1471,7 @@ dir = 8 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "IZ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1481,7 +1486,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Je" = ( /obj/effect/landmark{ name = "Observer-Start" @@ -1490,6 +1495,8 @@ /area/crew_quarters/cafeteria) "Jh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/power/debug_items/infinite_generator, +/obj/structure/cable/green, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/cafeteria) "KC" = ( @@ -1497,7 +1504,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "KF" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -1507,7 +1514,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "KS" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -1523,7 +1530,7 @@ icon_state = "1-2" }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "KY" = ( /obj/machinery/button/remote/blast_door{ id = "bar"; @@ -1550,7 +1557,7 @@ pixel_y = 17 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Lr" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1561,7 +1568,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Lx" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_alc/full, @@ -1569,7 +1576,7 @@ pixel_y = 32 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "LG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/fans/tiny, @@ -1587,7 +1594,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "LW" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1600,12 +1607,12 @@ }, /obj/structure/closet/secure_closet/freezer/meat, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "MI" = ( /obj/structure/catwalk, /obj/random/plushielarge, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "ML" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full, @@ -1613,7 +1620,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "MM" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 4; @@ -1648,11 +1655,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Nl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Np" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -1665,7 +1672,7 @@ /obj/random/maintenance/cargo, /obj/item/weapon/material/knife, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "NI" = ( /obj/item/weapon/stool/padded, /obj/effect/landmark/start{ @@ -1678,18 +1685,18 @@ name = "Chef" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Of" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Og" = ( /obj/machinery/icecream_vat, /obj/machinery/firealarm{ pixel_y = 24 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Oj" = ( /obj/structure/cable/green{ d1 = 1; @@ -1709,7 +1716,7 @@ dir = 8 }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Ov" = ( /obj/structure/cable/green{ d1 = 1; @@ -1740,12 +1747,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) +"OP" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"OR" = ( +/turf/simulated/wall, +/area/crew_quarters/bar) "OZ" = ( /obj/machinery/light/small, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "Pj" = ( /obj/effect/landmark/start{ name = "Geneticist" @@ -1761,7 +1774,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/toy/xmastree, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "PA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1775,7 +1788,10 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) +"PD" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/bar) "PY" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 @@ -1784,7 +1800,7 @@ dir = 9 }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Qk" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -1820,7 +1836,7 @@ light_color = "#D7D7D7" }, /turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Rs" = ( /obj/machinery/computer/guestpass{ dir = 4; @@ -1834,20 +1850,25 @@ start_pressure = 4559.63 }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "So" = ( /obj/machinery/atmospherics/valve, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) +"SF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) "SG" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "ST" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Tn" = ( /obj/structure/table/woodentable, /obj/item/device/radio/subspace{ @@ -1871,7 +1892,7 @@ }, /obj/structure/closet/secure_closet/freezer/kitchen, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "TB" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -1888,7 +1909,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "TD" = ( /obj/structure/cable/green{ d1 = 4; @@ -1919,7 +1940,7 @@ pixel_y = 30 }, /turf/simulated/floor/lino, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "TZ" = ( /obj/machinery/appliance/mixer/candy, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -1930,14 +1951,14 @@ pixel_x = -24 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Ux" = ( /obj/item/weapon/stool/padded, /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "Vc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/grey, @@ -1960,7 +1981,7 @@ }, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "Vx" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -1999,7 +2020,7 @@ req_access = list(25) }, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "XL" = ( /obj/structure/cable/green{ d1 = 1; @@ -2025,7 +2046,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "XU" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; @@ -2043,7 +2064,7 @@ }, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Ya" = ( /obj/machinery/camera/network/civilian{ c_tag = "CIV - Kitchen Cold Room"; @@ -2063,7 +2084,7 @@ /obj/item/clothing/gloves/sterile/latex, /obj/item/clothing/gloves/sterile/latex, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Yo" = ( /obj/effect/landmark{ name = "JoinLateCyborg" @@ -2078,7 +2099,7 @@ dir = 4 }, /turf/simulated/floor/tiled/freezer, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "YA" = ( /obj/structure/cable/green{ d1 = 2; @@ -2098,7 +2119,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/crew_quarters/cafeteria) +/area/crew_quarters/kitchen) "Zl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2117,7 +2138,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/cafeteria) +/area/crew_quarters/bar) "ZA" = ( /turf/space, /area/space) @@ -2141,7 +2162,7 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/bar) "ZU" = ( /obj/structure/table/marble, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -2161,80 +2182,80 @@ /area/crew_quarters/cafeteria) (1,1,1) = {" -es -es -es -es -es -es -es -es -es -es -es -es -es -es -es -es -es -es +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD +PD es es "} (2,1,1) = {" -es +PD bA aD -ss -ss +Gt +oc os -ss -ss +oc +oc fJ pi ZR So il RU -ss -ZA -ZA +Gt +Eo +Eo ZA ZA es "} (3,1,1) = {" -es +PD PA SG -ss +Gt aw oM ST -ss -ss -ss -ss -ss -ss -ss -ss -ss -ss +oc +oc +oc +oc +oc +oc +oc +oc +oc +oc ZA ZA es "} (4,1,1) = {" -es +PD jj xg -ss +Gt Og gh Iv -ss +oc FY TZ Hs @@ -2243,20 +2264,20 @@ Hz DR qj ys -bK +SF ZA ZA es "} (5,1,1) = {" -es +PD Vf AU -ss +Gt sa Dj Ya -ss +oc Cb Ai vM @@ -2265,16 +2286,16 @@ Ai iE Ai cC -bK +SF ZA ZA es "} (6,1,1) = {" -es +PD wy Np -ss +Gt cu LV sB @@ -2287,20 +2308,20 @@ KF fE Ai HP -bK +SF ZA ZA es "} (7,1,1) = {" -es +PD PA hO cb kQ Yw Of -ss +oc LW vF Gd @@ -2309,20 +2330,20 @@ ya wD Ai Tx -ss +oc ZA ZA es "} (8,1,1) = {" -es +PD GJ -ss -ss -ss -ss -ss -ss +Gt +OR +OR +OR +OR +OR lo TB xM @@ -2331,19 +2352,19 @@ Ai xd Ai Lr -es +Gl ZA ZA es "} (9,1,1) = {" -es +PD hO zh Gf zu Ou -ss +OR AM Zi Db @@ -2359,35 +2380,35 @@ ZA es "} (10,1,1) = {" -es +PD hO Xm PY -kA +OP zY -ss -ss +OR +OR fZ OH zS zS fZ -ss +oc XU -bK -ss +SF +oc ZA ZA es "} (11,1,1) = {" -es +PD aD -ss +Gt cg AX yC -ss +OR gX ZQ ZU @@ -2403,13 +2424,13 @@ LG es "} (12,1,1) = {" -es +PD dT -ss +Gt HY MR pw -ss +OR qS fo eE @@ -2425,13 +2446,13 @@ Vx es "} (13,1,1) = {" -es +PD pA -ss -ss +Gt +OR Zl -ss -ss +OR +OR CU Oj kg @@ -2447,9 +2468,9 @@ Jh es "} (14,1,1) = {" -es +PD MI -ss +Gt KY xh KS @@ -2469,9 +2490,9 @@ yJ es "} (15,1,1) = {" -es +PD pu -ss +Gt TL zR Nl @@ -2491,9 +2512,9 @@ oW es "} (16,1,1) = {" -es +PD cY -ss +Gt rS DV KC @@ -2513,9 +2534,9 @@ ZA es "} (17,1,1) = {" -es +PD dT -ss +Gt zf zP uv @@ -2535,9 +2556,9 @@ ZA es "} (18,1,1) = {" -es +PD OZ -ss +Gt Lx IP uv @@ -2557,9 +2578,9 @@ ZA es "} (19,1,1) = {" -es +PD ch -ss +Gt jX Fq Fy @@ -2579,14 +2600,14 @@ ZA es "} (20,1,1) = {" -es -es -es -es -es -es -es -es +PD +PD +PD +bj +bj +bj +bj +bj es es es diff --git a/modular_chomp/maps/runtime/runtime_station_defines.dm b/maps/runtime_station_defines.dm similarity index 100% rename from modular_chomp/maps/runtime/runtime_station_defines.dm rename to maps/runtime_station_defines.dm diff --git a/maps/southern_cross/overmap/sectors.dm b/maps/southern_cross/overmap/sectors.dm index 0faec43386..a87483d0b9 100644 --- a/maps/southern_cross/overmap/sectors.dm +++ b/maps/southern_cross/overmap/sectors.dm @@ -8,6 +8,9 @@ [b]Notice[/b]: The Vir government welcomes you to this world."} map_z = list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD, Z_LEVEL_SURFACE_SKYLANDS) + + map_z = list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD, Z_LEVEL_SURFACE_SKYLANDS, Z_LEVEL_SURFACE_VALLEY) + in_space = 0 start_x = 10 start_y = 10 @@ -49,7 +52,9 @@ start_x = 10 start_y = 10 known = 1 // lets Sectors appear on shuttle navigation for easy finding. - extra_z_levels = list(Z_LEVEL_TRANSIT, Z_LEVEL_MISC,Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD, Z_LEVEL_SURFACE_SKYLANDS) //This should allow for comms to reach people from the station. Basically this defines all the areas of Southern Cross and the Sif local system on the overmap. + + extra_z_levels = list(Z_LEVEL_TRANSIT, Z_LEVEL_MISC,Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD, Z_LEVEL_SURFACE_SKYLANDS, Z_LEVEL_SURFACE_VALLEY) //This should allow for comms to reach people from the station. Basically this defines all the areas of Southern Cross and the Sif local system on the overmap. + initial_generic_waypoints = list( "d1_aux_a", "d1_aux_b", diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm index b6f09eb64b..ca73a93471 100644 --- a/maps/southern_cross/southern_cross-1.dmm +++ b/maps/southern_cross/southern_cross-1.dmm @@ -2975,9 +2975,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; +/obj/structure/closet/walllocker/medical{ pixel_x = -28 }, /obj/item/device/radio/intercom{ @@ -3048,9 +3046,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; +/obj/structure/closet/walllocker/medical{ pixel_x = -28 }, /obj/item/device/radio/intercom{ @@ -9417,8 +9413,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = -30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod3/station, @@ -18030,9 +18025,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; +/obj/structure/closet/walllocker/medical{ pixel_x = -28 }, /turf/simulated/shuttle/floor/white, @@ -18614,8 +18607,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = 30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod5/station, @@ -23570,9 +23562,7 @@ /area/maintenance/firstdeck/forestarboard) "poW" = ( /obj/structure/bed/chair, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; +/obj/structure/closet/walllocker/medical{ pixel_x = 28 }, /turf/simulated/shuttle/floor/white, @@ -27873,8 +27863,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = -30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod4/station, @@ -28347,8 +28336,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = 30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod6/station, diff --git a/maps/southern_cross/southern_cross-10.dmm b/maps/southern_cross/southern_cross-10.dmm index 6a3e0e0e15..cc2dd7b774 100644 --- a/maps/southern_cross/southern_cross-10.dmm +++ b/maps/southern_cross/southern_cross-10.dmm @@ -32,9 +32,6 @@ /obj/effect/zone_divider, /turf/simulated/mineral/sif, /area/surface/outside/wilderness/mountains) -"al" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/river/svartan) "am" = ( /turf/simulated/floor/water, /area/surface/outside/river/svartan) @@ -553,6 +550,9 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) +"kh" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/normal) "kZ" = ( /obj/effect/zone_divider, /obj/effect/zone_divider, @@ -630,6 +630,10 @@ /obj/effect/zone_divider, /turf/simulated/floor/outdoors/dirt/sif/planetuse, /area/surface/outside/path/wilderness) +"sC" = ( +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) "td" = ( /obj/structure/curtain/medical{ name = "medical curtain" @@ -693,6 +697,12 @@ /obj/effect/zone_divider, /turf/simulated/floor/outdoors/dirt, /area/surface/outside/path/wilderness) +"xx" = ( +/obj/effect/map_effect/portal/master/side_a/wilderness_to_valley{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outside/river/svartan) "xA" = ( /obj/machinery/light/bigfloorlamp, /turf/simulated/floor/outdoors/grass/sif/planetuse, @@ -714,10 +724,22 @@ }, /turf/simulated/floor/outdoors/dirt/sif/planetuse, /area/surface/outpost/shelter/exterior) +"As" = ( +/turf/simulated/floor/wood, +/area/surface/outside/river/svartan) "AB" = ( /obj/effect/zone_divider, /turf/simulated/floor/outdoors/rocks/sif/planetuse, /area/surface/outside/wilderness/normal) +"AX" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) "AZ" = ( /obj/structure/simple_door/sifwood, /obj/machinery/door/blast/shutters{ @@ -728,6 +750,12 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) +"BF" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outside/river/svartan) "Dk" = ( /obj/structure/sign/department/medbay{ name = "FIRST AID" @@ -746,6 +774,9 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/shelter) +"IZ" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/normal) "Jk" = ( /obj/item/device/geiger/wall/north, /obj/structure/reagent_dispensers/watertank, @@ -773,6 +804,20 @@ /obj/effect/zone_divider, /turf/simulated/floor/water/deep, /area/surface/outside/river/svartan) +"LI" = ( +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"Mg" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) "Mk" = ( /obj/structure/table/rack, /obj/item/weapon/circuitboard/machine/rtg/advanced, @@ -816,6 +861,12 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/shelter) +"Qz" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) "Rc" = ( /obj/machinery/light/small{ dir = 4 @@ -907,6 +958,9 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/shelter) +"XD" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/deep) "Yq" = ( /obj/machinery/power/thermoregulator/southerncross{ pixel_x = 1; @@ -946,6 +1000,9 @@ "YL" = ( /turf/simulated/mineral/sif, /area/surface/outpost/wall/checkpoint) +"Za" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/deep) "ZG" = ( /obj/structure/showcase/sign{ desc = "This appears to be a sign warning people that the other side is extremely hazardous."; @@ -1087,16 +1144,16 @@ ab ab ad ab -ab -ab -al -al -al -al -al -al -ab -ab +XD +XD +BF +BF +AX +Mg +BF +xx +kh +kh ab ab ab @@ -1345,16 +1402,16 @@ ac ac ak ac -ac -ac -am -am -an -an -am -am -ac -ac +Za +Za +As +As +Qz +sC +As +As +IZ +IZ ac ac ac @@ -1602,19 +1659,19 @@ ac ac ac ak -ac -ac -ac -am -am -an -an -am -am -ac -ac -ac -ac +ah +ah +ah +As +As +Qz +sC +As +As +ap +ap +ap +ap ac ac ac @@ -1861,18 +1918,18 @@ ah ah aw ah -ac ah -am -am -an -an -am -am +ah +As +As +Qz +sC +As +As +ap +ap +ap ap -ac -ac -ac ac ac ac @@ -2121,12 +2178,12 @@ aw ah ah ah -am -am +LI +LI an an -am -am +LI +LI am ap ap diff --git a/maps/southern_cross/southern_cross-13.dmm b/maps/southern_cross/southern_cross-13.dmm new file mode 100644 index 0000000000..f3b597b513 --- /dev/null +++ b/maps/southern_cross/southern_cross-13.dmm @@ -0,0 +1,66716 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/walls) +"ai" = ( +/obj/structure/catwalk, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"aC" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"bp" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/valley/inner) +"bB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/unfinished) +"bH" = ( +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"cv" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"cW" = ( +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"cX" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/valley/river) +"dd" = ( +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"eA" = ( +/obj/structure/catwalk, +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"eI" = ( +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/unfinished) +"fe" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/unfinished) +"fo" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/item/weapon/cell/super, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"fD" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"gw" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/walls) +"gS" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"hx" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"hC" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/valley/walls) +"hU" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"ic" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"ie" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/valley/river) +"iQ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"ja" = ( +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"jc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"kf" = ( +/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outside/valley/river) +"kI" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/inner) +"kL" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"kW" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep{ + outdoors = 0 + }, +/area/surface/outside/valley/river) +"lk" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"lr" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"lt" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/valley/inner) +"lw" = ( +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"lD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"lR" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"nY" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/valley/inner) +"oh" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/piratedouble, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"ot" = ( +/obj/item/frame/apc, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"oI" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"ph" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"pt" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"py" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"pI" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"qe" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/valley/inner) +"qQ" = ( +/obj/effect/zone_divider, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"rK" = ( +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"rU" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"sf" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"sX" = ( +/obj/structure/catwalk, +/obj/item/weapon/storage/backpack/dufflebag/syndie, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"tv" = ( +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"tP" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"ul" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"uF" = ( +/obj/structure/railing, +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"vf" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"wb" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"we" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/valley/walls) +"wq" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"xd" = ( +/obj/effect/zone_divider, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"xh" = ( +/obj/effect/zone_divider, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"xB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"xE" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"xQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/unfinished) +"xR" = ( +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/unfinished) +"yv" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"yT" = ( +/obj/effect/zone_divider, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"ze" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"zD" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"zF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/unfinished) +"zT" = ( +/obj/machinery/telecomms/relay/preset/southerncross/valley, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"Ad" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/valley/inner) +"AG" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/inner) +"AO" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"Bt" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/unfinished) +"Bv" = ( +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"BS" = ( +/turf/simulated/floor/water/deep{ + outdoors = 0 + }, +/area/surface/outside/valley/river) +"Cg" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Ck" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"CH" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"DA" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"DE" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/energy/sec, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"DP" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/clowndouble, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"Ee" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"EA" = ( +/turf/simulated/floor/wood, +/area/surface/outside/valley/river) +"ES" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"Fh" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/unfinished) +"Fp" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/inner) +"FG" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/valley/edge) +"FS" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/random/firstaid, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Gc" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/valley/river) +"GA" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/solidrock, +/area/surface/outside/valley/edge) +"GF" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/optable, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"GI" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rainbow, +/obj/item/toy/plushie/slimeplushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"GT" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/unfinished) +"GW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"HM" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/valley/inner) +"HP" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"Ip" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"IN" = ( +/obj/effect/zone_divider, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/valley/river) +"Jb" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Kv" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/valley/inner) +"KN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/mime, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"Lr" = ( +/obj/item/weapon/cell/super/empty, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"LA" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"LB" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"NV" = ( +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"NY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/red, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"Oq" = ( +/mob/living/simple_mob/mechanical/combat_drone/event, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"OY" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/energy, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Pk" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"Qy" = ( +/obj/structure/table/bench/wooden, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/surface/outpost/unfinished) +"QS" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Rk" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/valley/inner) +"Rl" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Rn" = ( +/obj/item/device/multitool, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"Rs" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/walls) +"RW" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/valley/edge) +"Sp" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/valley/walls) +"Tx" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/valley/river) +"TD" = ( +/turf/simulated/floor/water/deep, +/area/surface/outpost/unfinished) +"TI" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/valley/edge) +"TR" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"TX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"Uf" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) +"UG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/unfinished) +"WK" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outside/valley/river) +"WT" = ( +/turf/simulated/wall/wood, +/area/surface/outside/valley/inner) +"Yl" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/valley/inner) +"YN" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/valley/walls) +"YV" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/valley/river) +"Zd" = ( +/turf/simulated/wall, +/area/surface/outpost/unfinished) +"ZW" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled, +/area/surface/outpost/unfinished) + +(1,1,1) = {" +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +"} +(2,1,1) = {" +RW +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Tx +Tx +kW +BS +BS +Tx +Tx +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +rK +rK +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Tx +Tx +BS +BS +BS +Tx +Tx +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +RW +"} +(3,1,1) = {" +RW +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Tx +Tx +kW +BS +BS +Tx +Tx +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +rK +rK +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Tx +Tx +BS +BS +BS +Tx +Tx +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +RW +"} +(4,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +kW +BS +BS +Tx +Tx +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +rK +rK +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(5,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +kW +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Rk +rK +rK +rU +vf +Fh +TD +TD +Fh +rU +rU +rU +rK +rK +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(6,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +kW +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +DE +iQ +iQ +pt +pt +Zd +Zd +oh +Qy +NV +NV +NV +Qy +ul +Fh +Rk +rK +rK +rU +vf +TD +TD +TD +TD +rU +rU +rU +rK +rK +Fh +xB +Qy +NV +NV +NV +Qy +DP +Zd +GF +LA +QS +LA +LA +lR +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(7,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Gc +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +iQ +iQ +iQ +iQ +iQ +wq +Zd +NV +GT +GT +xQ +GT +GT +NV +Fh +Rk +rK +rK +rU +vf +TD +TD +TD +TD +rU +rU +rU +rK +rK +Fh +NV +fe +fe +bB +fe +fe +NV +Zd +yv +lR +Zd +FS +LA +LB +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(8,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Gc +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +zD +iQ +gS +iQ +tP +Uf +Zd +NV +GT +jc +lk +lD +eI +NV +Fh +Rk +rK +rK +rU +vf +Fh +TD +TD +Fh +rU +rU +rU +rK +rK +Fh +NV +fe +jc +lk +lD +xR +NV +Zd +Zd +Zd +Zd +FS +LA +LB +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(9,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Gc +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +iQ +iQ +iQ +iQ +iQ +Uf +Zd +NV +GT +GT +zF +GT +GT +NV +Fh +Rk +rK +rK +rU +vf +bH +HP +HP +hx +rU +rU +rU +rK +rK +Fh +NV +fe +fe +Bt +fe +fe +NV +Zd +py +LA +Cg +LA +aC +LA +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(10,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Gc +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +OY +iQ +iQ +pt +pt +Zd +Zd +KN +Qy +NV +Qy +GI +NV +NV +Fh +Rk +rK +rK +rU +vf +bH +HP +HP +hx +rU +rU +rU +rK +rK +Fh +NV +NV +NY +Qy +NV +Qy +AO +Zd +wb +lR +Cg +lR +LA +LA +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(11,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Gc +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Fh +Zd +Jb +Zd +Zd +ze +Zd +Zd +Zd +Zd +Zd +Zd +Zd +ic +Zd +Fh +bp +pI +pI +ES +xh +oI +HP +HP +cv +ES +ES +ES +pI +pI +Fh +Zd +ic +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +ic +Zd +Fh +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(12,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Gc +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Fh +TX +TX +TX +TX +TX +TX +TX +Oq +TX +TX +TX +TX +TX +TX +Fh +HP +HP +HP +HP +qQ +HP +ai +ai +HP +HP +HP +HP +HP +HP +Fh +TX +TX +lR +lR +lR +lR +lR +lR +lR +lw +TX +TX +TX +TX +Fh +HM +HM +HM +HM +HM +HM +Ad +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(13,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +Gc +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +HM +HM +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Fh +lR +TX +TX +TX +TX +TX +lR +lR +lR +lR +lR +TX +TX +TX +TX +HP +eA +HP +HP +qQ +HP +sX +HP +HP +HP +HP +eA +HP +HP +Jb +TX +TX +TX +lR +Bv +lR +lR +TX +TX +TX +TX +TX +TX +TX +lr +HM +HM +HM +HM +HM +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(14,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +Rs +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Pk +cW +lR +TX +TX +TX +lR +lR +lR +cW +lR +lR +lR +TX +TX +Fh +HP +HP +HP +HP +qQ +HP +HP +HP +HP +HP +HP +HP +HP +HP +Fh +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +lR +lR +HM +HM +HM +HM +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(15,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +Pk +lR +lR +TX +Zd +Zd +Zd +ze +Zd +Zd +Zd +lR +Zd +Jb +Zd +Fh +dd +dd +tv +tv +IN +tv +tv +tv +tv +tv +tv +tv +dd +dd +Fh +Zd +ic +Zd +Zd +Zd +ze +Zd +ze +ze +Zd +Zd +TX +TX +lR +lR +HM +HM +HM +HM +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(16,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +Fh +lR +Bv +TX +Zd +lR +lR +lR +cW +lR +lR +fD +hU +hU +xE +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +TR +TR +fo +TR +Rl +TR +TR +TR +TR +TR +Zd +TX +Bv +lR +Pk +HM +HM +HM +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(17,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +Fh +lR +TX +TX +Zd +lR +lR +lR +lR +lR +lR +Ee +hU +hU +ZW +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +TR +Rl +TR +TR +lR +lR +lR +TR +Rl +TR +Zd +TX +lR +lR +Pk +HM +HM +HM +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(18,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +Rs +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +Fh +TX +TX +TX +Zd +lR +lR +Lr +lR +lR +lR +lR +lR +hU +xE +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +TR +lR +lR +lR +Bv +TX +lR +lR +TR +ja +Zd +TX +TX +lR +lR +HM +HM +HM +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(19,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +Rs +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +Fh +TX +TX +TX +Zd +lR +lR +lR +lR +lR +Bv +lR +lR +lR +hU +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +Ck +UG +UG +zT +Rn +lR +lR +cW +lR +TR +ze +TX +TX +TX +lR +HM +HM +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(20,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +we +we +we +we +we +Rs +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +Fh +TX +TX +TX +Zd +cW +lR +lR +lR +lR +lR +lR +lR +lR +hU +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +lR +lR +ot +cW +lR +lR +lR +lR +lR +CH +Zd +TX +TX +TX +Fh +HM +HM +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(21,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +Rs +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +Fh +Fh +ic +Pk +Fh +Fh +GW +GW +lR +Ip +Ip +lR +GW +Pk +Fh +Fh +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Fh +lR +GW +lR +Pk +GW +GW +Pk +lR +Ip +Fh +Fh +Fh +ic +Fh +Fh +HM +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(22,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +Rs +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(23,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(24,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(25,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(26,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(27,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +we +Tx +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(28,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Yl +kI +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(29,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(30,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(31,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(32,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +gw +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Gc +Gc +kW +kW +kW +Gc +Gc +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +AG +kI +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +vf +sf +vf +vf +vf +vf +vf +vf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Fp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Gc +Gc +kW +kW +kW +Gc +Gc +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +gw +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(33,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(34,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(35,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(36,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(37,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +Rs +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(38,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(39,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(40,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +YV +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(41,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +rK +YV +Tx +BS +BS +BS +Tx +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(42,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Tx +Tx +BS +BS +BS +Tx +Tx +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +rK +rK +vf +BS +BS +BS +Tx +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +we +we +we +YN +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(43,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +rK +rK +rU +vf +BS +BS +Tx +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +we +YN +YN +YN +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(44,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +rK +rK +rK +rU +rU +vf +Tx +Tx +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(45,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rU +rU +rU +YV +Tx +Tx +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(46,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +rK +YV +Tx +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +we +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(47,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Tx +Tx +BS +BS +BS +BS +Tx +Tx +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +rK +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(48,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +Tx +Tx +BS +BS +Tx +Tx +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +rU +rK +rK +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(49,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +Sp +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +Tx +Tx +Tx +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rU +rU +rU +rU +rK +rK +rK +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(50,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +Sp +we +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +Tx +Tx +Tx +Tx +Tx +Tx +YV +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rU +rU +rU +rU +rK +rK +rK +rK +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(51,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +BS +BS +Tx +Tx +YV +rK +rK +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rK +rK +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(52,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Tx +Tx +BS +BS +BS +BS +BS +BS +BS +BS +vf +rK +rK +rK +rK +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(53,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +Tx +BS +BS +BS +BS +BS +BS +vf +rU +rU +rK +rK +rK +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(54,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +Tx +Tx +Tx +Tx +BS +BS +vf +rU +rU +rU +rU +rK +rK +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(55,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +Tx +Tx +Tx +Tx +YV +rU +rU +rU +rU +rU +rK +rK +rK +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(56,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Rs +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Tx +Tx +YV +rK +rK +rU +rU +rU +rU +rK +rK +rK +rK +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +YV +rK +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(57,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +rK +rK +rK +rK +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +YV +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(58,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +rK +rK +rK +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(59,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +rK +rK +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rK +rU +rU +vf +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(60,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +rK +rK +rK +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +YV +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +WT +lt +lt +WT +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +WT +lt +lt +WT +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rU +rU +rU +rU +vf +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(61,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +YV +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +YV +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(62,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +YV +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rK +rK +YV +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(63,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +HM +rK +rK +rU +rU +rU +rU +rU +rU +rU +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +bH +ie +ie +hx +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +bH +ie +ie +hx +rU +rU +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(64,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +hC +Sp +Rs +Rs +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +kI +kI +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Kv +Kv +YV +YV +YV +YV +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +sf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +yT +cX +cX +xd +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +yT +cX +cX +xd +vf +vf +vf +vf +vf +vf +YV +YV +YV +YV +YV +YV +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +kI +kI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +aa +Sp +Sp +Rs +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(65,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +rK +rK +rK +rK +rK +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +bH +ie +ie +hx +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +rU +bH +ie +ie +hx +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(66,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +rK +rK +YV +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(67,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +rK +YV +rK +rK +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +rK +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +rK +rK +rK +rK +rK +uF +ie +ie +ph +rK +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(68,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +WT +lt +lt +WT +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +WT +lt +lt +WT +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(69,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(70,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(71,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(72,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(73,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(74,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Sp +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(75,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(76,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(77,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(78,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(79,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Rs +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Ad +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(80,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(81,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Rs +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(82,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(83,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(84,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(85,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(86,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(87,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(88,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(89,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +Rs +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(90,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(91,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(92,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(93,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(94,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(95,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(96,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +aa +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Fp +kI +Ad +Ad +Ad +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +vf +sf +vf +vf +vf +vf +vf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Fp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +gw +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(97,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +YN +YN +YN +YN +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(98,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(99,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(100,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(101,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +Sp +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(102,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(103,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(104,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(105,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(106,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(107,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(108,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Rs +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(109,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(110,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(111,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(112,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(113,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(114,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(115,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(116,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(117,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(118,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(119,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(120,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(121,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(122,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(123,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(124,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(125,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(126,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(127,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(128,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +hC +Sp +Sp +Rs +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +kI +kI +Ad +Ad +Ad +Ad +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +kI +kI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +aa +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(129,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(130,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(131,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(132,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(133,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(134,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(135,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(136,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +Rs +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(137,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(138,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(139,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(140,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +YN +Sp +YN +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(141,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +Sp +YN +YN +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(142,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +Rs +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(143,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +Rs +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(144,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +Rs +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(145,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(146,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(147,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(148,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(149,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(150,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(151,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(152,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(153,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(154,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(155,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(156,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Rs +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Rs +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(157,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +Rs +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(158,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(159,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(160,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +hC +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Fp +kI +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +vf +vf +sf +vf +vf +vf +vf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Fp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Rs +Rs +gw +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(161,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(162,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +Rs +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(163,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +Rs +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(164,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +Rs +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(165,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(166,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(167,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(168,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(169,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +Sp +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(170,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(171,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(172,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(173,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(174,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +Sp +YN +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(175,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +YN +YN +YN +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(176,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +YN +YN +YN +we +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(177,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(178,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(179,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(180,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(181,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(182,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(183,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(184,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +Rs +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(185,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +Rs +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(186,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(187,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(188,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(189,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(190,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(191,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(192,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +aa +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +kI +kI +Ad +Ad +Ad +Ad +Ad +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +vf +vf +vf +vf +vf +vf +vf +vf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +Ad +kI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +hC +Sp +Sp +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(193,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +vf +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(194,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +Sp +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +FG +FG +RW +"} +(195,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +Rs +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +FG +FG +RW +"} +(196,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +FG +FG +RW +"} +(197,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +we +we +we +we +we +we +FG +FG +RW +"} +(198,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Rs +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(199,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +Rs +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(200,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(201,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(202,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(203,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(204,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(205,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(206,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(207,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(208,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(209,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +kI +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(210,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +kI +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(211,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(212,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(213,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(214,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +Sp +YN +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(215,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(216,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(217,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +we +we +YN +YN +YN +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(218,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(219,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Ad +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +Sp +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(220,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Sp +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +FG +FG +RW +"} +(221,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +Sp +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(222,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +Sp +YN +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +Rs +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(223,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +Rs +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(224,1,1) = {" +GA +TI +TI +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +hC +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Fp +Ad +Ad +Ad +Ad +Ad +Ad +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +YV +YV +vf +sf +vf +YV +YV +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +nY +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Kv +Ad +Ad +Ad +Ad +Ad +kI +Fp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Rs +Rs +Rs +gw +Rs +Sp +Sp +Sp +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Sp +Rs +Rs +Rs +Rs +TI +TI +GA +"} +(225,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(226,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(227,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +FG +FG +RW +"} +(228,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +vf +rU +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +Rs +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(229,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +we +we +Rs +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(230,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +Rs +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(231,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Sp +we +we +we +we +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +FG +FG +RW +"} +(232,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +kI +Yl +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +vf +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +FG +FG +RW +"} +(233,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +vf +rK +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +FG +FG +RW +"} +(234,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +YV +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(235,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +YV +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Sp +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(236,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +YV +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(237,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +YV +rK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(238,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +we +YN +YN +YN +YN +we +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +YN +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(239,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +we +we +YN +YN +YN +YN +YN +we +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +YN +YN +YN +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(240,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +we +YN +YN +YN +YN +YN +YN +YN +we +we +we +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(241,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(242,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +we +kI +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(243,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +rK +YV +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(244,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rU +rK +rK +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(245,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +rK +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(246,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +YN +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +rK +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(247,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +YN +YN +Ad +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rK +rK +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(248,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +YN +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(249,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +rK +rK +rU +rU +rU +rU +rU +rK +rK +Rk +Rk +Kv +Rk +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(250,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Kv +Rk +HM +HM +HM +HM +HM +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +HM +HM +HM +rK +rK +rU +rU +rU +rU +rK +rK +Rk +Rk +Rk +Kv +Rk +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Rk +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(251,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +rK +rK +rU +rU +rU +rU +rK +rK +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(252,1,1) = {" +RW +FG +FG +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +kI +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +rK +pI +ES +rU +rU +ES +pI +rK +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Ad +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +HM +Yl +kI +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +Rs +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +we +FG +FG +RW +"} +(253,1,1) = {" +RW +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +HM +HM +HM +HM +HM +EA +EA +hx +bH +EA +EA +HM +HM +HM +HM +Ad +HM +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +RW +"} +(254,1,1) = {" +RW +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +HM +HM +HM +HM +EA +EA +hx +bH +EA +EA +HM +HM +HM +HM +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +RW +"} +(255,1,1) = {" +RW +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +Yl +Yl +WK +WK +kL +DA +WK +kf +Yl +Yl +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +TI +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +RW +"} +(256,1,1) = {" +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +qe +qe +EA +EA +hx +bH +EA +EA +qe +qe +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +GA +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +RW +"} diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm index 5eed1b7e59..76fca4d568 100644 --- a/maps/southern_cross/southern_cross-3.dmm +++ b/maps/southern_cross/southern_cross-3.dmm @@ -8983,8 +8983,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = 30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod8/station, @@ -10597,8 +10596,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; +/obj/structure/closet/walllocker/medical{ pixel_y = -30 }, /obj/effect/shuttle_landmark/southern_cross/escape_pod7/station, @@ -21529,20 +21527,6 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"tIP" = ( -/obj/structure/toilet, -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/toilet) "tJG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -64447,7 +64431,7 @@ sJA hCK hCK tpf -tIP +wwo uiC uFP uNJ diff --git a/maps/southern_cross/southern_cross.dm b/maps/southern_cross/southern_cross.dm index d7cc783251..f8ee3aba5f 100644 --- a/maps/southern_cross/southern_cross.dm +++ b/maps/southern_cross/southern_cross.dm @@ -52,6 +52,7 @@ #include "southern_cross-9.dmm" //Transit z8 #include "southern_cross-10.dmm" //Sif wilds z9 #include "southern_cross-12.dmm" //Skylands z10 + #include "southern_cross-13.dmm" //Valley z11 seemingly. For stranger critters and POIs. #endif // #include "southern_cross-casino.dmm" //CHOMPedit: Disabled to save resources and loaded in during events - Jack @@ -59,6 +60,7 @@ //PLANETS, installations, sectors, ships, etc for the overmap, I want put here. Add new comments and includes when you make new planets + #include "overmap/shuttles.dm" //SIF - Planet #include "overmap/sectors.dm" //This is actually the sector for Sif. This also includes places like the main station and the surface //KARA - Planet diff --git a/maps/southern_cross/southern_cross_areas.dm b/maps/southern_cross/southern_cross_areas.dm index 8b7bb0fa1a..b6bb038c29 100644 --- a/maps/southern_cross/southern_cross_areas.dm +++ b/maps/southern_cross/southern_cross_areas.dm @@ -187,6 +187,28 @@ name = "Wilderness Shelter Utility Room" icon_state = "substation" +//Valley stuffs, chomps Edit by Jasper, for wilds but stranger. +/area/surface/outpost/unfinished + name = "Unfinished" + icon_state = "red" + +/area/surface/outside/valley/inner + name = "Valley Inner" + icon_state = "yellow" + +/area/surface/outside/valley/walls + name = "Valley Walls" + icon_state = "yellow" + outdoors = OUTDOORS_NO + +/area/surface/outside/valley/edge + name = "Valley Edge" + icon_state = "yellow" + +/area/surface/outside/valley/river + name = "Valley River" + icon_state = "yellow" + // Main mining outpost /area/surface/outpost/mining_main name = "North Mining Outpost" diff --git a/maps/southern_cross/southern_cross_defines.dm b/maps/southern_cross/southern_cross_defines.dm index f2b56e330c..20d6a30e84 100644 --- a/maps/southern_cross/southern_cross_defines.dm +++ b/maps/southern_cross/southern_cross_defines.dm @@ -17,11 +17,12 @@ but they don't actually change anything about the load order #define Z_LEVEL_TRANSIT 8 #define Z_LEVEL_SURFACE_WILD 9 #define Z_LEVEL_SURFACE_SKYLANDS 10 -#define Z_LEVEL_VR_REALM 11 -#define Z_LEVEL_FUELDEPOT 12 -#define Z_LEVEL_AEROSTAT 13 -#define Z_LEVEL_NS_MINE 14 -#define Z_LEVEL_GATEWAY 15 +#define Z_LEVEL_SURFACE_VALLEY 11 +#define Z_LEVEL_VR_REALM 12 +#define Z_LEVEL_FUELDEPOT 13 +#define Z_LEVEL_AEROSTAT 14 +#define Z_LEVEL_NS_MINE 15 +#define Z_LEVEL_GATEWAY 16 //#define Z_LEVEL_SURFACE_CASINO xx //CHOMPedit - KSC = So there is weather on the casino. //Raz - When you do casino again, launch it in a test server, note what z-level it is on, and then replace xx with that z-level you noted. Revert back to xx and comment out when done. //#define Z_LEVEL_EMPTY_SPACE xx //CHOMPedit: Disabling empty space as now the overmap generates empty space on demand. @@ -167,6 +168,8 @@ but they don't actually change anything about the load order // Wilderness is next. seed_submaps(list(Z_LEVEL_SURFACE_WILD), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness/normal) //CHOMPEdit bumped up from 60 to 150 seed_submaps(list(Z_LEVEL_SURFACE_WILD), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness/deep) //CHOMPEdit bumped up from 60 to 150 + seed_submaps(list(Z_LEVEL_SURFACE_VALLEY), 200, /area/surface/outside/valley/walls, /datum/map_template/surface/valley/walls) + seed_submaps(list(Z_LEVEL_SURFACE_VALLEY), 200, /area/surface/outside/valley/inner, /datum/map_template/surface/valley/inner) // If Space submaps are made, add a line to make them here as well. // Now for the tunnels. (This decides the load order of ore generation and cave generation. Check Random_Map to see % ) @@ -245,6 +248,12 @@ but they don't actually change anything about the load order flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES base_turf = /turf/simulated/open +/datum/map_z_level/southern_cross/surface_valley + z = Z_LEVEL_SURFACE_VALLEY + name = "Valley" + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES + base_turf = /turf/simulated/floor/outdoors/rocks + //CHOMPedit - KSC = So Christmas Casino has weather. /*/datum/map_z_level/southern_cross/surface_casino z = Z_LEVEL_SURFACE_CASINO @@ -304,7 +313,8 @@ but they don't actually change anything about the load order Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD, - Z_LEVEL_SURFACE_SKYLANDS + Z_LEVEL_SURFACE_SKYLANDS, + Z_LEVEL_SURFACE_VALLEY ) //Z_LEVEL_SURFACE_CASINO //CHOMPedit - KSC = So there is weather on the Casino. //Move this into /datum/planet/sif and remember to add a coma for the new entry, for when you need the casino again @@ -371,6 +381,13 @@ but they don't actually change anything about the load order /obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river portal_id = "caves_wilderness-river" +/obj/effect/map_effect/portal/master/side_a/wilderness_to_valley + portal_id = "wilderness_valley" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley + portal_id = "wilderness_valley" + + /* //CHOMPEdit this is very much necessary for us otherwise weather sounds play on other levels /datum/planet/sif diff --git a/maps/southern_cross/southern_cross_presets.dm b/maps/southern_cross/southern_cross_presets.dm index bc9ca0b673..a0d72a7c02 100644 --- a/maps/southern_cross/southern_cross_presets.dm +++ b/maps/southern_cross/southern_cross_presets.dm @@ -77,6 +77,11 @@ var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outp listening_level = Z_LEVEL_SURFACE_SKYLANDS autolinkers = list("sky_relay") +/obj/machinery/telecomms/relay/preset/southerncross/valley + id = "Valley Relay" + listening_level = Z_LEVEL_SURFACE_VALLEY + autolinkers = list("valley_relay") + //Temp Removal TFF 15/2/20 /* /obj/machinery/telecomms/relay/preset/belt_outpost // CHOMPedit: Tcomms relay for Belt Outpost @@ -95,8 +100,8 @@ var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outp id = "Hub" network = "tcommsat" autolinkers = list("hub", - "d1_relay", "d2_relay", "d3_relay", "pnt_relay", "cve_relay", "wld_relay", "tns_relay", "cnt_relay", "explorer", "exp_relay", "sky_relay", - //"belt_relay", // Chompstation edit - adds belt outpost to relays. Temp Removal of Belt Relay TFF 15/2/20, + "d1_relay", "d2_relay", "d3_relay", "pnt_relay", "cve_relay", "wld_relay", "tns_relay", "cnt_relay", "explorer", "exp_relay", "sky_relay", "valley_relay", + //"belt_relay", // Chompstation edit - adds belt outpost to relays. Temp Removal of Belt Relay TFF 15/2/20, Added Valley comn stuff 2/14/2023 "science", "medical", "supply", "service", "common", "command", "engineering", "security", "unused", "hb_relay", "receiverA", "broadcasterA" ) //CHOMPedit: Adds "exp_relay" diff --git a/maps/submaps/surface_submaps/valley/Redshuttledown.dmm b/maps/submaps/surface_submaps/valley/Redshuttledown.dmm new file mode 100644 index 0000000000..606c64c920 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/Redshuttledown.dmm @@ -0,0 +1,2340 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"bm" = ( +/obj/random/landmine, +/turf/template_noop, +/area/submap/redshuttledown) +"bF" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"bU" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun/auto, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"dd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/submap/redshuttledown) +"dG" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"dL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"et" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"eD" = ( +/obj/structure/cliff/automatic, +/turf/template_noop, +/area/submap/redshuttledown) +"fq" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"fB" = ( +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"fV" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"gv" = ( +/obj/structure/cliff/automatic/corner, +/turf/template_noop, +/area/submap/redshuttledown) +"hH" = ( +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"hU" = ( +/obj/structure/table/woodentable, +/obj/item/mecha_parts/part/phazon_head, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"io" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"iw" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/masks, +/obj/effect/floor_decal/corner/green/border{ + dir = 6; + icon_state = "bordercolor" + }, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"ix" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"iF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"jh" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"jq" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"jM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/submap/redshuttledown) +"kj" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"km" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"kx" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"kz" = ( +/obj/machinery/light, +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/suit/space/void/refurb/pilot/talon, +/obj/item/clothing/head/helmet/space/void/refurb/pilot/alt/talon, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"lC" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"lG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"lN" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"lU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"mf" = ( +/obj/structure/table/steel, +/obj/item/stack/cable_coil/alien/blood, +/obj/random/tool/power, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/material/precious, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"mj" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"mp" = ( +/obj/structure/table/steel, +/obj/item/mecha_parts/part/phazon_left_arm, +/obj/item/weapon/circuitboard/mecha/phazon/targeting, +/obj/random/tool, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/material, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"mR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"nk" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"nE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"nF" = ( +/obj/structure/table/steel, +/obj/item/mecha_parts/part/phazon_left_leg, +/obj/item/weapon/circuitboard/mecha/phazon/peripherals, +/obj/random/tool, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/material, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"nG" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space/suppressor, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"nU" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/effect/floor_decal/corner/green/border, +/obj/random/firstaid, +/obj/item/mecha_parts/mecha_equipment/crisis_drone, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"oA" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"oC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"oU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"pi" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/piercing, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"qr" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"qT" = ( +/obj/structure/table/steel, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"rl" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"ss" = ( +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"sS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/mecha_parts/part/phazon_right_arm, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"tn" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/closet/crate, +/obj/random/grenade/box, +/obj/random/grenade/box, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/weapon/rig/merc, +/obj/item/weapon/rig/internalaffairs, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/maintenance/medical, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/random/maintenance/security, +/obj/random/maintenance/cargo, +/obj/random/ammo, +/obj/random/ammo, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"tv" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"tB" = ( +/obj/item/weapon/stool, +/mob/living/simple_mob/humanoid/merc/ranged/sniper, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"tU" = ( +/obj/structure/table/steel, +/obj/item/pizzabox, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"ui" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"uT" = ( +/obj/item/weapon/stool, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"uY" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"vX" = ( +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"wl" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/full, +/obj/item/clothing/suit/space/void/chrono, +/obj/item/clothing/head/helmet/space/void/chrono, +/obj/item/weapon/gun/projectile/revolver/cappeacekeeper, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wo" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 4; + icon_state = "injector0" + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"wp" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wq" = ( +/obj/random/mob/merc/armored, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wz" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/suit/space/void/refurb/officer/talon, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/head/helmet/space/void/refurb/mercenary/talon, +/obj/item/clothing/suit/space/void/refurb/pilot/talon, +/obj/item/clothing/head/helmet/space/void/refurb/pilot/alt/talon, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wN" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper{ + info = "We need to take a short stop. The engine's are in need of minor repairs due to turbulence, should be a week's time. We've got reserve food supplies but pleanty of locale fauna to subsist on too if need be. PCRC is keeping most of there assets near New Reykjavik and locale authorities are more mindful then most to travel in this kind of weather. Our outfit should be at the rendezvous point in less then ten days assuming the upper ecehelon hasn't dropped ties with us yet."; + name = "Operation Progress/M-53" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wV" = ( +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"wX" = ( +/turf/template_noop, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"xl" = ( +/obj/structure/table/steel, +/obj/item/mecha_parts/mecha_equipment/weapon/honker, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"xZ" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"yf" = ( +/obj/item/weapon/stool, +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"yq" = ( +/obj/structure/table/steel, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"yv" = ( +/turf/template_noop, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"za" = ( +/turf/template_noop, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"zc" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"zn" = ( +/obj/machinery/light, +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/material/refined, +/obj/item/weapon/cell/device/weapon/recharge/alien/omni, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"zv" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"zz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"zL" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/piercing, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"zU" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"AD" = ( +/obj/machinery/computer/area_atmos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Bx" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/head/helmet/space/void/chrono, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"BA" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Ci" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/anesthetic, +/obj/effect/floor_decal/corner/green/border, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"Cu" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"Cv" = ( +/turf/template_noop, +/area/submap/redshuttledown) +"Cz" = ( +/obj/machinery/organ_printer/flesh, +/obj/effect/floor_decal/corner/green/border{ + dir = 5; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"CG" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"Do" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Eg" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"EC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"EM" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner/green/border{ + dir = 1; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"Fb" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"FE" = ( +/obj/machinery/door/airlock/security, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Gd" = ( +/obj/effect/floor_decal/corner/grey, +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Gj" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"GI" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"GT" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"GW" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8; + icon_state = "bordercolor" + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/combat, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"GZ" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Hh" = ( +/obj/item/mecha_parts/part/phazon_torso, +/obj/item/mecha_parts/chassis/phazon, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Ii" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"It" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"IY" = ( +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"JH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"JN" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner/green/border{ + dir = 9; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"KF" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_l" + }, +/turf/template_noop, +/area/submap/redshuttledown) +"KT" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"KX" = ( +/turf/template_noop, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"LL" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"LP" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Mn" = ( +/mob/living/simple_mob/mechanical/mecha/combat/phazon, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"MX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Ni" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"Ok" = ( +/obj/structure/table/steel, +/obj/item/stack/cable_coil/alien/blood, +/obj/item/weapon/circuitboard/mecha/phazon/main, +/obj/random/tool/power, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/material/precious, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser/rigged, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Ow" = ( +/obj/item/weapon/stool, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"Oz" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"OO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Py" = ( +/obj/random/mob/merc/armored, +/turf/simulated/floor/tiled/steel_grid, +/area/submap/redshuttledown) +"PX" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Qu" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/full, +/obj/item/clothing/head/helmet/space/void/refurb/marine/talon, +/obj/item/clothing/suit/space/void/refurb/marine/talon, +/obj/item/weapon/gun/energy/x01, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Qw" = ( +/obj/structure/table/steel, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/turf/simulated/floor/tiled/red, +/area/submap/redshuttledown) +"QV" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"Ru" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/submap/redshuttledown) +"RH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/submap/redshuttledown) +"RM" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/gloves/sterile, +/obj/effect/floor_decal/corner/green/border, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"Sz" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/obj/item/weapon/smes_coil/super_capacity, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"SD" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"SF" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "BSD APC"; + pixel_x = -24 + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/mob/living/simple_mob/mechanical/viscerator/piercing, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"SH" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/submap/redshuttledown) +"To" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Uh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Uy" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/template_noop, +/area/submap/redshuttledown) +"Vk" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"VA" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"VF" = ( +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"WT" = ( +/obj/machinery/fusion_fuel_compressor, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"WZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"Xb" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/item/mecha_parts/part/phazon_right_leg, +/turf/simulated/floor/tiled/hydro, +/area/submap/redshuttledown) +"XF" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Ye" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"Yo" = ( +/obj/structure/closet/crate, +/obj/random/projectile, +/obj/random/projectile, +/obj/random/gun/random, +/obj/random/energy/highend, +/obj/random/energy/highend, +/obj/item/weapon/rig/pmc/commander/grey/equipped, +/obj/item/weapon/rig/pmc/commander/grey/equipped, +/obj/item/weapon/card/emag/used, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/maintenance/medical, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/random/maintenance/security, +/obj/random/maintenance/cargo, +/obj/random/ammo, +/obj/random/ammo, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"Yv" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/stack/material/durasteel{ + amount = 5 + }, +/obj/item/stack/material/plasteel{ + amount = 5 + }, +/obj/item/stack/material/mhydrogen{ + amount = 5 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/redshuttledown) +"YR" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/device/perfect_tele, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"YZ" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) +"ZC" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/effect/floor_decal/corner/green/border{ + dir = 10; + icon_state = "bordercolor" + }, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/redshuttledown) +"ZN" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/redshuttledown) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +zv +ui +ui +ui +ui +gv +aa +aa +aa +aa +aa +zv +ui +ui +ui +ui +ui +gv +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +zv +ui +ui +ui +ui +km +Cv +Cv +Cv +Cv +eD +zv +ui +ui +ui +ui +km +Cv +Cv +Cv +Cv +Cv +jq +ui +ui +ui +ui +gv +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +jq +km +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +rl +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Ni +ss +RH +jM +jM +dd +ss +SH +Cv +Cv +Cv +Cv +bm +Cv +Cv +bm +Cv +eD +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +zv +km +Cv +Cv +bm +Cv +Cv +Cv +Cv +Cv +Ni +ss +kx +GI +YR +BA +Bx +AD +ss +SH +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +za +ss +ss +SH +Ni +ss +ss +lG +vX +hH +hH +bU +mR +ss +ss +SH +Ni +ss +ss +KX +Cv +Cv +Cv +jq +gv +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +ss +ss +ss +ss +ss +wl +Ye +iF +iF +Do +PX +iF +iF +Uh +Qu +ss +ss +ss +ss +ss +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +ss +ss +ss +ss +ss +ss +ss +ss +ss +VA +et +ss +ss +ss +ss +ss +ss +ss +ss +ss +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +rl +Cv +bm +Cv +Cv +ss +ss +ss +lU +nE +To +wV +lU +LP +lG +mR +LP +To +wV +lU +nE +To +ss +ss +ss +Cv +bm +Cv +Cv +eD +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +wX +ss +ss +OO +Py +VF +ss +MX +hH +Ow +Eg +hH +dL +ss +OO +Py +VF +ss +ss +yv +Cv +Cv +Cv +Cv +jq +ui +gv +aa +"} +(14,1,1) = {" +aa +zv +km +Cv +Cv +Cv +Cv +Cv +ss +ss +OO +Ru +VF +ss +MX +wq +Gd +hU +wq +dL +ss +OO +Ru +VF +ss +ss +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +"} +(15,1,1) = {" +aa +rl +Cv +Cv +Cv +Cv +bm +Cv +ss +wz +ix +Ru +xZ +ss +Vk +hH +Eg +Ow +hH +kj +ss +Ii +Ru +tv +kz +ss +Cv +bm +Cv +Cv +Cv +bm +Cv +eD +aa +"} +(16,1,1) = {" +aa +rl +bm +Cv +Cv +Cv +Cv +Cv +ss +GZ +iF +Do +fq +ss +ZN +nk +Do +PX +nk +wp +ss +OO +PX +iF +io +ss +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +"} +(17,1,1) = {" +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +ss +ss +ss +OO +VF +ss +ss +ss +FE +FE +ss +ss +ss +OO +VF +ss +ss +ss +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +"} +(18,1,1) = {" +aa +rl +Cv +Cv +Cv +bm +Cv +Cv +Cv +It +It +OO +VF +ss +yq +nE +lG +mR +nE +wN +ss +OO +VF +It +It +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +"} +(19,1,1) = {" +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +It +It +zz +cH +ss +YZ +hH +hH +hH +hH +dG +ss +wP +EC +It +It +Cv +Cv +Cv +Cv +bm +Cv +Cv +Cv +eD +aa +"} +(20,1,1) = {" +aa +rl +Cv +Cv +Cv +Cv +Cv +bm +ss +ss +ss +ss +ss +ss +OO +uT +tU +qr +yf +VF +ss +ss +ss +ss +ss +ss +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +"} +(21,1,1) = {" +aa +rl +Cv +bm +Cv +Cv +Cv +Cv +ss +JN +jh +GW +ZC +ss +oU +Eg +xl +Qw +Eg +lN +ss +SD +IY +IY +nF +ss +Cv +Cv +Cv +Cv +Cv +Cv +Oz +LL +aa +"} +(22,1,1) = {" +aa +Uy +uY +Cv +Cv +Cv +Cv +Cv +ss +QV +fB +fB +Ci +ss +OO +tB +qT +tU +uT +VF +ss +XF +Hh +IY +mf +ss +Cv +bm +Cv +Cv +Cv +Cv +eD +aa +aa +"} +(23,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +bm +Cv +ss +EM +nG +fB +fB +Gj +OO +hH +hH +hH +hH +VF +zc +IY +IY +IY +zn +ss +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +"} +(24,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +ss +JH +fB +fB +RM +ss +sS +iF +Do +PX +iF +oC +ss +IY +Mn +IY +Ok +ss +Cv +Cv +Cv +Cv +bm +Cv +eD +aa +aa +"} +(25,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +ss +Cz +fB +nU +iw +ss +ss +ss +wV +wV +ss +ss +ss +SD +IY +IY +mp +ss +KX +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +"} +(26,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +bm +za +ss +ss +WZ +ss +ss +ss +Yv +pi +Fb +GT +SF +bF +ss +ss +WZ +ss +ss +ss +ss +Cv +bm +Cv +Cv +Oz +LL +aa +aa +"} +(27,1,1) = {" +aa +aa +rl +Cv +Cv +Cv +Cv +ss +ss +CG +zU +Xb +ss +ss +Yo +zL +GT +GT +zL +lC +ss +Sz +zU +oA +ss +ss +ss +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +Uy +uY +Cv +Cv +Cv +ss +ss +ss +ss +ss +ss +ss +tn +zL +Fb +GT +zL +mj +ss +ss +ss +ss +ss +ss +ss +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +Uy +uY +Cv +Cv +ss +ss +ss +ss +Cu +Cv +fV +ss +WT +wo +wo +WT +ss +Cu +Cv +fV +ss +ss +ss +ss +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +Uy +uY +Cv +ss +ss +ss +Cu +Cv +Cv +Cv +fV +KT +KT +KT +KT +Cu +Cv +Cv +Cv +fV +KT +KT +yv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +rl +Cv +wX +KT +KT +Cv +Cv +Cv +Cv +Cv +KF +KF +KF +KF +Cv +Cv +Cv +Cv +Cv +KF +KF +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +rl +Cv +Cv +KF +KF +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +eD +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +rl +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/submaps/surface_submaps/valley/begderg.dmm b/maps/submaps/surface_submaps/valley/begderg.dmm new file mode 100644 index 0000000000..ca7d19a31c --- /dev/null +++ b/maps/submaps/surface_submaps/valley/begderg.dmm @@ -0,0 +1,1533 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"n" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"o" = ( +/obj/item/instrument/violin/golden{ + pixel_x = 7 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"q" = ( +/obj/item/weapon/flame/lighter/zippo/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"s" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"v" = ( +/obj/item/weapon/gun/projectile/deagle/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"w" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/goldschlager, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"z" = ( +/obj/item/toy/plushie/carp/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"A" = ( +/obj/item/weapon/card/id/gold/captain/spare/fakespare, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"C" = ( +/obj/item/clothing/accessory/medal/solgov/gold/crest, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"G" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"H" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"I" = ( +/turf/simulated/mineral, +/area/submap/begderg) +"M" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"R" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"S" = ( +/obj/item/slime_extract/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"U" = ( +/mob/living/simple_mob/vore/bigdragon, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"X" = ( +/obj/item/weapon/pickaxe/gold{ + pixel_x = -12; + pixel_y = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) +"Y" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/begderg) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +I +I +I +I +I +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +I +I +I +I +H +H +M +I +I +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +H +H +I +M +H +H +H +H +H +H +I +H +H +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +I +I +I +I +I +H +H +H +H +M +I +I +I +H +H +H +H +H +H +I +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +I +I +H +H +H +H +H +H +H +H +I +I +I +I +H +H +H +H +H +H +I +I +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +I +I +H +H +H +H +H +H +H +H +I +I +I +I +I +H +H +H +H +H +M +I +I +I +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +I +M +H +H +H +M +I +I +I +I +I +I +I +I +H +H +H +H +H +H +I +I +I +I +I +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +I +I +H +H +H +H +I +I +I +I +I +I +I +I +I +H +H +H +H +H +H +H +I +I +M +I +I +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +I +I +I +H +H +H +H +I +I +I +I +I +I +I +I +I +H +H +H +H +I +M +H +H +H +H +H +I +I +a +"} +(13,1,1) = {" +a +a +a +a +a +a +I +I +I +I +I +H +H +H +H +I +H +H +H +H +M +I +H +H +H +H +I +I +I +H +H +H +H +H +H +I +a +"} +(14,1,1) = {" +a +a +a +a +I +I +I +q +I +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +H +H +H +H +H +H +I +a +"} +(15,1,1) = {" +a +a +a +I +I +C +H +H +H +w +R +H +H +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +H +H +H +H +H +H +M +I +a +"} +(16,1,1) = {" +a +a +a +I +n +H +H +H +z +H +Y +s +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +M +H +H +H +H +H +H +I +I +a +"} +(17,1,1) = {" +a +a +a +I +H +H +A +H +H +H +H +H +H +H +H +H +H +H +I +H +H +H +H +H +M +I +H +H +H +H +H +H +H +H +I +a +a +"} +(18,1,1) = {" +a +a +a +I +X +H +H +U +H +H +H +H +H +H +H +H +M +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +I +a +a +"} +(19,1,1) = {" +a +a +a +I +I +o +H +H +H +H +H +H +H +H +H +H +I +I +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +I +I +a +"} +(20,1,1) = {" +a +a +a +a +I +I +H +H +v +H +i +G +H +H +H +H +H +I +I +I +M +H +H +H +H +H +H +H +H +H +H +H +H +H +H +I +a +"} +(21,1,1) = {" +a +a +a +a +a +I +S +H +H +H +R +H +H +H +H +H +H +H +I +H +H +H +H +H +H +I +H +H +H +H +H +H +H +H +M +I +a +"} +(22,1,1) = {" +a +a +a +a +a +I +I +w +H +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +I +M +H +H +H +H +H +I +I +a +"} +(23,1,1) = {" +a +a +a +a +a +a +I +I +I +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +I +H +H +H +H +H +H +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +I +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +M +I +I +I +I +H +H +H +H +H +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +I +I +M +H +H +H +M +I +H +H +H +H +M +I +H +H +H +H +H +H +I +H +H +H +H +H +H +a +a +"} +(26,1,1) = {" +a +a +a +a +a +a +a +a +I +H +H +H +H +H +I +I +I +I +I +I +I +I +I +H +H +H +H +H +H +H +H +H +I +I +a +a +a +"} +(27,1,1) = {" +a +a +a +a +a +a +a +a +I +H +H +H +H +H +I +I +I +I +I +I +I +I +I +I +H +H +H +H +H +H +H +I +I +I +I +a +a +"} +(28,1,1) = {" +a +a +a +a +a +a +a +a +I +I +H +H +H +H +H +I +I +I +H +H +M +I +I +I +I +I +I +I +H +H +H +H +I +I +I +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +I +I +I +I +I +H +H +H +H +H +I +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +I +M +H +H +H +H +H +H +H +H +H +H +H +H +H +H +M +I +I +H +H +H +H +H +H +I +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +a +I +I +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +M +I +I +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +a +a +I +I +I +I +I +I +I +I +I +I +H +H +H +H +H +H +H +H +H +H +H +H +I +I +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +I +I +I +a +a +a +a +I +H +H +H +H +H +H +H +H +H +H +H +I +I +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +H +H +H +H +H +H +H +H +H +M +I +I +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +H +I +I +I +H +H +H +I +I +a +a +a +a +a +a +"} +(36,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +I +I +I +I +I +I +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/surface_submaps/valley/blobden.dmm b/maps/submaps/surface_submaps/valley/blobden.dmm new file mode 100644 index 0000000000..98bcdb9c4a --- /dev/null +++ b/maps/submaps/surface_submaps/valley/blobden.dmm @@ -0,0 +1,956 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"ak" = ( +/turf/simulated/wall/titanium, +/area/submap/blobden) +"aH" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"aQ" = ( +/obj/structure/blob/core/random_hard, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"bC" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"cq" = ( +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"dt" = ( +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"dS" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"eL" = ( +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"eY" = ( +/obj/structure/table/borosilicate, +/obj/item/rig_module/rad_shield/advanced, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"fb" = ( +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"gk" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"ig" = ( +/obj/structure/table/borosilicate, +/obj/item/rig_module/mounted/egun, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"iN" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"kY" = ( +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"ls" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"lt" = ( +/turf/simulated/mineral/light, +/area/template_noop) +"lO" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"nB" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"pr" = ( +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"pU" = ( +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"qc" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"qz" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"qW" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"ry" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"sJ" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"uj" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"uA" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"wD" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"wX" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"xW" = ( +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"yW" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"zE" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Ac" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"AJ" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/cell/device/weapon/recharge, +/obj/item/weapon/cell/device/weapon/recharge, +/obj/item/weapon/cell/device/weapon/recharge, +/obj/item/weapon/cell/device/weapon/recharge, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Bc" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Bw" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Db" = ( +/obj/structure/table/borosilicate, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"DR" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Fe" = ( +/obj/structure/table/borosilicate, +/obj/item/rig_module/chem_dispenser/combat, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"FA" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"FC" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"FL" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Gy" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Ha" = ( +/obj/structure/table/borosilicate, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Hs" = ( +/obj/structure/table/borosilicate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"HQ" = ( +/obj/structure/table/borosilicate, +/obj/random/energy/sec, +/obj/item/rig_module/stealth_field, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Iv" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"IC" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Kc" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"La" = ( +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"NS" = ( +/obj/structure/table/borosilicate, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"OA" = ( +/obj/structure/table/borosilicate, +/obj/random/energy/highend, +/obj/item/rig_module/voice, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"PM" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Qg" = ( +/obj/structure/table/borosilicate, +/obj/item/rig_module/grenade_launcher/metalfoam, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Qp" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"RM" = ( +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"SR" = ( +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Tq" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"TK" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Uv" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Vm" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"WE" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"WG" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) +"Yd" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/blobden) + +(1,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(2,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(3,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(4,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(5,1,1) = {" +lt +lt +lt +lt +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +lt +lt +lt +lt +"} +(6,1,1) = {" +lt +lt +lt +lt +ak +FA +Ac +Ac +Gy +ak +PM +dS +sJ +ak +SR +qW +qW +Bc +ak +lt +lt +lt +lt +"} +(7,1,1) = {" +lt +lt +lt +lt +ak +IC +iN +NS +dt +ak +zE +pU +qz +ak +yW +Ha +OA +kY +ak +lt +lt +lt +lt +"} +(8,1,1) = {" +lt +lt +lt +lt +ak +IC +NS +Fe +dt +ak +zE +pU +qz +ak +yW +Qg +Ha +kY +ak +lt +lt +lt +lt +"} +(9,1,1) = {" +lt +lt +lt +lt +ak +Tq +ls +ls +aH +qc +zE +pU +qz +qc +uA +uj +uj +wX +ak +lt +lt +lt +lt +"} +(10,1,1) = {" +lt +lt +lt +lt +ak +ak +ak +ak +qc +ak +zE +pU +qz +ak +qc +ak +ak +ak +ak +lt +lt +lt +lt +"} +(11,1,1) = {" +lt +lt +lt +lt +ak +PM +dS +dS +dS +dS +nB +RM +Uv +dS +dS +dS +dS +sJ +ak +lt +lt +lt +lt +"} +(12,1,1) = {" +lt +lt +lt +lt +ak +zE +pU +pU +pU +pU +fb +aQ +xW +pU +pU +pU +pU +qz +ak +lt +lt +lt +lt +"} +(13,1,1) = {" +lt +lt +lt +lt +ak +Iv +gk +gk +gk +gk +FC +cq +pr +gk +gk +gk +gk +DR +ak +lt +lt +lt +lt +"} +(14,1,1) = {" +lt +lt +lt +lt +ak +ak +ak +ak +qc +ak +zE +pU +qz +ak +qc +ak +ak +ak +ak +lt +lt +lt +lt +"} +(15,1,1) = {" +lt +lt +lt +lt +ak +aa +WE +WE +Yd +qc +zE +pU +qz +qc +bC +TK +TK +WG +ak +lt +lt +lt +lt +"} +(16,1,1) = {" +lt +lt +lt +lt +ak +Bw +Hs +eY +La +ak +zE +pU +qz +ak +ry +ig +Db +eL +ak +lt +lt +lt +lt +"} +(17,1,1) = {" +lt +lt +lt +lt +ak +Bw +AJ +Hs +La +ak +zE +pU +qz +ak +ry +Db +HQ +eL +ak +lt +lt +lt +lt +"} +(18,1,1) = {" +lt +lt +lt +lt +ak +FL +lO +lO +Vm +ak +Iv +gk +DR +ak +wD +Qp +Qp +Kc +ak +lt +lt +lt +lt +"} +(19,1,1) = {" +lt +lt +lt +lt +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +lt +lt +lt +lt +"} +(20,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(21,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(22,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} +(23,1,1) = {" +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +"} diff --git a/maps/submaps/surface_submaps/valley/bloodchurch.dmm b/maps/submaps/surface_submaps/valley/bloodchurch.dmm new file mode 100644 index 0000000000..455d27bcca --- /dev/null +++ b/maps/submaps/surface_submaps/valley/bloodchurch.dmm @@ -0,0 +1,1584 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"ce" = ( +/mob/living/simple_mob/vore/demonAI/wendigo{ + faction = "cult" + }, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"dF" = ( +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"eT" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"fb" = ( +/obj/structure/table/sifwoodentable, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"fn" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/closet/crate/secure/loot, +/obj/item/clothing/gloves/regen, +/obj/item/rig_module/mounted/energy_blade, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"fQ" = ( +/obj/structure/table/sifwoodentable, +/obj/random/medical/pillbottle, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"gM" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"hQ" = ( +/obj/structure/bed/double/padded, +/mob/living/simple_mob/humanoid/cultist/castertesh, +/obj/item/weapon/bedsheet/hosdouble, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"il" = ( +/obj/structure/closet, +/obj/random/energy/highend, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"iT" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"jP" = ( +/mob/living/simple_mob/construct/artificer/caster, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"kn" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"lt" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"mn" = ( +/obj/item/clothing/suit/wizrobe/psypurple, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"oI" = ( +/obj/structure/table/bench/sifwooden/padded, +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"pJ" = ( +/obj/structure/table/bench/sifwooden/padded, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"pL" = ( +/mob/living/simple_mob/humanoid/cultist/noodle, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"qb" = ( +/obj/structure/bed/double/padded, +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, +/obj/item/weapon/bedsheet/hosdouble, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"rQ" = ( +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"sy" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/wintercoat/narsie, +/obj/item/clothing/suit/storage/hooded/wintercoat/narsie, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"tW" = ( +/obj/structure/table/bench/sifwooden/padded, +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"wh" = ( +/mob/living/simple_mob/humanoid/cultist/elite, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"wA" = ( +/obj/item/clothing/head/wizard/amp, +/mob/living/simple_mob/construct/shade, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"xJ" = ( +/obj/structure/closet/crate, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/rig_module/vision/thermal, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"xN" = ( +/obj/structure/table/sifwoodentable, +/obj/random/mouseray, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"yn" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"yo" = ( +/obj/structure/table/bench/sifwooden/padded, +/mob/living/simple_mob/humanoid/cultist/lizard, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"yC" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"yD" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/spellbook/oneuse/forcewall, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"zB" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"zO" = ( +/obj/item/clothing/suit/wizrobe, +/mob/living/simple_mob/construct/shade, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Ac" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"AL" = ( +/turf/template_noop, +/area/template_noop) +"AZ" = ( +/obj/item/clothing/suit/wizrobe, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"DJ" = ( +/obj/structure/table/sifwoodentable, +/obj/item/clothing/head/psy_crown/wrath, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"EZ" = ( +/obj/structure/loot_pile/surface/bones, +/obj/item/weapon/storage/backpack/dufflebag/syndie, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"FG" = ( +/obj/structure/table/sifwoodentable, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"GX" = ( +/mob/living/simple_mob/construct/juggernaut, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Hn" = ( +/obj/random/explorer_shield, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/structure/closet/crate/secure/loot, +/obj/item/rig_module/mounted/energy_blade, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/rescue_pharm, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Jq" = ( +/obj/item/weapon/gun/energy/staff/focus, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Ku" = ( +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt/fireball, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"KD" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"MC" = ( +/obj/item/weapon/flame/candle/candelabra/everburn, +/obj/structure/table/sifwoodentable, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"MK" = ( +/obj/structure/loot_pile/surface/bones, +/obj/item/weapon/storage/backpack/holding/duffle, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"MQ" = ( +/turf/simulated/wall/log_sif, +/area/submap/bloodchurch) +"Nn" = ( +/obj/effect/landmark/loot_spawn, +/obj/item/weapon/storage/belt/holding, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"OC" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"OZ" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"Pn" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Qz" = ( +/obj/structure/table/sifwoodentable, +/obj/random/toolbox, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"RN" = ( +/obj/structure/table/sifwoodentable, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/gun/random, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Uz" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"WM" = ( +/obj/structure/table/bench/sifwooden/padded, +/mob/living/simple_mob/humanoid/cultist/caster, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"Yz" = ( +/mob/living/simple_mob/construct/shade, +/turf/simulated/floor/wood/sif, +/area/submap/bloodchurch) +"YL" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) +"YS" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/bloodchurch) + +(1,1,1) = {" +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +"} +(2,1,1) = {" +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +"} +(3,1,1) = {" +AL +Uz +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YS +AL +"} +(4,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +AL +"} +(5,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +Ku +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +AL +"} +(6,1,1) = {" +AL +eT +yC +jP +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +jP +yC +KD +AL +"} +(7,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +AL +"} +(8,1,1) = {" +AL +eT +yC +yC +yC +Uz +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YL +YS +yC +yC +yC +KD +AL +"} +(9,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(10,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +kn +xJ +Yz +lt +Pn +lt +Yz +Jq +EZ +MQ +qb +rQ +xN +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(11,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +lt +zO +rQ +rQ +kn +Yz +lt +AZ +Pn +MQ +ce +rQ +aq +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(12,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +Nn +lt +rQ +Yz +mn +MK +wA +kn +fn +MQ +il +rQ +rQ +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(13,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +MQ +MQ +OC +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +OC +MQ +yC +yC +jP +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(14,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +gM +rQ +rQ +rQ +rQ +rQ +rQ +rQ +rQ +OC +rQ +rQ +rQ +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(15,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +gM +rQ +rQ +Ac +rQ +Ac +rQ +Ac +rQ +MQ +MQ +MQ +MQ +MQ +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(16,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +rQ +rQ +rQ +WM +rQ +yo +rQ +oI +rQ +MQ +MQ +sy +sy +MQ +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(17,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +rQ +DJ +rQ +pJ +rQ +pJ +rQ +pJ +rQ +MQ +MC +rQ +rQ +MC +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(18,1,1) = {" +AL +eT +yC +Ku +yC +eT +MQ +wh +fQ +rQ +rQ +rQ +rQ +rQ +rQ +rQ +OC +pL +GX +rQ +rQ +OC +yC +yC +jP +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(19,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +rQ +yD +rQ +pJ +rQ +pJ +rQ +pJ +rQ +MQ +MC +rQ +rQ +MC +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +Ku +yC +KD +AL +"} +(20,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +rQ +rQ +rQ +oI +rQ +yo +rQ +tW +rQ +MQ +MQ +sy +sy +MQ +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(21,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +gM +rQ +rQ +Ac +rQ +Ac +rQ +Ac +rQ +MQ +MQ +MQ +MQ +MQ +MQ +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(22,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +gM +rQ +rQ +rQ +rQ +rQ +rQ +rQ +rQ +OC +rQ +rQ +rQ +MQ +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(23,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +MQ +MQ +OC +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +OC +MQ +yC +yC +jP +yC +KD +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(24,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +Hn +lt +rQ +rQ +rQ +rQ +lt +rQ +RN +MQ +il +rQ +rQ +MQ +yC +yC +yC +yC +KD +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(25,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +rQ +dF +rQ +rQ +lt +rQ +rQ +dF +lt +MQ +ce +rQ +aq +MQ +yC +yC +yC +yC +KD +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(26,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +FG +FG +FG +iT +iT +iT +FG +FG +fb +MQ +hQ +rQ +Qz +MQ +yC +yC +yC +yC +KD +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(27,1,1) = {" +AL +eT +yC +yC +yC +eT +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +MQ +yC +yC +yC +yC +KD +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(28,1,1) = {" +AL +eT +yC +yC +yC +OZ +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +zB +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(29,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(30,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(31,1,1) = {" +AL +eT +yC +jP +yC +yC +yC +yC +yC +yC +yC +yC +yC +Ku +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +jP +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(32,1,1) = {" +AL +eT +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +yC +KD +yC +yC +yC +KD +AL +"} +(33,1,1) = {" +AL +OZ +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +zB +yC +yC +yC +KD +AL +"} +(34,1,1) = {" +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +yC +yC +yC +zB +AL +"} +(35,1,1) = {" +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +AL +"} diff --git a/maps/submaps/surface_submaps/valley/carriershuttle.dmm b/maps/submaps/surface_submaps/valley/carriershuttle.dmm new file mode 100644 index 0000000000..76280a5c8b --- /dev/null +++ b/maps/submaps/surface_submaps/valley/carriershuttle.dmm @@ -0,0 +1,2006 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"bh" = ( +/mob/living/simple_mob/animal/space/carp/large, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"cY" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green, +/obj/structure/cable/blue, +/obj/structure/table/gold, +/obj/random/material/precious, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"dI" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/random/medical/pillbottle, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"dL" = ( +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"eT" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"fd" = ( +/obj/machinery/door/blast/regular{ + id = "carrier" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"fk" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/random/ammo, +/obj/random/contraband/nofail, +/obj/item/capture_crystal, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"gd" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/submap/carriershuttle) +"gu" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"hS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"iO" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/port_gen/pacman/super, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"ju" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/random/medical/pillbottle, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"ln" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/contraband/nofail, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"lR" = ( +/obj/structure/cable/blue, +/obj/machinery/power/port_gen/pacman/super, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"mm" = ( +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"mp" = ( +/obj/random/mob/merc/armored, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"mM" = ( +/turf/template_noop, +/area/template_noop) +"np" = ( +/obj/machinery/door/blast/regular{ + id = "carrier" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"ok" = ( +/obj/machinery/computer/ship{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"ot" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"oR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"pl" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"qv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"qI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"rv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/gold, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"rE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"tt" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"tQ" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"uk" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/structure/window/plastitanium, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"uy" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun/auto, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"wc" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/submap/carriershuttle) +"wt" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"wY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"xm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"yb" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/random/medical/lite, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"ys" = ( +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"yy" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/gold, +/obj/random/material/precious, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"zu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/mob/merc/all, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"zY" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/space, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"As" = ( +/mob/living/simple_mob/humanoid/merc/ranged/sniper, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"At" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/handgun/sec, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Br" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"Bz" = ( +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + id = "carrier" + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"BN" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"BP" = ( +/obj/machinery/computer/ship, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Cz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"CR" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/grenade/lethal, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Dy" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/gold, +/obj/random/material/precious, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"DU" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"Eb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Er" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/contraband/nofail, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"EN" = ( +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"GH" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space/tommylas, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Ho" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/gold, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"Il" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Ip" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"KX" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/plastitanium, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/skipjack, +/area/submap/carriershuttle) +"Lq" = ( +/mob/living/simple_mob/vore/sect_queen, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"LF" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Mh" = ( +/mob/living/simple_mob/vore/solargrub, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"MI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"MO" = ( +/mob/living/simple_mob/metroid/juvenile/omega, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"MZ" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/contraband/nofail, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"NI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"OF" = ( +/mob/living/simple_mob/animal/synx/ai, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"PM" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/contraband/nofail, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Qm" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/submap/carriershuttle) +"Qn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_mob/vore/alienanimals/catslug/custom/spaceslug/syndislug, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"QQ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Rt" = ( +/mob/living/simple_mob/animal/space/alien/queen/empress, +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Se" = ( +/obj/structure/table/standard, +/obj/random/ammo, +/obj/random/gun/random, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Sy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Tw" = ( +/obj/machinery/door/blast/regular, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Uq" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"Vv" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"VX" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Wl" = ( +/obj/machinery/light/poi, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"WV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"XU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"YO" = ( +/obj/random/mob/merc/armored, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Zb" = ( +/obj/machinery/computer/ship{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) +"Zk" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/carriershuttle) +"ZO" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/shuttle/floor/darkred, +/area/submap/carriershuttle) + +(1,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(2,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(3,1,1) = {" +mM +Qm +wc +wc +wc +wc +wc +Qm +mM +mM +mM +mM +mM +mM +Qm +Qm +Qm +Qm +Qm +Qm +Qm +mM +mM +mM +mM +mM +mM +Qm +wc +wc +wc +wc +wc +Qm +mM +"} +(4,1,1) = {" +mM +Qm +gd +gd +gd +gd +gd +Qm +mM +mM +mM +mM +mM +Qm +Qm +Se +Er +fk +Er +Se +Qm +Qm +mM +mM +mM +mM +mM +Qm +gd +gd +gd +gd +gd +Qm +mM +"} +(5,1,1) = {" +mM +Qm +Zk +yy +rv +Dy +lR +Qm +mM +mM +mM +mM +Qm +Qm +tQ +QQ +WV +MI +WV +QQ +tQ +Qm +Qm +mM +mM +mM +mM +Qm +iO +Dy +Ho +cY +Zk +Qm +mM +"} +(6,1,1) = {" +mM +Qm +Uq +Uq +zu +Uq +Uq +Qm +mM +mM +mM +Qm +Qm +QQ +QQ +QQ +QQ +Qn +QQ +QQ +QQ +QQ +Qm +Qm +mM +mM +mM +Qm +Uq +Uq +zu +Uq +Uq +Qm +mM +"} +(7,1,1) = {" +mM +Qm +ot +Uq +Cz +Uq +ot +Qm +mM +mM +mM +Qm +QQ +QQ +uy +QQ +QQ +MI +QQ +QQ +GH +QQ +QQ +Qm +mM +mM +mM +Qm +ot +Uq +Cz +Uq +ot +Qm +mM +"} +(8,1,1) = {" +mM +Qm +Uq +Uq +Cz +Uq +Uq +Qm +mM +mM +mM +Qm +aR +Sy +Sy +Sy +Sy +xm +Sy +Sy +Sy +Sy +Il +Qm +mM +mM +mM +Qm +Uq +Uq +Cz +Uq +Uq +Qm +mM +"} +(9,1,1) = {" +mM +Qm +Qm +Qm +wY +Qm +Qm +Qm +Qm +Qm +Qm +Qm +MI +QQ +QQ +QQ +Zb +Qm +BP +QQ +QQ +QQ +MI +Qm +Qm +Qm +Qm +Qm +Qm +Qm +rE +Qm +Qm +Qm +mM +"} +(10,1,1) = {" +mM +Qm +YO +VX +hS +XU +XU +Ip +XU +XU +XU +NI +qv +QQ +QQ +Zb +Qm +Qm +Qm +BP +QQ +QQ +oR +NI +XU +XU +XU +Ip +XU +XU +qI +VX +mp +Qm +mM +"} +(11,1,1) = {" +mM +Qm +Qm +Qm +ys +Qm +Qm +Qm +Qm +Qm +Qm +Qm +At +QQ +QQ +Zb +Qm +Qm +Qm +BP +QQ +QQ +At +Qm +Qm +Qm +Qm +Qm +Qm +Qm +ys +Qm +Qm +Qm +mM +"} +(12,1,1) = {" +mM +Qm +BN +VX +As +VX +BN +Qm +mM +mM +mM +Qm +PM +WV +QQ +Zb +Qm +Qm +Qm +BP +QQ +WV +PM +Qm +mM +mM +mM +Qm +BN +VX +As +VX +BN +Qm +mM +"} +(13,1,1) = {" +mM +Qm +BN +eT +VX +eT +BN +Qm +mM +mM +mM +Qm +PM +QQ +QQ +Zb +Qm +Qm +Qm +BP +QQ +QQ +PM +Qm +mM +mM +mM +Qm +BN +eT +VX +eT +BN +Qm +mM +"} +(14,1,1) = {" +mM +Qm +BN +VX +eT +VX +BN +Qm +mM +mM +mM +Qm +PM +QQ +QQ +QQ +Zb +Qm +BP +QQ +QQ +QQ +PM +Qm +mM +mM +mM +Qm +BN +VX +eT +VX +BN +Qm +mM +"} +(15,1,1) = {" +mM +Qm +dI +VX +VX +VX +ju +Qm +mM +mM +mM +Qm +MZ +WV +QQ +QQ +QQ +Bz +QQ +QQ +QQ +WV +ln +Qm +mM +mM +mM +Qm +dI +VX +VX +VX +ju +Qm +mM +"} +(16,1,1) = {" +mM +Qm +yb +VX +VX +VX +yb +Qm +mM +mM +mM +Qm +CR +QQ +zY +QQ +QQ +QQ +QQ +zY +QQ +QQ +CR +Qm +mM +mM +mM +Qm +yb +VX +VX +VX +yb +Qm +mM +"} +(17,1,1) = {" +mM +Qm +ZO +Eb +VX +Eb +ZO +Qm +mM +mM +mM +Qm +Qm +QQ +QQ +QQ +QQ +dL +QQ +QQ +QQ +QQ +Qm +Qm +mM +mM +mM +Qm +ZO +Eb +VX +Eb +ZO +Qm +mM +"} +(18,1,1) = {" +mM +Br +uk +ok +ok +ok +DU +KX +mM +mM +mM +Qm +Qm +Qm +QQ +QQ +QQ +QQ +QQ +QQ +QQ +Qm +Qm +Qm +mM +mM +mM +Br +uk +ok +ok +ok +DU +KX +mM +"} +(19,1,1) = {" +mM +mM +wt +gu +gu +gu +pl +mM +mM +mM +mM +Qm +Qm +Qm +Qm +LF +QQ +QQ +QQ +LF +Qm +Qm +Qm +Qm +mM +mM +mM +mM +wt +gu +gu +gu +pl +mM +mM +"} +(20,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +Qm +Qm +Qm +Qm +Qm +mm +Qm +Qm +Qm +Qm +Qm +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(21,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +Tw +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(22,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +MO +EN +tt +fd +QQ +QQ +QQ +fd +tt +EN +Rt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(23,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +fd +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(24,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +Qm +Qm +Qm +Qm +Vv +QQ +Wl +Qm +Qm +Qm +Qm +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(25,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +fd +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(26,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +Lq +EN +tt +fd +QQ +QQ +QQ +fd +tt +EN +OF +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(27,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +fd +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(28,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +Qm +Qm +Qm +Qm +Vv +QQ +Wl +Qm +Qm +Qm +Qm +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(29,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +fd +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(30,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +bh +EN +tt +fd +QQ +QQ +QQ +fd +tt +EN +Mh +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(31,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +tt +tt +tt +fd +QQ +QQ +QQ +fd +tt +tt +tt +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(32,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Qm +Qm +Qm +Qm +Qm +np +np +np +Qm +Qm +Qm +Qm +Qm +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(33,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(34,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} +(35,1,1) = {" +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +"} diff --git a/maps/submaps/surface_submaps/valley/cliffmanor.dmm b/maps/submaps/surface_submaps/valley/cliffmanor.dmm new file mode 100644 index 0000000000..4963b2f92f --- /dev/null +++ b/maps/submaps/surface_submaps/valley/cliffmanor.dmm @@ -0,0 +1,1339 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/mob/living/simple_mob/humanoid/cultist/tesh, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"b" = ( +/obj/machinery/firework_launcher, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"c" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/soulstone, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"d" = ( +/obj/structure/railing, +/obj/structure/table/wooden_reinforced, +/obj/random/medical/pillbottle, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"e" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"f" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"g" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"h" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/sif, +/area/submap/cliffmanor) +"i" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"j" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"k" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/energy/highend, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"l" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/gun/random, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"m" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/firstaid, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"n" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/clothing/head/psy_crown/wrath, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"p" = ( +/mob/living/simple_mob/vore/alienanimals/space_jellyfish{ + faction = "cult" + }, +/turf/simulated/floor/water, +/area/submap/cliffmanor) +"q" = ( +/obj/structure/closet/crate, +/obj/item/weapon/firework_star/weather/storm, +/obj/item/weapon/firework_star/weather/storm, +/obj/item/weapon/firework_star/weather/rain, +/obj/item/weapon/firework_star/weather/rain, +/obj/item/weapon/firework_star/weather/hail, +/obj/item/weapon/firework_star/weather/hail, +/obj/item/weapon/firework_star/weather/blizzard, +/obj/item/weapon/firework_star/weather/blizzard, +/obj/item/weapon/firework_star/weather/fallout, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"r" = ( +/obj/structure/railing, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"s" = ( +/turf/simulated/wall/log, +/area/submap/cliffmanor) +"t" = ( +/obj/structure/railing, +/obj/structure/table/wooden_reinforced, +/obj/random/material/precious, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"u" = ( +/turf/simulated/floor/water, +/area/submap/cliffmanor) +"v" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"w" = ( +/turf/template_noop, +/area/template_noop) +"x" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/projectile/random, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"y" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"B" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"C" = ( +/mob/living/simple_mob/humanoid/cultist/noodle, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"D" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"E" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"F" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/random/medical/pillbottle, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"G" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"H" = ( +/obj/structure/closet/crate/secure/loot, +/obj/random/mainttoyloot/nofail, +/obj/random/mainttoyloot/nofail, +/obj/item/stack/material/mhydrogen, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"I" = ( +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"J" = ( +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"M" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"N" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"O" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/clothing/head/psy_crown/gluttony, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"P" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"Q" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"R" = ( +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"S" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"T" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/random/material/precious, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"U" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"V" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"W" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"X" = ( +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt/fireball, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) +"Y" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/cliffmanor) +"Z" = ( +/obj/structure/railing, +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood, +/area/submap/cliffmanor) + +(1,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(2,1,1) = {" +g +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +j +"} +(3,1,1) = {" +G +v +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +Q +"} +(4,1,1) = {" +G +v +u +u +p +u +u +u +u +u +p +u +u +u +u +u +u +u +u +u +u +u +p +u +u +u +u +u +Q +"} +(5,1,1) = {" +G +v +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +Q +"} +(6,1,1) = {" +G +v +u +p +u +U +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +E +v +u +u +u +Q +"} +(7,1,1) = {" +G +v +u +u +u +Q +s +s +P +P +P +P +s +s +s +s +s +P +P +P +P +s +s +G +v +u +p +u +Q +"} +(8,1,1) = {" +G +v +u +u +u +Q +e +J +J +J +R +J +s +O +i +c +s +J +R +J +J +J +r +G +v +u +u +u +Q +"} +(9,1,1) = {" +G +v +u +u +u +Q +e +J +J +J +J +J +h +J +I +J +h +J +J +J +J +J +r +G +v +u +u +u +Q +"} +(10,1,1) = {" +G +v +u +u +u +Q +e +X +J +J +a +S +s +J +J +J +s +S +a +J +J +X +r +G +v +u +u +u +Q +"} +(11,1,1) = {" +G +v +u +u +u +Q +e +J +J +S +l +i +s +J +J +J +s +i +x +S +J +J +r +G +v +u +u +u +Q +"} +(12,1,1) = {" +G +v +u +u +u +Q +s +h +s +s +s +s +s +s +h +s +s +s +s +s +s +h +s +G +v +u +u +u +Q +"} +(13,1,1) = {" +G +v +u +u +u +Q +v +v +v +U +s +B +J +J +J +J +J +B +s +E +v +v +v +G +v +u +u +u +Q +"} +(14,1,1) = {" +G +v +u +p +u +Q +v +v +v +Q +s +b +a +J +J +J +a +H +s +G +v +v +v +G +v +u +p +u +Q +"} +(15,1,1) = {" +G +v +u +u +u +Q +v +v +v +Q +s +B +J +J +J +J +J +B +s +G +v +v +v +G +v +u +u +u +Q +"} +(16,1,1) = {" +Y +v +u +u +u +D +v +v +v +Q +s +s +s +s +h +s +s +s +s +G +v +v +v +Y +v +u +u +u +D +"} +(17,1,1) = {" +v +v +v +v +v +v +v +v +v +Q +T +J +J +J +J +J +J +J +d +G +v +v +v +v +v +v +v +v +v +"} +(18,1,1) = {" +v +v +v +v +v +v +v +v +v +Q +W +R +J +J +C +J +J +R +Z +G +v +v +v +v +v +v +v +v +v +"} +(19,1,1) = {" +v +v +v +v +v +v +v +v +v +Q +F +J +J +J +J +J +J +J +t +G +v +v +v +v +v +v +v +v +v +"} +(20,1,1) = {" +E +v +u +u +u +U +v +v +v +Q +s +s +s +s +h +s +s +s +s +G +v +v +v +E +v +u +u +u +U +"} +(21,1,1) = {" +G +v +u +u +u +Q +v +v +v +Q +s +B +J +J +J +J +J +B +s +G +v +v +v +G +v +u +u +u +Q +"} +(22,1,1) = {" +G +v +u +u +u +Q +v +v +v +Q +s +H +a +J +J +J +a +q +s +G +v +v +v +G +v +u +p +u +Q +"} +(23,1,1) = {" +G +v +u +p +u +Q +v +v +v +D +s +B +J +J +J +J +J +B +s +Y +v +v +v +G +v +u +u +u +Q +"} +(24,1,1) = {" +G +v +u +u +u +Q +s +h +s +s +s +s +s +s +h +s +s +s +s +s +s +h +s +G +v +u +u +u +Q +"} +(25,1,1) = {" +G +v +u +u +u +Q +e +J +J +S +m +i +s +J +J +J +s +i +k +S +J +J +r +G +v +u +u +u +Q +"} +(26,1,1) = {" +G +v +u +u +u +Q +e +X +J +J +a +S +s +J +J +J +s +S +a +J +J +X +r +G +v +u +u +u +Q +"} +(27,1,1) = {" +G +v +u +u +u +Q +e +J +J +J +J +J +h +J +I +J +h +J +J +J +J +J +r +G +v +u +p +u +Q +"} +(28,1,1) = {" +G +v +u +u +u +Q +e +J +J +J +R +J +s +c +i +n +s +J +R +J +J +J +r +G +v +u +u +u +Q +"} +(29,1,1) = {" +G +v +u +p +u +Q +s +s +N +N +N +N +s +s +s +s +s +N +N +N +N +s +s +G +v +u +u +u +Q +"} +(30,1,1) = {" +G +v +u +u +u +D +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +Y +v +u +u +u +Q +"} +(31,1,1) = {" +G +v +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +p +u +u +u +u +u +u +u +Q +"} +(32,1,1) = {" +G +v +u +u +u +u +p +u +u +u +u +u +u +p +u +u +u +u +u +u +u +u +u +u +u +u +p +u +Q +"} +(33,1,1) = {" +G +v +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +Q +"} +(34,1,1) = {" +V +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +M +"} +(35,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} diff --git a/maps/submaps/surface_submaps/valley/clockwork.dmm b/maps/submaps/surface_submaps/valley/clockwork.dmm new file mode 100644 index 0000000000..68ee0980c3 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/clockwork.dmm @@ -0,0 +1,786 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/catwalk, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"b" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"d" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"h" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"k" = ( +/mob/living/simple_mob/mechanical/wahlem{ + faction = "malf_drone" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"m" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"n" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"o" = ( +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"p" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"q" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"t" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"u" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"v" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"y" = ( +/obj/structure/railing, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"z" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"A" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"C" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"D" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"E" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"F" = ( +/turf/template_noop, +/area/template_noop) +"G" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"H" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"I" = ( +/obj/structure/cliff/automatic{ + dir = 10; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"J" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"K" = ( +/obj/structure/cliff/automatic{ + dir = 6; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"M" = ( +/turf/simulated/floor/lava, +/area/submap/clockwork) +"N" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"Q" = ( +/obj/structure/catwalk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"R" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"S" = ( +/obj/structure/closet/grave, +/obj/item/weapon/rig/ch/clockwork, +/obj/item/weapon/gun/energy/clockwork, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"T" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"U" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/clockwork) +"V" = ( +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"W" = ( +/mob/living/simple_mob/mechanical/mining_drone, +/turf/simulated/floor/lava, +/area/submap/clockwork) +"Z" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/clockwork) + +(1,1,1) = {" +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +"} +(2,1,1) = {" +F +F +p +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +p +F +F +"} +(3,1,1) = {" +F +p +z +z +b +U +E +Q +n +U +U +U +U +U +E +Q +n +U +I +z +z +p +F +"} +(4,1,1) = {" +F +z +z +b +J +M +y +a +G +M +M +M +M +M +y +a +G +M +q +I +z +z +F +"} +(5,1,1) = {" +F +z +b +J +M +W +y +a +G +M +M +M +M +M +y +a +G +W +M +q +I +z +F +"} +(6,1,1) = {" +F +z +C +M +M +M +y +a +G +M +M +M +M +M +y +a +G +M +M +M +h +z +F +"} +(7,1,1) = {" +F +z +H +V +V +V +z +z +z +M +M +M +M +M +z +z +z +V +V +V +A +z +F +"} +(8,1,1) = {" +F +z +Q +a +a +a +z +z +z +M +M +W +M +M +z +z +z +a +a +a +Q +z +F +"} +(9,1,1) = {" +F +z +t +o +o +o +z +z +z +M +M +M +M +M +z +z +z +o +o +o +D +z +F +"} +(10,1,1) = {" +F +z +C +M +M +M +y +a +G +M +M +M +M +M +y +a +G +M +M +M +h +z +F +"} +(11,1,1) = {" +F +z +C +M +M +M +y +a +G +M +z +z +z +M +y +a +G +M +M +M +h +z +F +"} +(12,1,1) = {" +F +z +C +M +W +M +y +a +G +M +S +k +S +M +y +a +G +M +W +M +h +z +F +"} +(13,1,1) = {" +F +z +C +M +M +M +y +a +G +M +z +z +z +M +y +a +G +M +M +M +h +z +F +"} +(14,1,1) = {" +F +z +C +M +M +M +y +a +G +M +y +a +G +M +y +a +G +M +M +M +h +z +F +"} +(15,1,1) = {" +F +z +C +M +M +M +z +z +z +T +m +d +Z +T +z +z +z +M +M +M +h +z +F +"} +(16,1,1) = {" +F +z +C +M +M +M +z +z +z +a +d +M +d +a +z +z +z +M +M +M +h +z +F +"} +(17,1,1) = {" +F +z +C +M +M +M +z +z +z +o +o +o +o +o +z +z +z +M +M +M +h +z +F +"} +(18,1,1) = {" +F +z +C +M +M +M +M +M +M +M +M +M +M +M +M +M +M +M +M +M +h +z +F +"} +(19,1,1) = {" +F +z +R +N +M +M +M +M +M +M +M +W +M +M +M +M +M +M +M +u +K +z +F +"} +(20,1,1) = {" +F +z +z +R +N +M +M +M +M +M +M +M +M +M +M +M +M +M +u +K +z +z +F +"} +(21,1,1) = {" +F +p +z +z +R +v +v +v +v +v +v +v +v +v +v +v +v +v +K +z +z +p +F +"} +(22,1,1) = {" +F +F +p +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +p +F +F +"} +(23,1,1) = {" +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +"} diff --git a/maps/submaps/surface_submaps/valley/cove.dmm b/maps/submaps/surface_submaps/valley/cove.dmm new file mode 100644 index 0000000000..b6cff9c32d --- /dev/null +++ b/maps/submaps/surface_submaps/valley/cove.dmm @@ -0,0 +1,1501 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/blue_flames{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"aP" = ( +/mob/living/simple_mob/humanoid/cultist/hunter{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"br" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "PAPC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"bx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"ds" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/turf/simulated/floor/wood, +/area/submap/cove) +"eO" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/corophizine, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/moonshine, +/obj/random/gun/random, +/obj/random/energy/highend, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/submap/cove) +"fq" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/cove) +"ht" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/wood, +/area/submap/cove) +"iU" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/cove) +"kD" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"ld" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/submap/cove) +"lk" = ( +/turf/simulated/wall/wood, +/area/submap/cove) +"lL" = ( +/turf/simulated/floor/water/ocean, +/area/submap/cove) +"mh" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/wood, +/area/submap/cove) +"nt" = ( +/obj/structure/table/bench/wooden, +/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/suppressor{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"nN" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/pirate/manned, +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"oa" = ( +/mob/living/simple_mob/humanoid/pirate/captain, +/turf/simulated/floor/wood, +/area/submap/cove) +"oh" = ( +/turf/simulated/wall/gold{ + can_open = 1 + }, +/area/submap/cove) +"ov" = ( +/obj/structure/table/marble, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/cove) +"oM" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/wood, +/area/submap/cove) +"ps" = ( +/obj/structure/closet/crate/secure/loot, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"qI" = ( +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"qO" = ( +/obj/structure/table/bench/wooden, +/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, +/turf/simulated/floor/wood, +/area/submap/cove) +"qW" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/wood, +/area/submap/cove) +"rj" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/template_noop) +"sc" = ( +/obj/structure/prop/rock/water, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/cove) +"sl" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/submap/cove) +"uf" = ( +/obj/structure/prop/rock/watersharp, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/cove) +"uM" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"vN" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/projectile/revolvershotgun, +/turf/simulated/floor/wood, +/area/submap/cove) +"wD" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"wO" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/submap/cove) +"xo" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/red_flames{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"xN" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/dexalin, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/nuka_cola, +/obj/random/gun/random, +/obj/random/energy/highend, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/submap/cove) +"Ac" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"AU" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Dv" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/cove) +"EC" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"ED" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/turf/simulated/floor/wood, +/area/submap/cove) +"Gb" = ( +/turf/simulated/floor/wood, +/area/submap/cove) +"Hb" = ( +/obj/structure/table/bench/wooden, +/mob/living/simple_mob/humanoid/merc/melee/sword/space{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Hu" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/sleeptox, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/oxycodone, +/obj/random/gun/random, +/obj/random/energy/highend, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/submap/cove) +"HQ" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"IP" = ( +/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, +/turf/simulated/floor/wood, +/area/submap/cove) +"Kk" = ( +/mob/living/simple_mob/humanoid/pirate/las/armored, +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"Ky" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/submap/cove) +"LQ" = ( +/obj/structure/table/marble, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/cove) +"MQ" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/cove) +"Nn" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/wood, +/area/submap/cove) +"NQ" = ( +/mob/living/simple_mob/humanoid/pirate/las/armored, +/turf/simulated/floor/wood, +/area/submap/cove) +"Ox" = ( +/obj/random/ammo, +/turf/simulated/floor/wood, +/area/submap/cove) +"Pj" = ( +/obj/structure/table/bench/wooden, +/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/captain{ + faction = "pirate" + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Pl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"RE" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/gun/random, +/turf/simulated/floor/wood, +/area/submap/cove) +"RT" = ( +/turf/template_noop, +/area/template_noop) +"RV" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/wood, +/area/submap/cove) +"SB" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/armored, +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"Tm" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/cove) +"TN" = ( +/obj/random/medical/pillbottle, +/turf/simulated/floor/wood, +/area/submap/cove) +"Wb" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Wu" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/turf/simulated/floor/outdoors/snow, +/area/submap/cove) +"WK" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Xf" = ( +/obj/structure/table/bench/wooden, +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/turf/simulated/floor/wood, +/area/submap/cove) +"Xl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"XJ" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/piratedouble, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/cove) +"Zs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/cove) + +(1,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +rj +rj +rj +rj +rj +rj +rj +rj +rj +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +"} +(2,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +RT +RT +RT +RT +RT +RT +RT +"} +(3,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +rj +RT +"} +(4,1,1) = {" +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +sc +fq +fq +fq +fq +fq +rj +rj +rj +rj +lk +lk +lk +lk +lk +lk +lk +lk +rj +RT +"} +(5,1,1) = {" +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +sc +fq +qI +rj +rj +lk +Gb +aP +Ox +Ox +TN +Gb +lk +rj +RT +"} +(6,1,1) = {" +RT +RT +RT +fq +fq +sc +fq +fq +fq +fq +fq +fq +Dv +fq +fq +fq +fq +qI +qI +rj +lk +Gb +LQ +ht +qW +LQ +Gb +lk +rj +RT +"} +(7,1,1) = {" +RT +RT +fq +fq +fq +fq +fq +fq +fq +uf +fq +fq +fq +fq +fq +fq +qI +qI +qI +Tm +lk +Ox +TN +ds +IP +Ox +Gb +lk +rj +RT +"} +(8,1,1) = {" +RT +fq +fq +uf +fq +fq +fq +fq +fq +fq +fq +fq +sc +fq +fq +qI +qI +qI +Tm +Tm +lk +Gb +LQ +Ky +Ky +ov +Gb +lk +rj +RT +"} +(9,1,1) = {" +RT +fq +fq +fq +Gb +Gb +Gb +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +qI +Tm +Tm +lk +Gb +Ox +TN +NQ +Gb +Ox +lk +rj +RT +"} +(10,1,1) = {" +RT +fq +fq +fq +Gb +oM +Gb +fq +fq +fq +fq +fq +fq +Ac +qI +qI +qI +qI +lk +lk +lk +lk +Gb +lk +lk +Gb +lk +lk +rj +RT +"} +(11,1,1) = {" +RT +fq +fq +fq +Gb +Gb +Gb +fq +fq +fq +fq +fq +fq +Kk +SB +qI +bx +Pl +lk +Gb +Gb +AU +Gb +Gb +Gb +Gb +AU +lk +rj +RT +"} +(12,1,1) = {" +RT +fq +fq +fq +Gb +Gb +Gb +mh +mh +Gb +Gb +Gb +ED +Wu +qI +qI +Xl +Gb +lk +Gb +wO +Gb +Pj +Gb +wO +Gb +Gb +lk +rj +RT +"} +(13,1,1) = {" +RT +fq +fq +fq +Gb +Gb +Gb +Gb +mh +mh +Gb +Gb +Gb +qI +nN +qI +Gb +Gb +sl +Gb +MQ +ld +MQ +RE +MQ +Gb +RV +lk +rj +RT +"} +(14,1,1) = {" +RT +fq +fq +fq +Gb +Gb +Gb +mh +mh +Gb +Gb +Gb +ED +Wu +qI +qI +Xl +Gb +lk +uM +Hb +Gb +wO +Gb +wO +Gb +Gb +lk +rj +RT +"} +(15,1,1) = {" +RT +RT +uf +fq +Gb +Gb +Gb +fq +fq +fq +fq +fq +fq +Kk +SB +qI +Zs +Wb +lk +Gb +Gb +wO +Gb +wO +Gb +qO +Gb +lk +rj +RT +"} +(16,1,1) = {" +RT +RT +fq +fq +Gb +oM +Gb +fq +fq +fq +fq +fq +fq +Ac +qI +qI +qI +qI +lk +Gb +Gb +MQ +RE +MQ +ld +MQ +RV +lk +rj +RT +"} +(17,1,1) = {" +RT +RT +fq +fq +Gb +Gb +Gb +fq +fq +fq +fq +fq +fq +lL +qI +qI +qI +qI +lk +Gb +Gb +nt +Gb +wO +Gb +wO +Gb +lk +rj +RT +"} +(18,1,1) = {" +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +qI +lk +Gb +Gb +Gb +Gb +Gb +Gb +Gb +Gb +lk +rj +RT +"} +(19,1,1) = {" +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +sc +fq +fq +fq +qI +qI +qI +qI +lk +uM +Gb +wO +Gb +Xf +Gb +wO +RV +lk +rj +RT +"} +(20,1,1) = {" +RT +RT +RT +fq +fq +fq +uf +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +lk +Gb +ld +MQ +RE +MQ +ld +MQ +RE +lk +rj +RT +"} +(21,1,1) = {" +RT +RT +RT +fq +fq +fq +fq +fq +fq +Dv +fq +fq +fq +fq +fq +qI +qI +qI +lk +Gb +Gb +Gb +Gb +oa +Gb +Gb +Gb +lk +rj +RT +"} +(22,1,1) = {" +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +lk +HQ +iU +kD +iU +wD +EC +Gb +Gb +lk +rj +RT +"} +(23,1,1) = {" +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +lk +lk +lk +lk +lk +lk +lk +sl +lk +lk +rj +RT +"} +(24,1,1) = {" +RT +RT +RT +RT +fq +fq +sc +fq +fq +sc +fq +fq +uf +fq +fq +qI +qI +qI +Tm +Tm +lk +eO +aa +oh +Gb +Gb +vN +lk +rj +RT +"} +(25,1,1) = {" +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +qI +qI +Tm +lk +lk +Gb +lk +XJ +Gb +WK +lk +rj +RT +"} +(26,1,1) = {" +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +Tm +Tm +Tm +lk +xN +Gb +lk +lk +oh +lk +lk +rj +RT +"} +(27,1,1) = {" +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +Dv +fq +fq +fq +fq +qI +Tm +Tm +Tm +lk +lk +Gb +lk +br +Gb +lk +lk +rj +RT +"} +(28,1,1) = {" +RT +RT +RT +RT +RT +fq +fq +fq +uf +fq +fq +fq +fq +fq +fq +fq +qI +qI +Tm +Tm +lk +Hu +xo +lk +Nn +ps +lk +rj +rj +RT +"} +(29,1,1) = {" +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +sc +fq +fq +fq +qI +Tm +Tm +lk +lk +lk +lk +lk +lk +lk +rj +rj +RT +"} +(30,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +qI +qI +Tm +Tm +Tm +Tm +Tm +Tm +Tm +Tm +rj +rj +RT +"} +(31,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +fq +fq +uf +fq +fq +fq +fq +fq +fq +fq +qI +qI +Tm +Tm +rj +rj +rj +rj +rj +rj +rj +rj +RT +"} +(32,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +Dv +fq +fq +fq +qI +Tm +rj +rj +rj +rj +rj +rj +rj +RT +RT +RT +RT +"} +(33,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +fq +fq +fq +fq +Tm +rj +rj +rj +rj +rj +rj +RT +RT +RT +RT +RT +RT +"} +(34,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +fq +fq +fq +fq +fq +Tm +Tm +rj +rj +rj +rj +rj +RT +RT +RT +RT +RT +RT +RT +RT +"} +(35,1,1) = {" +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +rj +rj +rj +rj +rj +rj +RT +RT +RT +RT +RT +RT +RT +RT +RT +RT +"} diff --git a/maps/submaps/surface_submaps/valley/crashedexplo.dmm b/maps/submaps/surface_submaps/valley/crashedexplo.dmm new file mode 100644 index 0000000000..4e11ce6b23 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/crashedexplo.dmm @@ -0,0 +1,1184 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/sign/nanotrasen, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) +"ag" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"am" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/loaded, +/obj/structure/closet/walllocker_double/medical/south, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/selectable_item/chemistrykit/gender, +/obj/item/selectable_item/chemistrykit/size, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"aC" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 0 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/structure/sign/poster/nanotrasen{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"bF" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"bG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/weapon/stock_parts/manipulator/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"cI" = ( +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/broken, +/obj/item/weapon/material/shard/titaniumglass, +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"dv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"dU" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/mob/living/simple_mob/animal/giant_spider/phorogenic, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"ey" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/bay/shuttle, +/obj/random/rigsuit/chancetofail, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"eQ" = ( +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) +"fv" = ( +/obj/random/energy/highend, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"go" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/pacman/mrs, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"hi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/salvageable/console_broken_os{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"hl" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/template_noop, +/area/submap/crashedexplo) +"hn" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"hr" = ( +/obj/structure/frame, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"ig" = ( +/turf/simulated/shuttle/wall/voidcraft/no_join, +/area/submap/crashedexplo) +"iG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/stock_parts/micro_laser/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"jc" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"ke" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"lL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/engineering, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/device/multitool, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/device/geiger, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/glasses/goggles, +/obj/item/device/t_scanner, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/material/tritium{ + amount = 20 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"mj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"mA" = ( +/obj/structure/sign/redcross, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"mX" = ( +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/mob/living/simple_mob/animal/giant_spider/phorogenic, +/obj/item/weapon/circuitboard/sleeper, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"nS" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"nV" = ( +/mob/living/simple_mob/animal/giant_spider/phorogenic, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"pd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "shuttle4_pump" + }, +/obj/machinery/light, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"pl" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + req_one_access = null + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/rigsuit/chancetofail, +/obj/random/projectile, +/turf/simulated/shuttle/floor/darkred, +/area/submap/crashedexplo) +"qn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "shuttle4_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "shuttle4_sensor"; + pixel_y = 28 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"rh" = ( +/obj/structure/closet/walllocker/emerglocker{ + dir = 1; + pixel_y = -32 + }, +/mob/living/simple_mob/animal/giant_spider/carrier, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"sR" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"tP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/recharge_station, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"up" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/frame, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"ur" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"uM" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) +"vH" = ( +/obj/item/weapon/stock_parts/capacitor/omni, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"wv" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "shuttle4_shuttle"; + name = "interior access button"; + pixel_y = 26 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "shuttle4_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"wU" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/frame, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"wZ" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 0 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"xp" = ( +/obj/machinery/power/apc/hyper{ + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"xA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"xB" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"zI" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"zO" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "shuttle4_outer"; + locked = 1; + name = "External Access" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "shuttle4_shuttle"; + name = "exterior access button"; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "stargazer_blast"; + layer = 2.5; + name = "window blast shield" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"AE" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + icon_state = "door_locked"; + id_tag = "expshuttle4_door_L"; + locked = 1; + name = "shuttle side hatch" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + id = "expshuttle4_door_L"; + name = "Side Hatch Control"; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "stargazer_blast"; + layer = 2.5; + name = "window blast shield" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"AK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "shuttle4_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "shuttle4_shuttle"; + pixel_y = 26; + tag_airpump = "shuttle4_pump"; + tag_chamber_sensor = "shuttle4_sensor"; + tag_exterior_door = "shuttle4_outer"; + tag_interior_door = "shuttle4_inner" + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Cc" = ( +/mob/living/simple_mob/animal/giant_spider/carrier, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"CY" = ( +/obj/machinery/shipsensors, +/obj/effect/catwalk_plated/dark, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"DH" = ( +/obj/item/weapon/stock_parts/matter_bin/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"DJ" = ( +/obj/structure/salvageable/console_broken_os, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"DQ" = ( +/obj/structure/table/reinforced, +/obj/item/device/gps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/gps, +/obj/structure/closet/walllocker_double/kitchen/east, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Ft" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"FI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + id = "stargazer_blast"; + layer = 2.5; + name = "window blast shield" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"FX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Gb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/no_join, +/area/submap/crashedexplo) +"Hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"KT" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"KV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/bed/chair/bay/shuttle, +/obj/structure/sign/poster/nanotrasen{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Ln" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedexplo) +"LN" = ( +/obj/machinery/light, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/item/weapon/stock_parts/capacitor/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"LY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/weapon/stock_parts/scanning_module/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"MU" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/mech_recharger, +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Ns" = ( +/obj/structure/salvageable/console_broken_os, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "stargazer_blast"; + name = "remote blast shielding control"; + pixel_x = -26; + pixel_y = -1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"NF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/rigsuit/chancetofail, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"NP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "shuttle4_pump" + }, +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"OF" = ( +/obj/structure/salvageable/console_broken_os{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Pn" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) +"Qs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"Qx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"QU" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 25 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Rd" = ( +/obj/machinery/shuttle_sensor{ + id_tag = "shuttle4sens_exp_psg" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"RE" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard/titaniumglass, +/obj/item/weapon/material/shard/titaniumglass, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"RL" = ( +/obj/machinery/power/shield_generator/upgraded, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Se" = ( +/obj/effect/catwalk_plated/dark, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"SE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -25; + pixel_y = 32 + }, +/mob/living/simple_mob/animal/giant_spider/phorogenic, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedexplo) +"SV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_mob/animal/giant_spider/carrier, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Tb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"TU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"Ue" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -32 + }, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Uz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 4; + id = "expshuttle4_door_cargo"; + name = "Rear Hatch Control"; + pixel_x = -26; + req_access = list(67); + specialfunctions = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "stargazer_blast"; + layer = 2.5; + name = "window blast shield" + }, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + icon_state = "door_locked"; + id_tag = "expshuttle4_door_cargo"; + locked = 1 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"UG" = ( +/turf/template_noop, +/area/template_noop) +"UT" = ( +/obj/structure/salvageable/console_broken_os, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 8; + id = "expshuttle4_door_cargo"; + name = "Rear Hatch Control"; + pixel_x = 26; + req_access = list(67); + specialfunctions = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"UU" = ( +/obj/structure/fuel_port{ + pixel_y = -28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/energy/highend, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedexplo) +"UY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/stock_parts/scanning_module/omni, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedexplo) +"VE" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/no_join, +/area/submap/crashedexplo) +"Wn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Xp" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/machinery/door/blast/regular, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/submap/crashedexplo) +"Yk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/stock_parts/manipulator/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"Yq" = ( +/obj/machinery/shuttle_sensor{ + dir = 5; + id_tag = "shuttle4sens_exp" + }, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) +"Yr" = ( +/obj/item/weapon/stock_parts/capacitor/omni, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedexplo) +"YK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"Zr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"Zs" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/submap/crashedexplo) +"ZS" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/crashedexplo) + +(1,1,1) = {" +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +"} +(2,1,1) = {" +UG +UG +UG +UG +UG +eQ +sR +ig +sR +ZS +eQ +AE +eQ +eQ +eQ +UG +"} +(3,1,1) = {" +UG +UG +UG +UG +eQ +nS +KT +mX +am +ig +wZ +SE +up +Pn +hl +UG +"} +(4,1,1) = {" +UG +UG +eQ +sR +nS +nS +Ln +ag +xB +nS +aC +UY +RL +Qs +hl +UG +"} +(5,1,1) = {" +UG +eQ +nS +hi +pl +nS +mA +vH +nS +nS +wU +UU +Hk +Zr +hl +UG +"} +(6,1,1) = {" +UG +zI +Ns +dU +xp +nS +hr +fv +rh +nS +MU +iG +Qx +CY +UG +UG +"} +(7,1,1) = {" +UG +bF +DJ +DH +LY +go +dv +Wn +dv +tP +dv +bG +Uz +Se +UG +UG +"} +(8,1,1) = {" +UG +ke +UT +hn +Cc +RE +jc +Yr +Ft +cI +lL +SV +FI +Se +UG +UG +"} +(9,1,1) = {" +UG +eQ +nS +OF +DQ +Rd +ey +nV +LN +Tb +Zs +wv +mj +YK +hl +UG +"} +(10,1,1) = {" +UG +UG +eQ +sR +nS +nS +KV +Yk +NF +TU +AK +FX +pd +Qs +hl +UG +"} +(11,1,1) = {" +UG +UG +UG +UG +eQ +nS +QU +ur +Ue +Gb +qn +xA +NP +uM +hl +UG +"} +(12,1,1) = {" +UG +UG +UG +UG +UG +eQ +sR +VE +Xp +aa +eQ +zO +Yq +eQ +eQ +UG +"} +(13,1,1) = {" +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +"} diff --git a/maps/submaps/surface_submaps/valley/demonranch.dmm b/maps/submaps/surface_submaps/valley/demonranch.dmm new file mode 100644 index 0000000000..cc1b61c5e8 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/demonranch.dmm @@ -0,0 +1,1928 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ax" = ( +/obj/structure/closet/crate, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/energy/highend, +/obj/random/energy/highend, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/random/maintenance/misc, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/material/precious, +/obj/random/material/precious, +/obj/random/material/refined, +/obj/random/material/refined, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"aM" = ( +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"aT" = ( +/obj/structure/table/sifwoodentable, +/obj/random/mainttoyloot/nofail, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/medical/pillbottle, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"bm" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"bA" = ( +/obj/structure/table/sifwoodentable, +/obj/random/explorer_shield, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"cb" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"cc" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"dg" = ( +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"eM" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"gE" = ( +/obj/item/weapon/flame/candle/everburn, +/obj/structure/table/sifwoodentable, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"hq" = ( +/turf/simulated/floor/water, +/area/submap/demonranch) +"hz" = ( +/obj/effect/landmark/loot_spawn/low, +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"hY" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"ie" = ( +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"iw" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"kd" = ( +/mob/living/simple_mob/vore/demonAI{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"kz" = ( +/obj/structure/railing, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"lo" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"ml" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/device/personal_shield_generator/belt/security, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/spellbook/oneuse/charge, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"mC" = ( +/obj/random/projectile/random, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"mG" = ( +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"nh" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"nX" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/random/medical/pillbottle, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"nY" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"ot" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"pr" = ( +/turf/template_noop, +/area/submap/demonranch) +"pV" = ( +/turf/simulated/wall/log_sif{ + can_open = 1 + }, +/area/submap/demonranch) +"qA" = ( +/obj/structure/table/sifwoodentable, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"qC" = ( +/obj/item/clothing/shoes/cult, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"rg" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"rV" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"su" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"sA" = ( +/obj/fire, +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"ug" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"uu" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"uM" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"vk" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"wt" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"yj" = ( +/mob/living/simple_mob/humanoid/cultist/noodle, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"yT" = ( +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"zl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Ak" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/random/medical/pillbottle, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"AI" = ( +/mob/living/simple_mob/humanoid/cultist/tesh, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Bh" = ( +/obj/item/clothing/head/culthood/alt, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Dw" = ( +/obj/effect/landmark/loot_spawn, +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Fw" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle{ + faction = "cult" + }, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Gb" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Hj" = ( +/obj/item/clothing/suit/cultrobes, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"In" = ( +/obj/item/clothing/shoes/cult, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"IW" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/random/contraband/nofail, +/obj/random/medical/pillbottle, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"JL" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"JR" = ( +/obj/random/projectile/scrapped_shotgun, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"JY" = ( +/obj/item/clothing/suit/cultrobes/magusred, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Kt" = ( +/turf/simulated/wall/log_sif, +/area/submap/demonranch) +"KO" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"KS" = ( +/obj/structure/loot_pile/surface/bones, +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Mk" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Mq" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Nt" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Oz" = ( +/mob/living/simple_mob/humanoid/cultist/lizard, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"QH" = ( +/obj/structure/table/sifwoodentable, +/obj/random/firstaid, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"QO" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Rp" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Si" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"SG" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/pirate/las/armored{ + faction = "cult" + }, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Tn" = ( +/obj/item/clothing/suit/cultrobes/alt, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"TI" = ( +/obj/item/clothing/head/culthood, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"TL" = ( +/mob/living/simple_mob/vore/demonAI{ + faction = "cult" + }, +/obj/fire, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"Up" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"UD" = ( +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) +"UM" = ( +/obj/item/weapon/spellbook/oneuse/charge, +/turf/simulated/floor/water, +/area/submap/demonranch) +"VJ" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"WY" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Ye" = ( +/obj/item/clothing/head/culthood/magus, +/turf/simulated/floor/wood/sif, +/area/submap/demonranch) +"Zy" = ( +/turf/template_noop, +/area/template_noop) +"ZA" = ( +/obj/item/clothing/suit/cultrobes/alt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/demonranch) + +(1,1,1) = {" +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +"} +(2,1,1) = {" +Zy +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +Zy +"} +(3,1,1) = {" +Zy +pr +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +Kt +pr +Zy +"} +(4,1,1) = {" +Zy +pr +Kt +WY +mG +mG +Ye +Rp +Kt +Rp +mG +mG +mG +mG +Rp +Kt +Rp +ml +Rp +Kt +Rp +mG +mG +mG +mG +Rp +Kt +Rp +mG +mG +mG +WY +Kt +pr +Zy +"} +(5,1,1) = {" +Zy +pr +Kt +WY +ie +mG +mG +mG +Kt +mG +mG +mG +AI +mG +mG +pV +mG +mG +mG +pV +mG +mG +AI +mG +mG +mG +Kt +mG +mG +mG +ie +WY +Kt +pr +Zy +"} +(6,1,1) = {" +Zy +pr +Kt +WY +mG +mG +mG +mG +cc +mG +mG +mG +mG +yT +nX +Kt +mG +yj +mG +Kt +Ak +yT +mG +mG +mG +mG +cc +mG +mG +mG +mG +WY +Kt +pr +Zy +"} +(7,1,1) = {" +Zy +pr +Kt +WY +mG +mG +Oz +mG +Kt +mG +mG +mG +ie +mG +IW +Kt +mG +mG +mG +Kt +IW +mG +ie +mG +mG +mG +Kt +mG +Oz +mG +mG +WY +Kt +pr +Zy +"} +(8,1,1) = {" +Zy +pr +Kt +WY +mG +mG +mG +Rp +Kt +Rp +JL +mG +mG +mG +JL +Kt +qA +Rp +qA +Kt +JL +mG +mG +mG +JL +Rp +Kt +Rp +mG +mG +mG +WY +Kt +pr +Zy +"} +(9,1,1) = {" +Zy +pr +Kt +Kt +Kt +cc +Kt +Kt +Kt +Kt +Kt +Gb +Gb +Gb +Gb +Kt +Kt +Kt +Kt +Kt +Gb +Gb +Gb +Gb +Kt +Kt +Kt +Kt +Kt +cc +Kt +Kt +Kt +pr +Zy +"} +(10,1,1) = {" +Zy +pr +Kt +Rp +mG +mG +mG +Rp +Kt +uM +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +bm +Nt +Kt +Rp +mG +mG +mG +Rp +Kt +pr +Zy +"} +(11,1,1) = {" +Zy +pr +Kt +mG +mG +JY +mG +JL +Kt +eM +su +su +su +su +su +su +su +aM +aM +aM +su +su +su +su +su +lo +Kt +JL +In +mG +mG +mG +Kt +pr +Zy +"} +(12,1,1) = {" +Zy +pr +Kt +aT +mG +mG +ie +mG +kz +eM +su +ot +su +su +kd +aM +hz +KS +su +aM +aM +kd +su +Si +su +lo +zl +mG +mG +mG +AI +QH +Kt +pr +Zy +"} +(13,1,1) = {" +Zy +pr +Kt +bA +mG +yT +mG +mG +kz +eM +su +su +su +su +aM +aM +su +su +su +su +aM +aM +aM +su +su +lo +zl +mG +mG +yT +mG +bA +Kt +pr +Zy +"} +(14,1,1) = {" +Zy +pr +Kt +QH +AI +mG +mG +mG +kz +eM +su +TL +su +aM +aM +Si +su +su +su +aM +aM +su +aM +KS +aM +lo +zl +mG +ie +mG +mG +aT +Kt +pr +Zy +"} +(15,1,1) = {" +Zy +pr +Kt +mG +mG +mG +In +JL +Kt +eM +su +aM +aM +aM +ot +mC +su +hq +hq +aM +iw +su +su +su +aM +lo +Kt +JL +mG +mG +Tn +mG +Kt +pr +Zy +"} +(16,1,1) = {" +Zy +pr +Kt +Rp +mG +mG +mG +Rp +Kt +eM +su +su +aM +aM +aM +su +su +hq +hq +su +su +su +kd +aM +aM +lo +Kt +Rp +mG +Bh +mG +Rp +Kt +pr +Zy +"} +(17,1,1) = {" +Zy +pr +Kt +Kt +Kt +cc +Kt +Kt +Kt +eM +su +Si +aM +su +aM +aM +hq +hq +hq +hq +su +JR +su +aM +su +lo +Kt +Kt +Kt +cc +Kt +Kt +Kt +pr +Zy +"} +(18,1,1) = {" +Zy +pr +pr +pr +pr +su +su +QO +bm +wt +su +su +aM +kd +su +aM +hq +hq +hq +hq +su +su +aM +aM +su +Up +bm +QO +su +pr +pr +pr +pr +pr +Zy +"} +(19,1,1) = {" +Zy +pr +pr +pr +pr +pr +pr +su +su +sA +su +KS +aM +su +su +hq +hq +hq +hq +hq +su +aM +KS +aM +su +sA +su +su +su +pr +pr +pr +pr +pr +Zy +"} +(20,1,1) = {" +Zy +pr +pr +pr +pr +pr +pr +pr +su +sA +su +aM +su +su +hq +hq +hq +hq +hq +hq +aM +aM +su +aM +aM +sA +su +su +pr +pr +pr +pr +pr +pr +Zy +"} +(21,1,1) = {" +Zy +pr +pr +pr +pr +pr +pr +su +su +sA +aM +aM +aM +aM +hq +hq +hq +UM +hq +hq +hq +su +su +su +su +sA +su +pr +pr +pr +pr +pr +pr +pr +Zy +"} +(22,1,1) = {" +Zy +pr +pr +pr +pr +pr +su +su +su +sA +aM +su +su +aM +aM +hq +hq +hq +hq +hq +hq +su +su +mC +su +sA +su +pr +pr +pr +pr +pr +pr +pr +Zy +"} +(23,1,1) = {" +Zy +pr +pr +pr +pr +su +su +su +su +sA +aM +aM +su +su +su +hq +hq +hq +hq +hq +hq +su +su +su +aM +sA +su +pr +pr +pr +pr +pr +pr +pr +Zy +"} +(24,1,1) = {" +Zy +pr +pr +pr +pr +su +su +cb +nh +vk +su +aM +su +mC +su +su +kd +hq +hq +hq +hq +su +kd +su +aM +ug +nh +cb +su +su +pr +pr +pr +pr +Zy +"} +(25,1,1) = {" +Zy +pr +Kt +Kt +Kt +cc +Kt +Kt +Kt +eM +su +aM +TL +su +su +su +aM +sA +hq +hq +aM +su +su +aM +aM +lo +Kt +Kt +Kt +mG +Kt +Kt +su +pr +Zy +"} +(26,1,1) = {" +Zy +pr +uu +mG +Bh +mG +mG +Rp +Kt +eM +su +su +aM +aM +su +ot +aM +aM +su +su +aM +aM +su +aM +su +lo +Kt +Rp +mG +mG +mG +su +su +pr +Zy +"} +(27,1,1) = {" +Zy +pr +Kt +mG +mG +mG +mG +mG +Kt +eM +su +su +su +Dw +aM +aM +aM +su +mC +su +su +aM +aM +hz +su +lo +Kt +mG +AI +mG +su +su +uu +pr +Zy +"} +(28,1,1) = {" +Zy +pr +Kt +AI +mG +VJ +mG +VJ +kz +eM +su +iw +su +su +aM +su +su +su +su +su +Si +aM +aM +ot +su +lo +zl +VJ +mG +VJ +su +su +Kt +pr +Zy +"} +(29,1,1) = {" +Zy +pr +su +su +mG +VJ +mG +VJ +kz +eM +su +su +TL +aM +KS +aM +su +su +kd +su +aM +TL +aM +aM +su +lo +zl +VJ +TI +hY +su +su +Kt +pr +Zy +"} +(30,1,1) = {" +Zy +pr +su +su +mG +VJ +mG +VJ +kz +eM +su +aM +aM +su +su +aM +hz +su +su +KS +aM +su +su +aM +su +lo +zl +VJ +mG +hY +su +su +Kt +pr +Zy +"} +(31,1,1) = {" +Zy +pr +su +su +dg +mG +mG +mG +Kt +eM +su +aM +su +su +su +su +aM +aM +aM +aM +su +su +su +aM +aM +lo +Kt +mG +mG +su +dg +su +Kt +pr +Zy +"} +(32,1,1) = {" +Zy +pr +su +su +su +mG +mG +Rp +Kt +KO +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +nh +Mq +Kt +Rp +mG +mG +su +su +Kt +pr +Zy +"} +(33,1,1) = {" +Zy +pr +uu +su +su +rg +Kt +Kt +Kt +Kt +Kt +rV +rV +rV +rV +Kt +Kt +Kt +Kt +Kt +rV +rV +rV +rV +Kt +Kt +Kt +Kt +Kt +cc +Kt +su +su +pr +Zy +"} +(34,1,1) = {" +Zy +pr +uu +su +su +su +mG +AI +Kt +gE +mG +SG +VJ +VJ +SG +Kt +Rp +ax +qA +Kt +SG +VJ +VJ +SG +mG +Rp +Kt +AI +mG +mG +mG +mG +su +pr +Zy +"} +(35,1,1) = {" +Zy +pr +Kt +su +ZA +su +su +mG +uu +mG +mG +mG +mG +mG +mG +Kt +mG +ie +mG +Kt +mG +mG +mG +mG +mG +mG +Kt +mG +mG +mG +mG +su +uu +pr +Zy +"} +(36,1,1) = {" +Zy +pr +Kt +mG +su +su +su +su +cc +mG +mG +VJ +VJ +Fw +VJ +pV +mG +yT +mG +pV +VJ +Fw +VJ +VJ +mG +mG +cc +mG +mG +Hj +su +su +su +pr +Zy +"} +(37,1,1) = {" +Zy +pr +Kt +mG +su +su +su +su +Kt +mG +mG +mG +su +su +su +Kt +mG +ie +mG +Kt +mG +su +su +mG +mG +mG +Kt +mG +mG +mG +su +mG +su +pr +Zy +"} +(38,1,1) = {" +Zy +pr +Kt +ie +mG +su +qC +su +Kt +gE +mG +hY +Mk +hY +hY +Kt +qA +ax +Rp +Kt +hY +hY +Mk +hY +su +Rp +Kt +In +mG +su +su +UD +uu +pr +Zy +"} +(39,1,1) = {" +Zy +pr +Kt +Kt +Kt +su +su +su +Kt +Kt +nY +nY +uu +uu +nY +Kt +Kt +Kt +Kt +Kt +Kt +nY +Kt +Kt +nY +Kt +Kt +Kt +Kt +su +uu +uu +uu +pr +Zy +"} +(40,1,1) = {" +Zy +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +pr +Zy +"} +(41,1,1) = {" +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +"} diff --git a/maps/submaps/surface_submaps/valley/dronelord.dmm b/maps/submaps/surface_submaps/valley/dronelord.dmm new file mode 100644 index 0000000000..70b48d8f58 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/dronelord.dmm @@ -0,0 +1,1043 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 8 + }, +/mob/living/simple_mob/humanoid/merc/ranged/space/suppressor/elite, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"aj" = ( +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/submap/dronelord) +"ax" = ( +/obj/structure/table/glass, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"ay" = ( +/mob/living/simple_mob/mechanical/combat_drone{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"bl" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"bA" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"cw" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"cS" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"dq" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"dw" = ( +/obj/item/weapon/gun/projectile/automatic/as24, +/obj/item/weapon/tank/jetpack/oxygen, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"ec" = ( +/obj/structure/closet/toolcloset, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/random/tool/power, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"eD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"eL" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"fU" = ( +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"gQ" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"jy" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/clotting, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"ko" = ( +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/submap/dronelord) +"kD" = ( +/mob/living/simple_mob/mechanical/combat_drone{ + faction = "syndicate" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"lO" = ( +/mob/living/simple_mob/mechanical/combat_drone{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"mG" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/darkred, +/area/submap/dronelord) +"mO" = ( +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"od" = ( +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"sV" = ( +/obj/structure/table/standard, +/obj/item/weapon/telecube/randomized, +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"tK" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/dronelord) +"wv" = ( +/mob/living/simple_mob/mechanical/combat_drone{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"wZ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_r" + }, +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/submap/dronelord) +"xz" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"yh" = ( +/turf/simulated/wall/durasteel, +/area/submap/dronelord) +"yD" = ( +/mob/living/simple_mob/mechanical/mining_drone{ + faction = "syndicate" + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/dronelord) +"zi" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/turf/simulated/shuttle/plating, +/area/submap/dronelord) +"BM" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"En" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/projectile/giskard/olivaw, +/obj/item/weapon/gun/energy/lasershotgun, +/obj/item/weapon/gun/energy/particle/cannon, +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"Fc" = ( +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/window/plastitanium/full, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"FQ" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"Gi" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/submap/dronelord) +"GM" = ( +/mob/living/simple_mob/mechanical/combat_drone{ + faction = "syndicate" + }, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"Ic" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"Ix" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/submap/dronelord) +"IU" = ( +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"Ja" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"JY" = ( +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"Kp" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/voidcraft, +/area/submap/dronelord) +"Kv" = ( +/turf/simulated/shuttle/floor/voidcraft, +/area/submap/dronelord) +"KU" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"Lv" = ( +/obj/machinery/autolathe, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"Ov" = ( +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"OA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/dronelord) +"RI" = ( +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/gun/projectile/automatic/as24, +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"RV" = ( +/turf/template_noop, +/area/template_noop) +"Sw" = ( +/obj/machinery/bodyscanner, +/turf/simulated/shuttle/floor/white, +/area/submap/dronelord) +"TX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/submap/dronelord) +"Ul" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/projectile/multi_cannon, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/item/ammo_casing/macrobattery/buff, +/obj/item/ammo_casing/macrobattery/ouchie, +/obj/item/ammo_casing/macrobattery/healie, +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"Uz" = ( +/obj/structure/table/standard, +/obj/item/weapon/card/emag/used, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/purple, +/area/submap/dronelord) +"VO" = ( +/turf/simulated/shuttle/floor/black, +/area/submap/dronelord) +"WO" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/magnetic/matfed, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/sickshot, +/turf/simulated/shuttle/floor/red, +/area/submap/dronelord) +"YR" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/submap/dronelord) + +(1,1,1) = {" +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +"} +(2,1,1) = {" +RV +RV +RV +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +RV +RV +RV +"} +(3,1,1) = {" +RV +RV +RV +RV +tK +tK +yD +tK +tK +tK +tK +tK +yD +tK +tK +RV +RV +RV +RV +"} +(4,1,1) = {" +RV +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +RV +"} +(5,1,1) = {" +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +"} +(6,1,1) = {" +RV +tK +tK +tK +tK +tK +aj +aj +fU +mO +Fc +aj +aj +tK +tK +tK +tK +tK +RV +"} +(7,1,1) = {" +RV +tK +yD +tK +tK +aj +aj +Ic +Ic +Ic +Ic +Ic +aj +aj +tK +tK +yD +tK +RV +"} +(8,1,1) = {" +RV +tK +tK +tK +tK +aj +bl +VO +aa +VO +aa +VO +KU +aj +tK +tK +tK +tK +RV +"} +(9,1,1) = {" +RV +tK +tK +tK +tK +aj +eD +VO +VO +wv +VO +VO +Lv +aj +tK +tK +tK +tK +RV +"} +(10,1,1) = {" +RV +tK +tK +tK +tK +aj +aj +aj +VO +VO +VO +aj +aj +aj +tK +tK +tK +tK +RV +"} +(11,1,1) = {" +RV +tK +tK +tK +zi +aj +aj +aj +aj +VO +aj +aj +aj +aj +zi +tK +tK +tK +RV +"} +(12,1,1) = {" +RV +tK +tK +tK +tK +aj +aj +cw +aj +Kp +aj +BM +aj +aj +tK +tK +tK +tK +RV +"} +(13,1,1) = {" +RV +tK +yD +tK +tK +aj +En +IU +aj +Kv +aj +Ov +dq +aj +tK +tK +yD +tK +RV +"} +(14,1,1) = {" +RV +tK +tK +tK +tK +aj +Ul +lO +Kp +Kv +Kp +ay +Uz +aj +tK +tK +tK +tK +RV +"} +(15,1,1) = {" +RV +tK +tK +tK +tK +aj +WO +IU +aj +YR +aj +Ov +sV +aj +tK +tK +tK +tK +RV +"} +(16,1,1) = {" +RV +tK +tK +tK +tK +aj +aj +cw +aj +Kp +aj +BM +aj +aj +tK +tK +tK +tK +RV +"} +(17,1,1) = {" +RV +tK +tK +tK +zi +aj +aj +aj +aj +Kv +aj +aj +aj +aj +zi +tK +tK +tK +RV +"} +(18,1,1) = {" +RV +tK +tK +tK +tK +aj +dw +yh +Gi +Kv +mG +yh +RI +aj +tK +tK +tK +tK +RV +"} +(19,1,1) = {" +RV +tK +yD +tK +tK +aj +aj +aj +aj +Kv +aj +aj +aj +aj +tK +tK +yD +tK +RV +"} +(20,1,1) = {" +RV +tK +tK +tK +tK +aj +ec +JY +aj +Kp +aj +od +Sw +aj +tK +tK +tK +tK +RV +"} +(21,1,1) = {" +RV +tK +tK +tK +tK +aj +Ja +OA +aj +Ix +aj +od +cS +aj +tK +tK +tK +tK +RV +"} +(22,1,1) = {" +RV +tK +tK +tK +tK +aj +bA +kD +Kp +Kv +Kp +GM +ax +aj +tK +tK +tK +tK +RV +"} +(23,1,1) = {" +RV +tK +tK +tK +zi +aj +FQ +gQ +aj +Kv +ko +od +xz +aj +zi +tK +tK +tK +RV +"} +(24,1,1) = {" +RV +tK +tK +tK +tK +aj +eL +eL +aj +Kv +ko +od +jy +aj +tK +tK +tK +tK +RV +"} +(25,1,1) = {" +RV +tK +yD +tK +tK +TX +TX +TX +aj +Kp +aj +TX +TX +TX +tK +tK +yD +tK +RV +"} +(26,1,1) = {" +RV +tK +tK +tK +tK +wZ +wZ +wZ +aj +Kv +aj +wZ +wZ +wZ +tK +tK +tK +tK +RV +"} +(27,1,1) = {" +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +"} +(28,1,1) = {" +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +"} +(29,1,1) = {" +RV +RV +RV +tK +tK +tK +yD +tK +tK +tK +tK +tK +yD +tK +tK +tK +RV +RV +RV +"} +(30,1,1) = {" +RV +RV +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +RV +RV +"} +(31,1,1) = {" +RV +RV +RV +RV +RV +tK +tK +tK +tK +tK +tK +tK +tK +tK +RV +RV +RV +RV +RV +"} +(32,1,1) = {" +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +"} diff --git a/maps/submaps/surface_submaps/valley/eclipseaqua.dmm b/maps/submaps/surface_submaps/valley/eclipseaqua.dmm new file mode 100644 index 0000000000..05c65fd1cf --- /dev/null +++ b/maps/submaps/surface_submaps/valley/eclipseaqua.dmm @@ -0,0 +1,2663 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/turf/simulated/floor/wood, +/area/submap/eclipseaqua) +"au" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"aV" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"ca" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/combat/equipped, +/obj/item/rig_module/vision/nvg, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"cC" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"dm" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/celery, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"eb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"ew" = ( +/obj/machinery/light, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"eK" = ( +/obj/structure/table/steel, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"fi" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"gA" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"gH" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"gR" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"iy" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"jw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"jR" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"kd" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"lS" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/ambrosiadeus, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"mi" = ( +/turf/template_noop, +/area/template_noop) +"mL" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/projectile/random, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"nc" = ( +/obj/structure/railing, +/turf/simulated/floor/water, +/area/submap/eclipseaqua) +"nf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"nz" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"ob" = ( +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"pq" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"pE" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water, +/area/submap/eclipseaqua) +"pN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"rH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"rR" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"sX" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"ta" = ( +/turf/simulated/floor/water, +/area/submap/eclipseaqua) +"uU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"vt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"vu" = ( +/obj/machinery/power/terminal{ + dir = 8; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"xO" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/guardian, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"yn" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"yX" = ( +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/item/stack/material/void_opal, +/obj/structure/table/rack, +/turf/simulated/floor/reinforced/airless, +/area/submap/eclipseaqua) +"zo" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"zB" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/celery, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Cn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Cv" = ( +/obj/machinery/power/apc{ + pixel_y = -24 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"CM" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Dv" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/obj/item/rig_module/mounted/egun, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Dw" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/energy/highend, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Ej" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Ek" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Ev" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/obj/item/rig_module/chem_dispenser/combat, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"EE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Ho" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"HD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"IS" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/security, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"IY" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/glass/bottle/left4zed, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"JQ" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Kh" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Kv" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/handgun, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"KH" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"LC" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"My" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Ne" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/submap/eclipseaqua) +"Oi" = ( +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Oo" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/grenade/lethal, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Pf" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"Po" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Qc" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/celery, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Qu" = ( +/turf/simulated/wall/concrete, +/area/submap/eclipseaqua) +"QB" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/toolbox, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Rt" = ( +/turf/simulated/floor/outdoors/rocks, +/area/submap/eclipseaqua) +"Ry" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"SE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipseaqua) +"TA" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/breacher, +/obj/item/rig_module/pat_module, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"UF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"UH" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/firstaid, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"UI" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/security, +/obj/item/stack/nanopaste/advanced, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"UJ" = ( +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"US" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"UU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Vg" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Vn" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/gun/random, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"WS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Xm" = ( +/obj/structure/table/steel, +/obj/random/ammo, +/obj/random/ammo, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Yt" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"Zm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipseaqua) +"ZK" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/submap/eclipseaqua) + +(1,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(2,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(3,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(4,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +Rt +ta +nc +ah +ah +ah +pE +ta +Rt +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(5,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(6,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +"} +(7,1,1) = {" +mi +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +mi +"} +(8,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(9,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(10,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(11,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(12,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +EE +au +au +au +Qu +Qu +Pf +Pf +Pf +Qu +Qu +au +au +au +pN +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(13,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +rH +WS +Ry +Ry +Ry +QB +Qu +Pf +Pf +Pf +Qu +Xm +Ry +Ry +Ry +HD +pN +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(14,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +rH +My +Ry +sX +gA +Ry +Xm +Qu +Pf +Pf +Pf +Qu +Dw +sX +gA +Ry +Ry +Cn +pN +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(15,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +rH +vt +Qu +Qu +Qu +ob +Qu +Qu +Qu +Pf +Pf +Pf +Qu +Qu +Qu +ob +Qu +Qu +Qu +vt +pN +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(16,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +rH +WS +Ry +Qu +lS +IY +Ry +Ry +nz +Qu +Pf +gR +Pf +Qu +Ry +Ry +Vg +aV +xO +Qu +Ry +HD +pN +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(17,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +US +Qu +uU +Ho +Ry +Ry +Ry +ob +Pf +zo +Pf +Qu +Ry +Vg +eK +eK +cC +Qu +nf +Ry +UF +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(18,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +gA +ob +Ry +Ry +Ry +Ry +dm +Qu +Qu +Qu +Qu +Qu +nf +Vg +eK +eK +Vg +ob +gA +Ry +UF +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(19,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +Ry +Qu +Ry +Ry +Ry +rR +Qc +Qu +Ry +jw +Ry +ob +Ry +gH +Vg +Vg +Ry +Qu +Ry +Ry +UF +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(20,1,1) = {" +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +Qu +Xm +Kv +Qu +Qc +Qc +zB +Ry +Qu +Qu +Ry +Ry +Ry +Qu +Qu +Ry +sX +Ry +Ry +Qu +Oo +Xm +Qu +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +"} +(21,1,1) = {" +mi +mi +Rt +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +Qu +Qu +Qu +Qu +Qu +Qu +Qu +ob +Qu +Ev +Ry +Ry +Ry +ca +Qu +Qu +Qu +ob +Qu +Qu +Qu +Qu +Qu +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +Rt +mi +mi +"} +(22,1,1) = {" +mi +mi +Rt +ah +ah +ah +ah +ah +ah +ah +ah +Pf +Pf +Pf +Pf +Pf +Pf +Qu +Ry +Ry +Ry +Ry +Yt +Ry +Ry +Ry +Ry +Qu +Pf +Pf +Pf +Pf +Pf +Pf +ah +ah +ah +ah +ah +ah +ah +ah +Rt +mi +mi +"} +(23,1,1) = {" +mi +mi +Rt +ah +ah +ah +ah +ah +ah +ah +ah +Pf +Pf +Pf +Pf +gR +ew +Qu +nf +Ry +Ry +xO +yX +CM +Ry +Ry +US +Qu +fi +gR +Pf +Pf +Pf +Pf +ah +ah +ah +ah +ah +ah +ah +ah +Rt +mi +mi +"} +(24,1,1) = {" +mi +mi +Rt +ah +ah +ah +ah +ah +ah +ah +ah +Pf +Pf +Pf +Pf +Pf +Pf +Qu +Ry +Ry +Ry +Ry +kd +Ry +Ry +Ry +Ry +Qu +Pf +Pf +Pf +Pf +Pf +Pf +ah +ah +ah +ah +ah +ah +ah +ah +Rt +mi +mi +"} +(25,1,1) = {" +mi +mi +Rt +Ne +Ne +Ne +Ne +Ne +Ne +Ne +Ne +Qu +Qu +Qu +Qu +Qu +ob +Qu +Qu +Qu +TA +Ry +Ry +Ry +Dv +Qu +ob +Qu +Qu +Qu +Qu +Qu +Qu +Qu +Ne +Ne +Ne +Ne +Ne +Ne +Ne +Ne +Rt +mi +mi +"} +(26,1,1) = {" +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +Qu +Xm +LC +Qu +jw +Ry +UJ +pq +Qu +Qu +Ry +Ry +Ry +Qu +Qu +Ry +jw +Ry +yn +Qu +Vn +Xm +Qu +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +"} +(27,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +Ry +Qu +Ry +Ry +Ry +vu +Ry +ob +Ry +sX +Ry +Qu +yn +JQ +Ry +Ry +KH +Qu +Ry +Ry +Ek +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(28,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +gA +ob +Ry +JQ +Ry +Ej +US +Qu +Qu +Qu +Qu +Qu +IS +Ry +Ry +Ry +Ry +ob +gA +Ry +Ek +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(29,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Ek +Ry +US +Qu +Oi +Ry +iy +Zm +Cv +Qu +Pf +SE +Pf +ob +Ry +Ry +Ry +Ho +jR +Qu +nf +Ry +Ek +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(30,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +Po +pN +Ry +Qu +pq +Kh +eb +Ry +Yt +Qu +Pf +gR +Pf +Qu +yn +KH +Ry +yn +UI +Qu +Ry +EE +WS +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(31,1,1) = {" +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +Po +UU +Qu +Qu +Qu +ob +Qu +Qu +Qu +Pf +Pf +Pf +Qu +Qu +Qu +ob +Qu +Qu +Qu +UU +WS +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +"} +(32,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +Po +My +Ry +jw +gA +Ry +mL +Qu +Pf +Pf +Pf +Qu +UH +Ry +gA +jw +Ry +Cn +WS +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(33,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +Po +pN +Ry +Ry +Ry +Xm +Qu +Pf +Pf +Pf +Qu +Xm +Ry +Ry +Ry +EE +WS +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(34,1,1) = {" +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Po +au +au +au +Qu +Qu +Pf +Pf +Pf +Qu +Qu +au +au +au +WS +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +"} +(35,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(36,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(37,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(38,1,1) = {" +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +"} +(39,1,1) = {" +mi +mi +mi +mi +mi +mi +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +mi +mi +mi +mi +mi +mi +"} +(40,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +ta +ta +ta +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +ta +ta +ta +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +"} +(41,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +ta +ta +ta +ta +ta +ta +nc +ah +ah +ah +pE +ta +ta +ta +ta +ta +ta +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(42,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +Rt +ta +nc +ah +ah +ah +pE +ta +Rt +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(43,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +Rt +Rt +Rt +Rt +Rt +Rt +Rt +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(44,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} +(45,1,1) = {" +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +"} diff --git a/maps/submaps/surface_submaps/valley/eclipsedigsight.dmm b/maps/submaps/surface_submaps/valley/eclipsedigsight.dmm new file mode 100644 index 0000000000..f6e913de09 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/eclipsedigsight.dmm @@ -0,0 +1,1920 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"bl" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/radiation, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"cm" = ( +/obj/machinery/door/airlock/research, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"cB" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/firstaid, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"ed" = ( +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"es" = ( +/obj/machinery/door/airlock/research, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"eW" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"fa" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"fq" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"fF" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"gt" = ( +/obj/machinery/artifact, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"gZ" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"hU" = ( +/turf/template_noop, +/area/template_noop) +"jv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"kZ" = ( +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"lk" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"ly" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"lF" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"md" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"mm" = ( +/turf/simulated/wall/r_wall, +/area/submap/eclipsedigsight) +"mU" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"nN" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"nP" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"nQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"pW" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"rk" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"rn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"rA" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"sb" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"sE" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"sH" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"th" = ( +/obj/machinery/power/apc{ + pixel_y = -24 + }, +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"uQ" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"vY" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/tool/alien, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"wd" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"wm" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"wH" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/guardian, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"xF" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"zN" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"AK" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"CL" = ( +/turf/simulated/wall, +/area/submap/eclipsedigsight) +"CQ" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Dp" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Dq" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"DN" = ( +/obj/machinery/door/window/southright, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"DV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"DX" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"EM" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"EY" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Fc" = ( +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"FE" = ( +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"FQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"FS" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Gg" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"Hx" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Is" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"IA" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/rigsuit, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"JB" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"JD" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"JI" = ( +/obj/machinery/door/window/southright{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"KF" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"KQ" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Le" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Ma" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Mk" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/toolbox, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"MD" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/obj/item/stack/material/void_opal, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"MR" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"NH" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"NS" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Oy" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/vending/foodfish, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"ON" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Pb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Pv" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"PT" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"PW" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Qb" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Qd" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Ro" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Td" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Th" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"TE" = ( +/obj/machinery/door/window/southright{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"TO" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Un" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"UD" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"UV" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Vh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Vl" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"VA" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"VS" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Wc" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"WX" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Xx" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"XC" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsedigsight) +"Ys" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"YH" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"Zk" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Zo" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/titanium/full, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsedigsight) +"Zv" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/table/reinforced, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) +"Zw" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/eclipsedigsight) +"ZT" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/submap/eclipsedigsight) + +(1,1,1) = {" +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +"} +(2,1,1) = {" +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +"} +(3,1,1) = {" +hU +hU +hU +hU +Hx +fq +fq +fq +fq +Dq +pW +pW +pW +VS +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +fq +Dq +pW +pW +pW +VS +fq +fq +fq +fq +fq +nN +hU +hU +hU +hU +"} +(4,1,1) = {" +hU +hU +hU +Hx +Dq +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +VS +nN +hU +hU +hU +"} +(5,1,1) = {" +hU +hU +Hx +Dq +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +VS +nN +hU +hU +"} +(6,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +mm +mm +mm +mm +mm +mm +mm +mm +pW +pW +pW +pW +pW +pW +mm +mm +mm +mm +mm +mm +mm +mm +mm +mm +mm +mm +mm +pW +fF +hU +hU +"} +(7,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +sH +Th +sH +sH +sH +Th +sH +mm +pW +XC +pW +pW +pW +PW +mm +Oy +sH +DX +sH +sH +TO +JB +sE +Zv +IA +sE +mm +pW +fF +hU +hU +"} +(8,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +es +sH +wH +sH +TO +sH +sH +sH +mm +pW +pW +pW +pW +pW +pW +es +sH +sH +sH +sH +sH +sH +fa +cB +sH +sH +ZT +mm +pW +fF +hU +hU +"} +(9,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +sH +sH +CQ +sb +sH +sH +sH +mm +pW +pW +pW +Dp +pW +pW +es +sH +sH +sH +sH +sH +sH +Zk +sE +sH +sH +sH +mm +pW +fF +hU +hU +"} +(10,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +sH +AK +vY +CL +EY +TE +UD +mm +pW +pW +pW +pW +pW +pW +mm +Wc +sH +Is +sH +sH +wH +MR +sH +sH +sH +sH +mm +pW +fF +hU +hU +"} +(11,1,1) = {" +hU +hU +JD +pW +pW +WX +pW +pW +mm +sH +sH +sE +wd +nQ +jv +rn +mm +pW +gZ +pW +pW +pW +Un +mm +mm +mm +mm +mm +mm +mm +mm +mm +sH +sH +sH +mm +pW +fF +hU +hU +"} +(12,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +VA +sH +sE +Ys +zN +gt +ed +mm +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +mm +ly +xF +lk +mm +pW +fF +hU +hU +"} +(13,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +sH +sb +Zv +FS +Pb +Le +Ro +mm +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +mm +sH +sH +sH +mm +pW +fF +hU +hU +"} +(14,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +mm +mm +mm +mm +mm +mm +mm +mm +mm +pW +pW +mm +mm +mm +mm +mm +mm +pW +pW +pW +pW +pW +pW +mm +uQ +JI +eW +mm +pW +fF +hU +hU +"} +(15,1,1) = {" +hU +hU +JD +pW +pW +Hx +PT +PT +PT +PT +PT +PT +PT +KF +pW +pW +pW +pW +pW +mm +sH +Th +sH +sH +mm +pW +pW +pW +pW +pW +pW +mm +Vh +DV +FQ +mm +pW +fF +hU +hU +"} +(16,1,1) = {" +hU +hU +JD +pW +pW +JD +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Gg +KF +pW +pW +pW +pW +mm +rk +sH +NS +sH +es +pW +pW +XC +pW +pW +pW +mm +Ma +gt +FE +mm +pW +fF +hU +hU +"} +(17,1,1) = {" +hU +hU +JD +pW +pW +JD +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +YH +pW +pW +pW +pW +mm +sH +sH +sH +sH +mm +pW +pW +pW +pW +pW +pW +mm +Td +Vl +bc +mm +pW +fF +hU +hU +"} +(18,1,1) = {" +hU +hU +JD +pW +pW +Qb +Zw +Zw +Zw +Zw +md +Fc +Fc +Fc +YH +mm +mm +mm +mm +mm +sH +ZT +CL +CL +mm +pW +pW +pW +pW +pW +pW +mm +mm +mm +mm +mm +pW +fF +hU +hU +"} +(19,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +pW +pW +JD +Fc +Fc +Xx +wm +mm +nQ +jv +rn +Pv +sH +sH +sH +IA +mm +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +fF +hU +hU +"} +(20,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +MD +pW +JD +Fc +Fc +YH +pW +mm +zN +gt +ed +DN +bl +TO +sH +Mk +mm +pW +pW +pW +pW +pW +gZ +pW +pW +pW +pW +pW +pW +fF +hU +hU +"} +(21,1,1) = {" +hU +hU +JD +pW +pW +pW +pW +pW +pW +pW +JD +Fc +Xx +wm +pW +mm +Pb +Le +Ro +Zo +sH +sH +sH +Zv +mm +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +fF +hU +hU +"} +(22,1,1) = {" +hU +hU +JD +pW +pW +pW +Hx +PT +PT +PT +nP +Fc +YH +pW +pW +mm +mm +mm +mm +mm +sH +ZT +CL +CL +mm +pW +pW +pW +pW +pW +pW +mm +mm +mm +mm +pW +pW +fF +hU +hU +"} +(23,1,1) = {" +hU +hU +JD +pW +pW +pW +JD +Fc +Fc +Fc +Fc +Fc +YH +pW +pW +pW +pW +pW +pW +mm +sH +sH +sH +sH +mm +pW +pW +pW +KQ +pW +pW +cm +kZ +ON +mm +pW +pW +fF +hU +hU +"} +(24,1,1) = {" +hU +hU +JD +pW +pW +pW +JD +Fc +Fc +Fc +Fc +Xx +wm +pW +pW +pW +pW +pW +pW +mm +UV +sH +NH +sH +es +pW +pW +pW +pW +pW +pW +mm +EM +th +mm +pW +pW +fF +hU +hU +"} +(25,1,1) = {" +hU +hU +JD +pW +pW +pW +JD +Fc +Fc +Fc +Xx +wm +pW +pW +pW +pW +pW +pW +pW +mm +sH +sb +sH +sH +mm +pW +PW +pW +pW +pW +pW +mm +mm +mm +mm +pW +pW +fF +hU +hU +"} +(26,1,1) = {" +hU +hU +Qb +lF +pW +pW +Qb +lF +pW +Qd +rA +pW +pW +pW +pW +pW +pW +pW +pW +mm +mm +mm +mm +mm +mm +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +Qd +rA +hU +hU +"} +(27,1,1) = {" +hU +hU +hU +Qb +lF +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +Qd +rA +hU +hU +hU +"} +(28,1,1) = {" +hU +hU +hU +hU +Qb +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +lF +pW +pW +pW +Qd +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +rA +hU +hU +hU +hU +"} +(29,1,1) = {" +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +"} +(30,1,1) = {" +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +hU +"} diff --git a/maps/submaps/surface_submaps/valley/eclipselava.dmm b/maps/submaps/surface_submaps/valley/eclipselava.dmm new file mode 100644 index 0000000000..b62b20e431 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/eclipselava.dmm @@ -0,0 +1,3771 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"at" = ( +/obj/structure/table/steel, +/obj/random/projectile, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"aQ" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"aY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rplastihull, +/area/submap/eclipselava) +"bj" = ( +/obj/structure/table/steel, +/obj/random/energy/highend, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"bp" = ( +/turf/simulated/wall/rplastihull, +/area/submap/eclipselava) +"bB" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/gun/projectile/automatic/sol, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"bI" = ( +/obj/structure/table/steel, +/obj/random/maintenance/medical, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"df" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"dj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"dw" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"dB" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/gun/energy/gun/rifle, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"dE" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"eH" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"fi" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/lava, +/area/submap/eclipselava) +"fG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"fW" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"gt" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/guardian, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"gu" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"gP" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"hg" = ( +/obj/structure/table/hardwoodtable, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"hB" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"il" = ( +/obj/structure/table/steel, +/obj/random/energy/sec, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"iq" = ( +/obj/structure/table/steel, +/obj/random/rigsuit, +/obj/random/maintenance/medical, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"iI" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/guardian, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"jo" = ( +/obj/item/stack/material/void_opal, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"jS" = ( +/obj/structure/table/rack/shelf, +/obj/item/slime_extract/emerald, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"jU" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"la" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"mn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"mz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"mI" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/lava, +/area/submap/eclipselava) +"mL" = ( +/obj/machinery/door/window/southright{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"ni" = ( +/mob/living/simple_mob/vore/bigdragon{ + faction = "eclipse" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"nk" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"np" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"nC" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"nE" = ( +/obj/structure/table/steel, +/obj/random/mainttoyloot/nofail, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"nT" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"oc" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"pb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"ph" = ( +/obj/structure/table/steel, +/obj/random/rigsuit, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"pp" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"pX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"qb" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"qq" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"qy" = ( +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + id = "lavabase" + }, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"qP" = ( +/obj/structure/table/steel, +/obj/random/toolbox, +/obj/random/maintenance/research, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"ri" = ( +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"rs" = ( +/obj/random/landmine, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"rP" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"sj" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"sq" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"sS" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"tL" = ( +/obj/machinery/door/window/southright{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"uN" = ( +/turf/simulated/floor/reinforced/carbon_dioxide{ + carbon_dioxide = 100 + }, +/area/submap/eclipselava) +"vN" = ( +/obj/structure/table/steel, +/obj/random/maintenance/foodstuff, +/obj/random/projectile, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"vO" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"vR" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"vX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"wj" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"ws" = ( +/obj/structure/cliff/automatic, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"wt" = ( +/obj/item/weapon/material/barbedwire{ + anchored = 1; + icon_state = "barbedwire-out" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"wA" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"wU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"xr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"xu" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"xF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"xY" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"yc" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"yr" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"yt" = ( +/obj/structure/table/steel, +/obj/random/mainttoyloot/nofail, +/obj/random/maintenance/security, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"yX" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"zy" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Ad" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/lava, +/area/submap/eclipselava) +"Bm" = ( +/turf/template_noop, +/area/template_noop) +"BJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"BQ" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Cc" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Dc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Dh" = ( +/obj/structure/table/hardwoodtable, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/medical/pillbottle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Du" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"DS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Ed" = ( +/obj/structure/table/steel, +/obj/random/energy, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Ej" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"El" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"En" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Ev" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Ez" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/radiation, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"EH" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"EW" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Gg" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Gl" = ( +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Go" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Gy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"GK" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"GM" = ( +/obj/structure/table/rack/shelf, +/obj/item/slime_extract/ruby, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"GS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Hp" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"HZ" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Ii" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"IQ" = ( +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Jn" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Jr" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/radiation, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Js" = ( +/obj/item/weapon/material/barbedwire{ + anchored = 1; + icon_state = "barbedwire-out" + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"JH" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"JJ" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Ke" = ( +/turf/simulated/floor/lava, +/area/submap/eclipselava) +"Kr" = ( +/obj/item/weapon/material/barbedwire{ + anchored = 1; + icon_state = "barbedwire-out" + }, +/obj/structure/cable/green, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Ku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"LC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"LV" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Me" = ( +/obj/item/weapon/material/barbedwire{ + anchored = 1; + icon_state = "barbedwire-out" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"MO" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Oj" = ( +/obj/structure/table/hardwoodtable, +/obj/random/ammo, +/obj/random/ammo, +/obj/random/ammo, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Ov" = ( +/obj/structure/table/rack, +/obj/item/weapon/cell/slime, +/turf/simulated/floor/reinforced/carbon_dioxide{ + carbon_dioxide = 100 + }, +/area/submap/eclipselava) +"Ox" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Pm" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Pq" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/medical/pillbottle, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"PP" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Qh" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"Qr" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"QN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Rz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"RA" = ( +/obj/structure/table/steel, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"RI" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"RT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Sn" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"SC" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"SR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Tb" = ( +/obj/structure/closet/crate, +/obj/item/weapon/grenade/chem_grenade/incendiary, +/obj/item/weapon/grenade/chem_grenade/incendiary, +/obj/item/weapon/grenade/chem_grenade/incendiary, +/obj/item/weapon/grenade/explosive, +/obj/item/weapon/grenade/explosive, +/obj/item/weapon/grenade/explosive, +/obj/random/grenade/lethal, +/obj/random/grenade/lethal, +/obj/random/grenade/lethal, +/obj/random/grenade/less_lethal, +/obj/random/grenade/less_lethal, +/obj/random/grenade/less_lethal, +/obj/random/grenade/box, +/obj/random/grenade/box, +/obj/random/grenade/box, +/obj/item/weapon/grenade/spawnergrenade/spider/briefcase, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Tc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rplastihull, +/area/submap/eclipselava) +"Tf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Tq" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"TB" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/lava, +/area/submap/eclipselava) +"TD" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"TO" = ( +/obj/machinery/door/blast/puzzle{ + id = "lavabase" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Ux" = ( +/obj/structure/table/steel, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"UF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"Vg" = ( +/obj/structure/table/steel, +/obj/random/mainttoyloot/nofail, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"VL" = ( +/obj/machinery/porta_turret/ai_defense{ + faction = "eclipse" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Wh" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/reinforced, +/area/submap/eclipselava) +"WP" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Xg" = ( +/obj/structure/table/steel, +/obj/random/tool/alien, +/obj/random/maintenance/research, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"XX" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"Yf" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"ZE" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"ZI" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/eclipselava) +"ZK" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) +"ZO" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipselava) + +(1,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(2,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(3,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +Qh +Qh +ZI +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +ZE +nT +Qh +Qh +Qh +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(4,1,1) = {" +Bm +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +Qh +jU +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +Qh +sS +ZE +nT +Qh +Qh +Qh +Bm +Bm +Bm +Bm +Bm +"} +(5,1,1) = {" +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +jU +bp +BJ +Jn +BJ +Js +wj +MO +VL +bp +MO +BJ +SC +ZO +bp +Qh +Qh +Qh +sS +ZE +nT +Qh +Bm +Bm +Bm +Bm +Bm +"} +(6,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +jU +bp +Rz +pp +DS +Me +QN +QN +QN +rP +QN +mn +MO +jo +bp +Qh +Qh +Qh +Qh +Qh +ws +Qh +Qh +Qh +Bm +Bm +Bm +"} +(7,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +Rz +gu +wU +Js +Gy +MO +VL +bp +MO +wU +SC +ZO +bp +Qh +Qh +Qh +Qh +Qh +sS +ZE +nT +Qh +Bm +Bm +Bm +"} +(8,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +WP +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +Qh +Qh +Qh +Qh +ws +Qh +Bm +Bm +Bm +"} +(9,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +dj +MO +MO +wj +MO +MO +MO +wj +MO +MO +MO +MO +wj +MO +MO +bp +Qh +Qh +Qh +Qh +ws +Qh +Qh +Qh +Bm +"} +(10,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +dj +Ez +MO +MO +MO +MO +dE +MO +MO +MO +MO +MO +MO +JJ +MO +bp +Qh +Qh +Qh +Qh +sS +ZE +nT +Qh +Bm +"} +(11,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +dj +MO +MO +Gy +MO +MO +MO +Gy +MO +MO +MO +MO +Gy +MO +MO +bp +Qh +Qh +Qh +Qh +Qh +Qh +ws +Qh +Bm +"} +(12,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +WP +bp +bp +bp +bp +bp +bp +bp +Tq +Tq +Tq +bp +bp +wA +bp +bp +bp +bp +bp +bp +bp +bp +ws +Qh +Bm +"} +(13,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +dj +MO +MO +MO +MO +MO +MO +bp +MO +Pm +MO +bp +MO +vO +wj +MO +MO +MO +wj +iI +Gg +bp +ws +Qh +Bm +"} +(14,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +dj +gt +at +LV +Vg +df +MO +bp +MO +MO +MO +bp +MO +MO +MO +MO +MO +MO +MO +MO +PP +bp +ws +Qh +Bm +"} +(15,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +wU +QN +yc +nC +yc +QN +xr +bp +bI +MO +MO +bp +MO +MO +MO +MO +MO +MO +MO +MO +nk +bp +ws +Qh +Bm +"} +(16,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +MO +qb +RA +LV +vN +oc +dj +bp +Ed +MO +MO +wA +MO +MO +MO +MO +MO +MO +MO +MO +nE +bp +ws +Qh +Bm +"} +(17,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +MO +MO +MO +MO +MO +MO +dj +bp +Ux +iq +GK +bp +MO +MO +MO +MO +hB +MO +xY +MO +qy +bp +ws +Qh +Bm +"} +(18,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +mI +bp +bp +bp +bp +bp +bp +bp +WP +bp +bp +bp +bp +bp +bp +bp +bp +np +np +np +np +bp +bp +bp +ws +Qh +Bm +"} +(19,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +bp +bp +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +bp +ri +UF +ri +bp +zy +zy +zy +zy +zy +zy +zy +zy +zy +zy +sq +sq +sq +fW +Qh +Bm +"} +(20,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +bp +GM +bB +El +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +bp +EW +UF +ri +bp +ri +ri +ri +ri +ri +ri +ri +fG +Kr +ri +Qh +Qh +Qh +Qh +Qh +Bm +"} +(21,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +bp +MO +MO +MO +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +TO +ri +UF +ri +ri +ri +fG +Kr +ri +ri +ri +ri +pb +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(22,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +MO +MO +MO +MO +xu +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ni +ri +ri +TO +ri +Sn +Ku +ri +ri +pb +Kr +ri +ri +ri +ri +pb +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(23,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +xF +MO +MO +MO +MO +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +TO +ri +ri +UF +ri +ri +pb +Kr +ri +ri +ri +ri +pb +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(24,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +Cc +tL +Cc +bp +MO +MO +BQ +bp +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +ri +ri +ri +ri +ri +bp +bp +bp +aY +bp +ri +UF +ri +ri +fG +Kr +ri +UF +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(25,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +uN +uN +uN +IQ +MO +MO +MO +bp +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +bp +Wh +TD +SR +bp +EW +UF +ri +ri +pb +Kr +ri +UF +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(26,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +uN +Ov +uN +vR +JH +Yf +QN +rP +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +yX +Dc +Dc +RT +Tc +Dc +vX +Dc +Dc +vX +wt +Dc +Ev +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(27,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +uN +uN +uN +gP +MO +MO +MO +bp +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +ri +bp +Wh +TD +GS +bp +EW +UF +ri +ri +Tf +Kr +ri +UF +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(28,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +Cc +mL +Cc +bp +MO +MO +BQ +bp +RI +RI +RI +RI +RI +RI +RI +RI +ri +ri +ri +ri +ri +bp +bp +bp +aY +bp +ri +UF +ri +ri +mz +Kr +ri +UF +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(29,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +xF +MO +MO +MO +MO +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +TO +ri +ri +UF +ri +ri +Tf +Kr +ri +ri +ri +ri +Tf +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(30,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +bp +MO +MO +MO +MO +xu +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ni +ri +ri +TO +ri +sj +Ox +ri +ri +Tf +Kr +ri +ri +ri +ri +Tf +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(31,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +bp +MO +MO +MO +MO +MO +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +TO +ri +UF +ri +ri +ri +mz +Kr +ri +ri +ri +ri +Tf +Kr +Qh +Qh +Qh +Qh +Qh +Qh +Bm +"} +(32,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +bp +jS +dB +El +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +bp +EW +UF +ri +bp +ri +ri +ri +ri +ri +ri +ri +mz +Kr +ri +Qh +Qh +Qh +Qh +Qh +Bm +"} +(33,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +bp +bp +bp +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +TB +ri +ri +ri +ri +ri +bp +ri +UF +ri +bp +Go +Go +Go +Go +Go +Go +Go +Go +Go +Go +ZE +ZE +ZE +nT +Qh +Bm +"} +(34,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +fi +bp +bp +bp +bp +bp +bp +bp +WP +bp +bp +bp +bp +bp +bp +bp +bp +Tq +Tq +Tq +Tq +bp +bp +bp +ws +Qh +Bm +"} +(35,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +ZK +Pq +Ej +ZK +bp +MO +dj +MO +MO +MO +MO +MO +bp +MO +MO +MO +hB +MO +xY +MO +qy +bp +ws +Qh +Bm +"} +(36,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +En +MO +MO +Xg +bp +MO +LC +RA +qq +il +qq +MO +bp +xF +MO +MO +MO +MO +MO +MO +yt +bp +ws +Qh +Bm +"} +(37,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +ph +Pm +MO +MO +wA +MO +XX +RA +qq +RA +Hp +MO +wA +MO +MO +MO +MO +MO +MO +MO +nk +bp +ws +Qh +Bm +"} +(38,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +En +MO +MO +qP +bp +MO +LC +bj +qq +RA +qq +MO +bp +xF +MO +MO +MO +MO +MO +dE +yt +bp +ws +Qh +Bm +"} +(39,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +ZK +Ej +Qr +ZK +bp +MO +dj +MO +MO +MO +MO +MO +bp +EH +MO +Gy +MO +MO +Gy +MO +Gg +bp +ws +Qh +Bm +"} +(40,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +bp +bp +bp +bp +bp +bp +WP +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ws +Qh +Bm +"} +(41,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +rs +MO +rs +MO +bp +MO +dj +MO +MO +MO +MO +MO +bp +aQ +ZO +bp +Qh +Qh +Qh +Qh +Qh +dw +fW +Qh +Bm +"} +(42,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +Gl +rs +MO +MO +wA +MO +Jr +QN +QN +QN +la +QN +rP +mn +BQ +bp +Qh +Qh +Qh +Qh +dw +fW +Qh +Qh +Bm +"} +(43,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +MO +rs +MO +rs +bp +MO +MO +MO +MO +MO +MO +MO +bp +Ii +ZO +bp +Qh +Qh +Qh +dw +fW +Qh +Qh +Bm +Bm +"} +(44,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +MO +MO +MO +rs +bp +bp +wA +bp +bp +bp +bp +bp +bp +bp +bp +bp +Qh +dw +sq +fW +Qh +Qh +Bm +Bm +Bm +"} +(45,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ad +bp +rs +MO +rs +Gl +bp +pX +MO +pX +Oj +yr +hg +pX +bp +Qh +Qh +Qh +Qh +ws +Qh +Qh +Qh +Bm +Bm +Bm +Bm +"} +(46,1,1) = {" +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +jU +bp +MO +MO +rs +MO +bp +Dh +MO +MO +MO +MO +MO +BQ +bp +Qh +Qh +Qh +dw +fW +Qh +Bm +Bm +Bm +Bm +Bm +Bm +"} +(47,1,1) = {" +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +jU +bp +rs +Gl +MO +Tb +bp +pX +MO +pX +Oj +Du +hg +pX +bp +dw +sq +sq +fW +Qh +Qh +Bm +Bm +Bm +Bm +Bm +Bm +"} +(48,1,1) = {" +Bm +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +Qh +jU +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ws +Qh +Qh +Qh +Qh +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(49,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Ke +Qh +Qh +Qh +eH +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +fW +Qh +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(50,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Qh +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} +(51,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +Bm +"} diff --git a/maps/submaps/surface_submaps/valley/eclipsemountain.dmm b/maps/submaps/surface_submaps/valley/eclipsemountain.dmm new file mode 100644 index 0000000000..cc277d3806 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/eclipsemountain.dmm @@ -0,0 +1,2296 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"al" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"bN" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"bY" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"cW" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"do" = ( +/obj/structure/bed/chair/office/dark, +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"dt" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"dJ" = ( +/turf/simulated/floor/bluegrid, +/area/submap/eclipsemountain) +"ec" = ( +/obj/structure/table/gold, +/obj/random/ammo, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"fX" = ( +/obj/structure/table/darkglass, +/obj/machinery/button/remote/blast_door{ + id = "puzzlemtC" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"hw" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"hP" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/wall/r_wall, +/area/submap/eclipsemountain) +"iU" = ( +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"jt" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/tool/alien, +/obj/random/contraband, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"ki" = ( +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"kR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"kX" = ( +/obj/structure/table/steel, +/obj/random/material/precious, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"la" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"ls" = ( +/obj/machinery/porta_turret/ai_defense{ + faction = "eclipse" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"lX" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"mL" = ( +/obj/structure/table/steel, +/obj/random/medical/pillbottle, +/obj/random/material, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"nL" = ( +/obj/machinery/door/blast/puzzle{ + id = "puzzlemtA" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"pm" = ( +/obj/machinery/porta_turret/ai_defense{ + faction = "eclipse" + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"pE" = ( +/obj/machinery/door/blast/regular{ + id = "eclipsegate" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"qn" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"qv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"qO" = ( +/obj/machinery/door/blast/puzzle{ + id = "puzzlemtB" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"qQ" = ( +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"rI" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/radiation, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"rJ" = ( +/obj/machinery/telecomms/relay/preset, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"sC" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"tI" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"tQ" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"tS" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"uz" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"vb" = ( +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + id = "eclipsegate" + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"vx" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"vC" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"vO" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"xO" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"yy" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/obj/random/material/refined, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"yY" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"zb" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"zZ" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"AR" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"Cy" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Cz" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"De" = ( +/obj/structure/table/darkglass, +/obj/machinery/button/remote/blast_door{ + id = "puzzlemtB" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"Ec" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"EA" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/obj/random/weapon, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"EG" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"EZ" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Fg" = ( +/obj/machinery/porta_turret/ai_defense{ + faction = "eclipse" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"GC" = ( +/obj/machinery/power/apc{ + pixel_y = -24 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"GU" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/guardian, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"HN" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Ii" = ( +/obj/item/weapon/rig/robotics, +/turf/simulated/floor/bluegrid, +/area/submap/eclipsemountain) +"Il" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Is" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/bluegrid, +/area/submap/eclipsemountain) +"IQ" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"Jg" = ( +/turf/template_noop, +/area/template_noop) +"JK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"JO" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"Ky" = ( +/obj/machinery/door/blast/puzzle{ + id = "puzzlemtC" + }, +/turf/simulated/floor/reinforced, +/area/submap/eclipsemountain) +"Ln" = ( +/obj/structure/table/steel, +/obj/random/medical/pillbottle, +/obj/random/material/refined, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"LT" = ( +/obj/structure/table/gold, +/obj/random/ammo, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"LV" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"Mr" = ( +/obj/structure/table/gold, +/obj/random/ammo, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/machinery/light, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"Ms" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"My" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/obj/random/weapon, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"MK" = ( +/obj/structure/table/rack, +/obj/random/projectile/random, +/obj/random/gun/random, +/obj/random/handgun, +/obj/item/weapon/rig/merc, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"MM" = ( +/turf/simulated/wall/r_wall, +/area/submap/eclipsemountain) +"Nv" = ( +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"Oa" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"Od" = ( +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/eclipsemountain) +"Ov" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"OM" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Pq" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"PL" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"PP" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"QT" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/toolbox, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"Rg" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"Tb" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"Tc" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/tool/alien, +/obj/random/contraband, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"Tp" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/firstaid, +/turf/simulated/floor/wood, +/area/submap/eclipsemountain) +"TT" = ( +/obj/structure/table/rack, +/obj/random/projectile/random, +/obj/random/gun/random, +/obj/random/handgun, +/obj/item/weapon/rig/hephaestus/equipped, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"UA" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"Vp" = ( +/obj/structure/table/gold, +/obj/random/ammo, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"VM" = ( +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"Wd" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"WC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stack/material/void_opal, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"XK" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/submap/eclipsemountain) +"XM" = ( +/obj/structure/table/gold, +/obj/random/ammo, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/eclipsemountain) +"XQ" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/red, +/area/submap/eclipsemountain) +"Yh" = ( +/turf/simulated/wall/dungeon, +/area/submap/eclipsemountain) +"YC" = ( +/obj/structure/table/steel, +/obj/random/mainttoyloot/nofail, +/obj/random/material/refined, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) +"YO" = ( +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, +/turf/simulated/floor/bluegrid, +/area/submap/eclipsemountain) +"YQ" = ( +/mob/living/simple_mob/humanoid/eclipse/solar/radiation, +/turf/simulated/floor/tiled/dark, +/area/submap/eclipsemountain) +"Zr" = ( +/obj/structure/table/darkglass, +/obj/machinery/button/remote/blast_door{ + id = "puzzlemtA" + }, +/turf/simulated/floor/tiled/steel, +/area/submap/eclipsemountain) + +(1,1,1) = {" +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +"} +(2,1,1) = {" +Jg +Pq +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +XK +Jg +"} +(3,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Jg +"} +(4,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +Cz +Cz +Pq +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +XK +Cz +hw +Jg +"} +(5,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +la +la +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +MM +MM +MM +MM +MM +MM +MM +hw +Cz +hw +Jg +"} +(6,1,1) = {" +Jg +yY +Cz +Cz +la +Cz +Cz +Cz +la +Cz +Cz +la +Cz +la +la +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +la +Cz +Cz +Cz +Tb +iU +iU +iU +iU +tQ +MM +hw +Cz +hw +Jg +"} +(7,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +MM +iU +iU +Ov +iU +iU +MM +hw +Cz +hw +Jg +"} +(8,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +la +Cz +Ms +Il +Il +Il +Cy +Cz +Cz +la +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +MM +lX +PP +hP +pE +pE +MM +hw +Cz +hw +Jg +"} +(9,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +yY +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +MM +ki +JK +cW +iU +iU +MM +hw +Cz +hw +Jg +"} +(10,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +Pq +HN +HN +HN +HN +HN +UA +Cz +la +Cz +Cz +la +Cz +la +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +MM +do +vb +XQ +iU +PL +MM +hw +Cz +hw +Jg +"} +(11,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +la +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +MM +ki +ki +Nv +iU +iU +MM +hw +Cz +hw +Jg +"} +(12,1,1) = {" +Jg +yY +la +Cz +Cz +Cz +yY +Cz +Cz +Cz +Cz +Cz +Pq +HN +HN +HN +HN +HN +HN +HN +HN +HN +HN +XK +Cz +Cz +Cz +Cz +Cz +MM +MM +MM +MM +MM +Tb +MM +hw +Cz +hw +Jg +"} +(13,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +la +Cz +Pq +UA +Cz +Cz +Cz +MM +MM +MM +MM +MM +MM +MM +MM +MM +Tb +MM +MM +XK +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(14,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +yY +Cz +la +Pq +HN +UA +Cz +Cz +Cz +Cz +MM +iU +sC +iU +iU +sC +iU +MM +iU +LV +iU +MM +hw +Cz +la +Cz +Cz +Cz +Cz +la +hw +Cz +hw +Jg +"} +(15,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +yY +MM +MM +vO +zb +vO +MM +MM +LV +LV +kX +kX +LV +LV +MM +kR +LV +qn +MM +hw +Cz +Cz +Cz +Cz +la +Cz +Cz +hw +Cz +hw +Jg +"} +(16,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +yY +la +Cz +yY +MM +QT +JO +qQ +qQ +qQ +MM +iU +LV +yy +Ln +LV +iU +MM +iU +LV +iU +MM +hw +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(17,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +yY +dt +EG +qQ +qQ +qQ +qQ +Tb +AR +LV +mL +mL +LV +YQ +Tb +LV +LV +LV +MM +hw +Cz +la +Cz +Cz +Cz +la +Cz +hw +Cz +hw +Jg +"} +(18,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Pq +UA +tI +qQ +qQ +qQ +qQ +jt +MM +iU +LV +Ln +YC +LV +iU +MM +iU +LV +iU +MM +hw +Cz +Cz +Cz +la +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(19,1,1) = {" +Jg +yY +Cz +Cz +la +Cz +yY +Cz +yY +Cz +dt +qQ +qQ +qQ +qQ +bY +MM +LV +LV +kX +kX +LV +LV +MM +kR +bN +qn +MM +hw +Cz +Cz +Cz +Cz +Cz +la +Cz +hw +Cz +hw +Jg +"} +(20,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +yY +Cz +MM +qQ +qQ +Tc +bY +Tp +MM +iU +qv +iU +iU +qv +iU +MM +iU +LV +iU +MM +hw +Cz +Cz +la +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(21,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +yY +Cz +MM +MM +Tb +MM +MM +MM +MM +Yh +Yh +Yh +Yh +MM +MM +MM +LV +LV +LV +MM +hw +Cz +Cz +Cz +Cz +la +Cz +Cz +hw +Cz +hw +Jg +"} +(22,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +yY +Cz +yY +Cz +MM +Vp +VM +ec +xO +Vp +Yh +Yh +My +pm +Yh +Od +Od +MM +iU +LV +iU +MM +hw +Cz +Cz +Cz +la +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(23,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +yY +la +yY +Cz +MM +xO +tQ +VM +vC +xO +Yh +TT +ki +ki +Yh +Ky +Ky +MM +kR +LV +qn +MM +hw +Cz +la +Cz +Cz +la +Cz +Cz +hw +Cz +hw +Jg +"} +(24,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +yY +Cz +MM +XM +VM +Vp +VM +Mr +Yh +Fg +ki +ki +qO +iU +iU +nL +iU +uz +iU +MM +hw +Cz +Cz +Cz +Cz +Cz +Cz +la +hw +Cz +hw +Jg +"} +(25,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Ms +Cy +MM +xO +IQ +VM +GU +xO +Yh +MK +ki +ki +Yh +Ky +Ky +MM +LV +LV +LV +MM +hw +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(26,1,1) = {" +Jg +yY +Cz +Cz +la +Cz +yY +Cz +Cz +yY +MM +Vp +VM +LT +xO +Vp +Yh +Yh +EA +pm +Yh +Od +Od +MM +Zr +De +fX +MM +hw +Cz +Cz +la +Cz +Cz +la +Cz +hw +Cz +hw +Jg +"} +(27,1,1) = {" +Jg +yY +la +Cz +Cz +Cz +yY +Cz +Cz +yY +MM +MM +Tb +MM +MM +MM +MM +Yh +Yh +Yh +Yh +MM +MM +MM +MM +MM +MM +MM +hw +Cz +Cz +Cz +Cz +la +Cz +Cz +hw +Cz +hw +Jg +"} +(28,1,1) = {" +Jg +yY +la +Cz +Cz +Cz +yY +Cz +Cz +yY +Cz +MM +iU +iU +iU +ls +MM +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +MM +EZ +OM +Cz +la +Cz +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(29,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +yY +Cz +Cz +yY +Cz +MM +al +iU +iU +PL +MM +dJ +rJ +dJ +rJ +Is +rJ +dJ +rJ +dJ +MM +hw +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Cz +hw +Jg +"} +(30,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +yY +Cz +la +yY +Cz +MM +ls +iU +iU +iU +Tb +dJ +rJ +dJ +rJ +Ii +rJ +dJ +rJ +dJ +MM +hw +Cz +Cz +MM +MM +Tb +Tb +MM +MM +hw +Cz +hw +Jg +"} +(31,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +Ms +Cy +MM +MM +MM +MM +MM +MM +dJ +rJ +dJ +rJ +YO +rJ +dJ +rJ +dJ +MM +hw +Cz +Cz +MM +Rg +vx +iU +iU +MM +hw +Cz +hw +Jg +"} +(32,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +yY +Cz +Cz +Cz +Ms +Il +Cy +Cz +Cz +Cz +MM +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +MM +hw +Cz +Cz +MM +Rg +Wd +rI +iU +MM +hw +Cz +hw +Jg +"} +(33,1,1) = {" +Jg +yY +Cz +la +Cz +Cz +yY +Cz +Cz +Cz +la +Cz +Ms +Cy +Cz +Cz +MM +MM +MM +MM +MM +MM +MM +MM +MM +MM +MM +hw +Cz +Cz +MM +Rg +tS +WC +GC +MM +hw +Cz +hw +Jg +"} +(34,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +Cz +Cz +Cz +Cz +Ms +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +OM +Cz +Cz +MM +Rg +Ec +Oa +iU +MM +hw +Cz +hw +Jg +"} +(35,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +yY +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +MM +Rg +zZ +iU +iU +MM +hw +Cz +hw +Jg +"} +(36,1,1) = {" +Jg +yY +la +Cz +Cz +Cz +yY +Cz +la +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +Cz +la +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +la +Cz +Cz +MM +MM +MM +MM +MM +MM +hw +Cz +hw +Jg +"} +(37,1,1) = {" +Jg +yY +Cz +Cz +Cz +la +Ms +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +OM +Cz +hw +Jg +"} +(38,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +Cz +hw +Jg +"} +(39,1,1) = {" +Jg +yY +Cz +Cz +Cz +Cz +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +Il +OM +Jg +"} +(40,1,1) = {" +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +Jg +"} diff --git a/maps/submaps/surface_submaps/valley/fallenlab.dmm b/maps/submaps/surface_submaps/valley/fallenlab.dmm new file mode 100644 index 0000000000..2a08bb3208 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/fallenlab.dmm @@ -0,0 +1,1328 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aH" = ( +/mob/living/simple_mob/mechanical/cyber_horror/plasma_cyber_horror, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"aZ" = ( +/obj/structure/table/darkglass, +/obj/item/ammo_casing/microbattery/medical/burn3, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"bH" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"bV" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"cQ" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/mob/living/simple_mob/mechanical/cyber_horror/grey, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"dx" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/mechanical/cyber_horror/grey, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"eq" = ( +/obj/structure/closet/toolcloset, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"es" = ( +/turf/simulated/wall/ironphoron, +/area/submap/fallenlab) +"fh" = ( +/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"fl" = ( +/obj/structure/salvageable/implant_container, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"fr" = ( +/mob/living/simple_mob/mechanical/cyber_horror/tajaran, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"fL" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"fY" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"gy" = ( +/mob/living/simple_mob/mechanical/cyber_horror/corgi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"gN" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"gP" = ( +/obj/structure/table/standard, +/obj/item/ammo_casing/microbattery/medical/haste, +/obj/random/material/refined, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"hc" = ( +/obj/machinery/porta_turret/stationary/syndie/CIWS, +/turf/simulated/floor/plating, +/area/submap/fallenlab) +"iw" = ( +/mob/living/simple_mob/mechanical/cyber_horror/vox, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"jh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"kh" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"ki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"kq" = ( +/obj/structure/table/darkglass, +/obj/random/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"kW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"kZ" = ( +/obj/structure/salvageable/data, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"lh" = ( +/turf/simulated/floor/grass, +/area/submap/fallenlab) +"mf" = ( +/obj/machinery/door/airlock, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"mo" = ( +/obj/structure/table/standard, +/obj/random/material/refined, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/item/clothing/suit/armor/crusader, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"ny" = ( +/obj/structure/salvageable/data, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"qK" = ( +/obj/structure/table/darkglass, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"rk" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"rv" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"rL" = ( +/mob/living/simple_mob/mechanical/cyber_horror/tajaran, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"sf" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"sg" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"sM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"sN" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"sS" = ( +/obj/structure/table/standard, +/obj/item/device/nif, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"tc" = ( +/obj/structure/table/standard, +/obj/item/ammo_casing/microbattery/medical/brute3, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"tl" = ( +/obj/structure/table/darkglass, +/obj/item/ammo_casing/microbattery/medical/brute3, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"tI" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"vt" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"wi" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/projectile/cell_loaded/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"xo" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"xI" = ( +/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"ye" = ( +/obj/structure/salvageable/server, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"yC" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"zJ" = ( +/obj/structure/salvageable/computer, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Ay" = ( +/obj/structure/salvageable/console_broken_os, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"AE" = ( +/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"AU" = ( +/obj/structure/salvageable/data, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Bi" = ( +/obj/structure/table/darkglass, +/obj/random/maintenance/morestuff, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Ck" = ( +/mob/living/simple_mob/mechanical/cyber_horror/vox, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Cw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Cx" = ( +/obj/structure/salvageable/data, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"CW" = ( +/obj/structure/table/darkglass, +/obj/random/maintenance/morestuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Dz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"DM" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/syndicate_contract, +/obj/item/clothing/head/helmet/space/void/syndicate_contract, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Et" = ( +/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Gi" = ( +/turf/simulated/wall/iron, +/area/submap/fallenlab) +"GJ" = ( +/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"HP" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Iq" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Iw" = ( +/mob/living/simple_mob/mechanical/cyber_horror/tajaran, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"KF" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"KI" = ( +/obj/structure/table/darkglass, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/medical, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"KR" = ( +/obj/structure/table/darkglass, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Ld" = ( +/obj/structure/table/darkglass, +/obj/item/ammo_casing/microbattery/medical/burn3, +/obj/random/toolbox, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Mp" = ( +/obj/structure/table/standard, +/obj/item/ammo_magazine/cell_mag/medical/advanced, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Ni" = ( +/obj/structure/table/standard, +/obj/item/ammo_casing/microbattery/medical/haste, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"NT" = ( +/mob/living/simple_mob/mechanical/cyber_horror/vox, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"OG" = ( +/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"OO" = ( +/obj/structure/table/standard, +/obj/item/clothing/mask/gas/syndicate, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"PB" = ( +/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Qh" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"QH" = ( +/mob/living/simple_mob/mechanical/cyber_horror/tajaran, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Rg" = ( +/obj/structure/table/standard, +/obj/random/material/refined, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"RQ" = ( +/obj/machinery/clonepod, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"RS" = ( +/obj/structure/salvageable/computer, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"SK" = ( +/obj/item/clothing/suit/armor/reactive, +/mob/living/simple_mob/mechanical/cyber_horror/corgi, +/turf/simulated/floor/grass, +/area/submap/fallenlab) +"SL" = ( +/mob/living/simple_mob/mechanical/cyber_horror/corgi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"SX" = ( +/turf/template_noop, +/area/template_noop) +"Ub" = ( +/obj/structure/table/standard, +/obj/random/material/refined, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Uf" = ( +/obj/machinery/clonepod, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"UG" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"UK" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Wd" = ( +/obj/structure/salvageable/console_broken_os, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"XG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/mob/living/simple_mob/mechanical/cyber_horror/corgi, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"XJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"XS" = ( +/obj/structure/salvageable/data, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"Yn" = ( +/mob/living/simple_mob/mechanical/cyber_horror/plasma_cyber_horror, +/turf/simulated/floor/grass, +/area/submap/fallenlab) +"Yv" = ( +/obj/machinery/door/airlock/external/bolted, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) +"ZC" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/fallenlab) + +(1,1,1) = {" +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +"} +(2,1,1) = {" +SX +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +hc +SX +SX +SX +SX +SX +SX +"} +(3,1,1) = {" +SX +Gi +KR +cQ +bH +ki +Gi +rL +bH +Cx +bH +ki +XJ +ki +bH +kh +ye +Gi +rk +sN +rk +Gi +SX +SX +SX +SX +SX +SX +SX +"} +(4,1,1) = {" +SX +Gi +xo +bH +kW +sM +yC +bH +ki +sM +kW +qL +kW +qL +XS +Cw +ki +rv +fh +HP +HP +rv +SX +SX +SX +SX +SX +SX +SX +"} +(5,1,1) = {" +SX +Gi +KR +kh +XJ +ki +Gi +ki +qL +ki +kZ +kW +Et +Ay +bH +kh +sM +Gi +DM +DM +DM +Gi +hc +SX +SX +SX +SX +SX +SX +"} +(6,1,1) = {" +SX +Gi +Uf +bH +Dz +Bi +Gi +Gi +yC +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +SX +SX +SX +SX +SX +"} +(7,1,1) = {" +SX +Gi +RQ +kW +qL +sf +Gi +kh +sM +ki +bH +Iw +sM +Dz +fL +ki +XJ +kh +sM +ki +bH +XG +gP +Gi +SX +SX +SX +SX +SX +"} +(8,1,1) = {" +SX +Gi +Ay +XJ +kW +UG +Gi +sM +Dz +sM +jh +XJ +kW +sM +kh +sM +ki +XJ +kW +OG +kW +XJ +RS +Gi +SX +SX +SX +SX +SX +"} +(9,1,1) = {" +SX +Gi +Wd +kh +sM +KF +Gi +iw +XJ +ki +bH +eq +Gi +Gi +Gi +Gi +Gi +tI +sM +ki +sM +ki +zJ +Gi +SX +SX +SX +SX +SX +"} +(10,1,1) = {" +SX +Gi +Uf +bH +kW +Iq +Gi +tc +sg +fY +Mp +Gi +es +lh +Yn +lh +es +Gi +sS +XJ +kW +Ck +mo +Gi +SX +SX +SX +SX +SX +"} +(11,1,1) = {" +SX +Gi +RQ +kh +qL +CW +Gi +Gi +Gi +Gi +Gi +es +lh +lh +lh +lh +lh +es +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +SX +"} +(12,1,1) = {" +SX +Gi +qK +aH +kW +sM +Gi +XJ +kW +sM +Gi +lh +lh +lh +lh +lh +lh +lh +Gi +XJ +ki +bH +Gi +sM +fr +bH +aZ +Gi +SX +"} +(13,1,1) = {" +SX +Gi +kq +kh +SL +Dz +rv +kh +xI +kW +Yv +Yn +lh +lh +SK +lh +lh +Yn +Yv +ki +GJ +ki +ZC +kW +XJ +kh +KI +Gi +SX +"} +(14,1,1) = {" +SX +Gi +tl +bH +kh +sM +Gi +bH +kh +XJ +Gi +lh +lh +lh +lh +lh +lh +lh +Gi +bH +ki +bH +Gi +bH +kW +bH +qK +Gi +SX +"} +(15,1,1) = {" +SX +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +es +lh +lh +lh +lh +lh +es +Gi +Gi +Gi +Gi +Gi +CW +qL +ki +RQ +Gi +SX +"} +(16,1,1) = {" +SX +SX +SX +SX +SX +Gi +Rg +dx +kh +bH +tI +Gi +es +lh +Yn +lh +es +Gi +wi +fY +Ni +fY +Gi +Qh +ki +sM +Uf +Gi +SX +"} +(17,1,1) = {" +SX +SX +SX +SX +SX +Gi +zJ +ki +sM +ki +NT +OO +Gi +Gi +Gi +Gi +Gi +eq +bH +kh +XJ +PB +Gi +bV +bH +gy +Wd +Gi +SX +"} +(18,1,1) = {" +SX +SX +SX +SX +SX +Gi +RS +bH +ki +sM +ki +sM +kW +XJ +UK +sM +ki +bH +Dz +XJ +kW +bH +Gi +gN +ki +XJ +Ay +Gi +SX +"} +(19,1,1) = {" +SX +SX +SX +SX +SX +Gi +Ub +ki +QH +kW +XJ +kW +sM +ki +Ix +kW +sM +rL +bH +kW +sM +kh +Gi +vt +sM +kW +RQ +Gi +SX +"} +(20,1,1) = {" +SX +SX +SX +SX +SX +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +mf +Gi +Gi +Bi +kh +XJ +Uf +Gi +SX +"} +(21,1,1) = {" +SX +SX +SX +SX +SX +SX +hc +Gi +DM +DM +DM +Gi +bH +kh +Wd +kh +bH +AE +qL +kW +sM +Cx +Gi +kh +XJ +kW +KR +Gi +SX +"} +(22,1,1) = {" +SX +SX +SX +SX +SX +SX +SX +rv +HP +HP +fh +ZC +kh +bH +kW +sM +fl +XJ +Dz +Ck +ki +sM +mf +sM +Dz +bH +Ld +Gi +SX +"} +(23,1,1) = {" +SX +SX +SX +SX +SX +SX +SX +Gi +rk +sN +rk +Gi +bH +AU +sM +ki +sM +ki +ny +kh +sM +kW +Gi +kW +bH +cQ +KR +Gi +SX +"} +(24,1,1) = {" +SX +SX +SX +SX +SX +SX +hc +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +Gi +SX +"} +(25,1,1) = {" +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +"} diff --git a/maps/submaps/surface_submaps/valley/fallenportal.dmm b/maps/submaps/surface_submaps/valley/fallenportal.dmm new file mode 100644 index 0000000000..a28d78776a --- /dev/null +++ b/maps/submaps/surface_submaps/valley/fallenportal.dmm @@ -0,0 +1,800 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/lava/harmless, +/area/submap/fallenportal) +"b" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/spellbook/oneuse/charge, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"c" = ( +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, +/turf/simulated/floor/cult{ + oxygen = 20.7263 + }, +/area/submap/fallenportal) +"e" = ( +/obj/structure/table/borosilicate, +/obj/random/handgun, +/turf/simulated/floor/cult{ + oxygen = 20.7263 + }, +/area/submap/fallenportal) +"f" = ( +/obj/structure/simple_door/cult, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"h" = ( +/mob/living/simple_mob/construct/artificer/caster, +/turf/simulated/floor/gorefloor2, +/area/submap/fallenportal) +"k" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"l" = ( +/turf/template_noop, +/area/submap/fallenportal) +"m" = ( +/obj/fire, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"n" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/clothing/shoes/cult, +/obj/item/weapon/storage/backpack/cultpack, +/obj/item/weapon/melee/cultblade, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/gorefloor2, +/area/submap/fallenportal) +"o" = ( +/obj/structure/closet/crate, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/weapon/material/knife/ritual, +/obj/item/weapon/storage/backpack/cultpack, +/obj/item/clothing/suit/space/cult, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"p" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/weapon/twohanded/fireaxe/fluff/mjollnir, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"q" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"r" = ( +/obj/fire, +/turf/simulated/floor/gorefloor, +/area/submap/fallenportal) +"t" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"u" = ( +/obj/item/weapon/deadringer, +/obj/item/weapon/vampiric, +/obj/item/clothing/suit/armor/pcarrier/bulletproof/full, +/turf/simulated/floor/gorefloor2, +/area/submap/fallenportal) +"v" = ( +/turf/simulated/floor/cult{ + oxygen = 20.7263 + }, +/area/submap/fallenportal) +"w" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/telecube/randomized, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"x" = ( +/mob/living/simple_mob/construct/artificer/caster, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"y" = ( +/mob/living/simple_mob/vore/demonAI/wendigo{ + faction = "cult" + }, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"z" = ( +/obj/structure/closet/crate, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/weapon/material/knife/ritual, +/obj/item/weapon/material/knife/ritual, +/obj/item/weapon/storage/backpack/cultpack, +/obj/item/clothing/suit/space/cult, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/weapon/storage/belt/bandolier, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/shield/riot/tele, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"A" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"C" = ( +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"D" = ( +/turf/simulated/floor/gorefloor2, +/area/submap/fallenportal) +"E" = ( +/mob/living/simple_mob/vore/demonAI{ + faction = "cult" + }, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"F" = ( +/obj/structure/table/borosilicate, +/obj/random/weapon/guarenteed, +/turf/simulated/floor/cult{ + oxygen = 20.7263 + }, +/area/submap/fallenportal) +"G" = ( +/turf/simulated/wall/sandstone, +/area/submap/fallenportal) +"H" = ( +/turf/simulated/floor/gorefloor, +/area/submap/fallenportal) +"I" = ( +/mob/living/simple_mob/construct/wraith, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"J" = ( +/turf/simulated/wall/cult, +/area/submap/fallenportal) +"K" = ( +/obj/structure/table/borosilicate, +/obj/item/weapon/melee/cultblade, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"L" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"M" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/clothing/shoes/cult, +/obj/item/weapon/storage/backpack/cultpack, +/obj/item/weapon/melee/cultblade, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/gorefloor, +/area/submap/fallenportal) +"O" = ( +/turf/template_noop, +/area/template_noop) +"P" = ( +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt/fireball, +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"R" = ( +/obj/effect/landmark/loot_spawn, +/turf/template_noop, +/area/submap/fallenportal) +"S" = ( +/mob/living/simple_mob/humanoid/cultist/lizard, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"T" = ( +/obj/structure/closet/crate, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/device/soulstone, +/obj/item/weapon/material/knife/ritual, +/obj/item/weapon/material/knife/ritual, +/obj/item/weapon/storage/backpack/cultpack, +/obj/item/clothing/suit/space/cult, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/weapon/storage/bagoplanets, +/obj/item/weapon/storage/pill_bottle/peridaxon, +/obj/item/weapon/shield/primitive, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"U" = ( +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"V" = ( +/mob/living/simple_mob/humanoid/cultist/tesh, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) +"X" = ( +/turf/simulated/floor/cult, +/area/submap/fallenportal) +"Z" = ( +/mob/living/simple_mob/humanoid/cultist/noodle, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/fallenportal) + +(1,1,1) = {" +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +"} +(2,1,1) = {" +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +l +l +l +l +l +l +l +l +l +l +"} +(3,1,1) = {" +O +O +O +l +l +l +l +l +l +l +O +O +O +O +O +H +G +G +G +G +G +G +G +G +l +"} +(4,1,1) = {" +O +O +l +l +J +J +J +J +J +R +l +l +l +l +O +l +G +k +t +t +G +T +L +G +l +"} +(5,1,1) = {" +O +l +l +J +J +m +h +X +J +J +X +E +X +l +l +y +G +F +c +v +A +t +t +G +l +"} +(6,1,1) = {" +l +l +J +J +m +m +X +X +o +J +D +l +X +X +X +X +G +K +t +t +G +k +t +G +l +"} +(7,1,1) = {" +l +J +J +n +m +X +H +X +X +f +H +l +l +l +l +l +G +k +t +V +G +S +t +G +l +"} +(8,1,1) = {" +l +J +m +X +m +X +m +m +m +J +J +l +l +X +X +X +G +G +A +G +G +G +G +G +l +"} +(9,1,1) = {" +l +J +r +m +a +m +m +X +X +x +J +X +X +P +l +D +G +v +v +v +U +t +t +G +l +"} +(10,1,1) = {" +l +J +X +a +a +a +D +X +m +m +J +l +l +l +l +l +G +t +t +t +t +b +t +G +l +"} +(11,1,1) = {" +l +J +I +a +u +a +m +m +m +p +J +R +l +l +H +l +A +t +t +t +t +q +Z +G +l +"} +(12,1,1) = {" +l +J +X +a +a +a +X +X +m +r +J +H +l +l +l +l +G +t +t +t +t +w +t +G +l +"} +(13,1,1) = {" +l +J +m +m +a +m +m +D +X +x +J +X +X +P +l +l +G +v +v +v +U +t +t +G +l +"} +(14,1,1) = {" +l +J +m +X +m +X +m +m +m +J +J +l +l +X +X +X +G +G +A +G +G +G +G +G +l +"} +(15,1,1) = {" +l +J +J +M +m +X +X +X +X +f +l +l +l +l +l +D +G +k +t +V +G +C +t +G +l +"} +(16,1,1) = {" +l +l +J +J +m +m +X +X +o +J +l +H +X +X +X +X +G +K +t +t +G +k +t +G +l +"} +(17,1,1) = {" +O +l +l +J +J +m +x +H +J +J +X +y +X +l +l +E +G +e +c +v +A +t +t +G +l +"} +(18,1,1) = {" +O +O +l +l +J +J +J +J +J +R +l +l +l +l +O +l +G +k +t +t +G +z +L +G +l +"} +(19,1,1) = {" +O +O +O +l +l +l +l +l +l +l +O +O +O +O +O +l +G +G +G +G +G +G +G +G +l +"} +(20,1,1) = {" +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +l +l +l +l +l +l +l +l +l +l +"} +(21,1,1) = {" +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +O +"} diff --git a/maps/submaps/surface_submaps/valley/frostlake.dmm b/maps/submaps/surface_submaps/valley/frostlake.dmm new file mode 100644 index 0000000000..9ee6c78f3a --- /dev/null +++ b/maps/submaps/surface_submaps/valley/frostlake.dmm @@ -0,0 +1,844 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice/dark_smooth, +/area/submap/frostlake) +"d" = ( +/turf/template_noop, +/area/template_noop) +"i" = ( +/turf/simulated/floor/outdoors/ice/dark_smooth, +/area/submap/frostlake) +"n" = ( +/obj/random/medical/lite, +/turf/simulated/floor/outdoors/ice/dark_smooth, +/area/submap/frostlake) +"o" = ( +/turf/simulated/floor/snow{ + oxygen = 20.7263 + }, +/area/submap/frostlake) +"s" = ( +/turf/simulated/mineral/icey, +/area/submap/frostlake) +"v" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/snow{ + oxygen = 20.7263 + }, +/area/submap/frostlake) +"A" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/snow{ + oxygen = 20.7263 + }, +/area/submap/frostlake) +"D" = ( +/mob/living/simple_mob/animal/sif/frostfly, +/turf/simulated/floor/snow{ + oxygen = 20.7263 + }, +/area/submap/frostlake) +"J" = ( +/obj/random/gun/random, +/turf/simulated/floor/snow{ + oxygen = 20.7263 + }, +/area/submap/frostlake) +"K" = ( +/obj/effect/map_effect/interval/effect_emitter/smoke/frost, +/obj/item/weapon/telecube/randomized/mated, +/turf/simulated/floor/water/hotspring, +/area/submap/frostlake) +"L" = ( +/obj/effect/map_effect/interval/effect_emitter/smoke/frost, +/turf/simulated/floor/water/hotspring, +/area/submap/frostlake) +"O" = ( +/obj/random/medical/pillbottle, +/turf/simulated/floor/outdoors/ice/dark_smooth, +/area/submap/frostlake) + +(1,1,1) = {" +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +"} +(2,1,1) = {" +d +d +d +d +d +d +d +s +s +s +s +d +d +d +d +s +s +s +d +d +d +d +d +d +d +d +d +"} +(3,1,1) = {" +d +d +d +d +d +d +s +s +i +i +s +s +s +s +s +s +i +s +s +s +s +s +s +d +d +d +d +"} +(4,1,1) = {" +d +d +d +d +d +s +s +i +i +i +i +i +i +i +i +i +a +i +i +i +i +i +s +s +d +d +d +"} +(5,1,1) = {" +d +d +d +d +s +s +i +i +i +i +a +i +i +i +i +i +i +i +i +i +a +i +i +s +d +d +d +"} +(6,1,1) = {" +d +d +d +s +s +i +i +i +i +i +n +i +i +i +a +i +i +L +i +i +i +i +s +s +d +d +d +"} +(7,1,1) = {" +d +d +s +s +i +i +L +i +a +i +i +a +i +i +i +i +i +i +i +i +i +i +s +d +d +d +d +"} +(8,1,1) = {" +d +d +s +i +i +i +i +i +i +i +i +D +i +i +O +i +i +i +a +i +i +i +s +d +d +d +d +"} +(9,1,1) = {" +d +d +s +i +i +a +i +i +i +n +A +o +o +i +i +a +i +D +J +i +a +i +s +d +d +d +d +"} +(10,1,1) = {" +d +d +s +i +i +i +O +i +i +a +o +o +o +i +i +i +o +o +A +o +i +i +s +d +d +d +d +"} +(11,1,1) = {" +d +d +s +s +i +i +i +i +o +o +o +J +o +a +i +i +o +o +o +o +O +i +s +d +d +d +d +"} +(12,1,1) = {" +d +d +d +s +s +i +i +i +D +A +o +o +i +i +i +i +o +o +o +D +i +i +s +s +d +d +d +"} +(13,1,1) = {" +d +d +d +d +s +i +i +a +i +o +o +i +i +i +i +i +a +A +o +a +i +i +i +s +s +d +d +"} +(14,1,1) = {" +d +d +d +d +s +i +i +i +i +i +a +i +i +K +i +A +o +i +i +i +i +i +i +i +s +d +d +"} +(15,1,1) = {" +d +d +d +d +s +i +L +i +i +o +o +o +i +i +D +o +o +o +i +i +i +a +i +i +s +s +d +"} +(16,1,1) = {" +d +d +d +d +s +s +i +i +D +o +o +A +o +i +o +o +J +o +a +i +i +i +i +i +i +s +d +"} +(17,1,1) = {" +d +d +d +d +d +s +i +i +v +J +o +o +v +i +o +o +A +o +D +i +i +i +i +i +i +s +d +"} +(18,1,1) = {" +d +d +d +d +d +s +i +i +o +o +o +o +o +O +a +o +o +o +o +i +i +i +n +a +i +s +d +"} +(19,1,1) = {" +d +d +d +d +s +s +i +a +i +A +o +D +i +i +i +i +o +o +i +i +i +i +L +i +i +s +d +"} +(20,1,1) = {" +d +d +d +d +s +i +i +i +i +a +i +i +i +i +i +i +i +i +i +i +a +i +i +i +i +s +d +"} +(21,1,1) = {" +d +d +d +d +s +i +i +i +i +i +i +i +a +i +i +i +a +i +O +i +i +i +i +i +s +s +d +"} +(22,1,1) = {" +d +d +d +d +s +i +i +a +i +i +i +i +i +i +n +i +i +i +i +i +i +i +i +s +s +d +d +"} +(23,1,1) = {" +d +d +d +d +s +i +i +i +i +L +i +i +i +i +a +i +i +i +i +i +s +s +s +s +d +d +d +"} +(24,1,1) = {" +d +d +d +d +s +i +i +O +i +i +i +i +i +i +i +i +i +i +s +s +s +d +d +d +d +d +d +"} +(25,1,1) = {" +d +d +d +d +s +s +s +i +i +i +s +s +s +s +s +s +s +s +s +d +d +d +d +d +d +d +d +"} +(26,1,1) = {" +d +d +d +d +d +d +s +s +s +s +s +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +"} +(27,1,1) = {" +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +"} diff --git a/maps/submaps/surface_submaps/valley/hydroxeno.dmm b/maps/submaps/surface_submaps/valley/hydroxeno.dmm new file mode 100644 index 0000000000..824ebe5014 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/hydroxeno.dmm @@ -0,0 +1,1601 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"d" = ( +/obj/effect/alien/weeds, +/obj/structure/bed/nest, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"e" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"f" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"g" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"h" = ( +/obj/item/weapon/material/twohanded/spear/lance, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"i" = ( +/mob/living/simple_mob/animal/space/alien/sentinel, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"j" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"k" = ( +/obj/effect/alien/weeds, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"l" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"m" = ( +/obj/item/weapon/storage/backpack/holding, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"n" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/organ/internal/lungs/replicant/mending, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"o" = ( +/obj/item/weapon/pickaxe/diamonddrill, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"p" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"q" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"r" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/item/organ/internal/kidneys/replicant, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"s" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/organ/internal/heart/replicant/rage, +/obj/item/organ/internal/brainmirror, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"t" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"u" = ( +/obj/structure/alien/wall, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"v" = ( +/obj/structure/alien/wall, +/turf/simulated/mineral, +/area/submap/hydroxeno) +"w" = ( +/mob/living/simple_mob/animal/space/alien/queen/empress, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"x" = ( +/obj/item/weapon/material/twohanded/sledgehammer, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"y" = ( +/obj/effect/alien/weeds, +/obj/random/material/refined, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"z" = ( +/mob/living/simple_mob/animal/space/alien/queen/empress/mother, +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"A" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/organ/internal/metamorphgland/replicant, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"B" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/item/stolenpackage, +/obj/item/organ/internal/intestine/xeno, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"C" = ( +/turf/simulated/mineral, +/area/submap/hydroxeno) +"D" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/item/organ/internal/liver/replicant, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"E" = ( +/mob/living/simple_mob/animal/space/alien/sentinel, +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"F" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"G" = ( +/obj/structure/alien/wall, +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"H" = ( +/obj/effect/alien/weeds, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"I" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"J" = ( +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"K" = ( +/obj/item/weapon/portable_scanner, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"L" = ( +/obj/effect/alien/weeds, +/obj/structure/closet/secure_closet/egg/xenomorph, +/obj/item/organ/internal/immunehub/replicant, +/obj/item/stolenpackage, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"M" = ( +/mob/living/simple_mob/animal/space/alien/drone, +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"N" = ( +/obj/item/weapon/storage/pouch/holding, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"O" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"P" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"Q" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"R" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"S" = ( +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"T" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"U" = ( +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/submap/hydroxeno) +"V" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"W" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"X" = ( +/obj/effect/alien/weeds, +/mob/living/simple_mob/animal/space/alien, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"Y" = ( +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian, +/obj/effect/alien/weeds, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) +"Z" = ( +/obj/effect/alien/weeds/node, +/obj/structure/bed/nest, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/hydroxeno) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +C +C +v +v +v +C +C +C +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +J +X +J +u +k +J +J +J +J +H +C +C +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +C +C +X +J +J +J +J +J +J +G +J +M +J +J +J +v +C +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +C +v +H +J +y +G +J +M +J +E +J +J +J +G +J +J +J +v +C +C +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +C +v +J +J +J +J +J +J +J +J +J +J +G +J +J +J +X +J +J +J +C +C +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +C +v +J +J +M +J +k +V +F +F +F +e +J +J +y +J +J +J +M +J +J +J +v +v +C +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +C +J +J +V +F +F +F +R +I +I +l +j +X +J +J +Y +J +V +F +F +e +J +J +J +v +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +C +C +C +J +W +R +P +I +I +I +I +I +I +j +J +G +J +J +J +Q +P +I +q +F +e +J +v +C +a +a +a +"} +(10,1,1) = {" +a +a +a +a +C +k +J +J +J +J +I +I +I +w +K +I +I +j +J +J +J +J +G +Q +P +i +I +l +j +J +J +C +a +a +a +"} +(11,1,1) = {" +a +a +a +C +v +J +M +J +t +T +P +N +I +I +I +I +I +j +J +J +D +J +k +Q +P +h +I +t +g +J +J +v +C +a +a +"} +(12,1,1) = {" +a +a +C +v +J +J +y +J +J +Q +P +I +l +O +f +f +f +g +J +J +E +J +J +Q +P +U +I +J +J +X +J +J +v +a +a +"} +(13,1,1) = {" +a +a +v +J +J +J +J +J +G +b +f +f +f +g +J +J +X +J +M +J +J +G +J +b +T +P +S +W +e +J +J +J +v +C +a +"} +(14,1,1) = {" +a +C +C +X +J +G +J +Y +J +J +y +E +J +J +J +J +J +J +J +J +J +J +J +H +b +T +P +l +j +J +G +J +H +v +a +"} +(15,1,1) = {" +a +C +k +J +J +J +J +J +J +J +J +J +J +k +O +f +f +f +f +f +T +J +E +J +J +b +f +f +g +J +J +J +J +C +a +"} +(16,1,1) = {" +a +v +J +G +J +J +G +J +H +O +f +f +f +f +g +u +H +J +J +J +Q +k +J +J +J +J +J +J +J +J +J +J +J +C +a +"} +(17,1,1) = {" +a +v +J +J +J +J +B +O +f +g +u +u +d +d +u +J +M +J +Y +J +b +t +J +y +J +J +J +G +J +y +J +M +J +v +a +"} +(18,1,1) = {" +a +C +v +M +y +X +J +j +u +u +n +L +J +J +J +X +J +J +J +J +J +X +J +J +J +J +J +J +J +r +J +J +J +v +a +"} +(19,1,1) = {" +a +a +C +J +J +J +J +j +d +J +z +J +X +J +J +J +J +J +J +J +J +J +J +J +M +J +J +J +E +J +J +J +J +v +a +"} +(20,1,1) = {" +a +a +C +v +X +J +J +j +d +J +J +J +J +J +X +J +J +J +M +J +J +J +J +J +J +J +G +J +J +J +G +J +J +C +a +"} +(21,1,1) = {" +a +a +a +v +J +G +J +j +u +d +Z +u +A +s +J +J +J +J +Y +J +V +W +J +X +J +J +J +J +X +J +J +J +X +v +a +"} +(22,1,1) = {" +a +a +a +v +k +J +J +q +F +F +F +e +u +u +d +d +u +u +H +J +Q +H +J +J +J +J +J +J +J +J +M +J +J +v +a +"} +(23,1,1) = {" +a +a +a +C +C +J +y +J +J +J +k +q +F +F +F +F +F +F +F +F +R +J +J +G +V +F +F +F +F +e +J +J +J +C +a +"} +(24,1,1) = {" +a +a +a +a +C +J +J +X +J +G +J +J +J +J +y +J +J +X +J +J +p +J +J +J +Q +P +I +I +l +j +J +J +v +C +a +"} +(25,1,1) = {" +a +a +a +a +v +J +G +J +J +J +J +H +V +F +F +F +e +J +J +J +J +y +J +J +Q +P +U +I +t +g +J +J +v +a +a +"} +(26,1,1) = {" +a +a +a +a +v +J +J +M +J +J +J +W +R +P +I +l +q +F +F +F +e +M +Y +J +Q +P +x +I +J +J +J +J +a +a +a +"} +(27,1,1) = {" +a +a +a +a +C +v +J +J +G +y +X +J +J +I +I +I +I +m +I +I +j +J +J +J +Q +P +i +I +W +e +J +X +a +a +a +"} +(28,1,1) = {" +a +a +a +a +a +v +J +J +J +J +J +t +T +P +o +I +I +I +I +I +j +J +J +J +Q +P +I +I +I +j +J +J +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +C +C +k +X +J +E +J +Q +P +I +I +w +I +I +O +g +G +J +J +b +T +P +l +N +j +J +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +C +C +J +J +J +J +b +T +P +I +I +I +I +j +H +J +J +E +H +b +f +f +f +g +J +a +a +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +C +v +J +J +J +k +Q +P +I +l +I +O +g +J +J +J +J +J +X +J +J +J +J +v +a +a +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +C +v +v +J +J +b +f +f +f +f +g +J +M +J +G +J +J +J +k +C +v +v +C +a +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +a +a +C +v +C +v +v +C +k +J +J +J +J +J +C +v +v +v +C +C +a +a +a +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +C +v +v +C +v +v +C +C +a +a +a +a +a +a +a +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/surface_submaps/valley/leechpond.dmm b/maps/submaps/surface_submaps/valley/leechpond.dmm new file mode 100644 index 0000000000..f671d74e0b --- /dev/null +++ b/maps/submaps/surface_submaps/valley/leechpond.dmm @@ -0,0 +1,603 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"n" = ( +/turf/template_noop, +/area/submap/leechpond) +"u" = ( +/turf/simulated/floor/outdoors/mud, +/area/submap/leechpond) +"y" = ( +/turf/simulated/floor/wood/sif, +/area/submap/leechpond) +"C" = ( +/turf/simulated/floor/water, +/area/submap/leechpond) +"G" = ( +/turf/simulated/wall/log_sif, +/area/submap/leechpond) +"T" = ( +/mob/living/simple_mob/faithless/strong, +/turf/simulated/floor/water, +/area/submap/leechpond) +"U" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/wood/sif, +/area/submap/leechpond) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +u +u +u +u +u +u +u +u +u +u +u +u +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +u +u +C +C +C +C +C +C +C +C +C +C +u +u +u +u +a +a +a +a +a +"} +(4,1,1) = {" +a +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +u +a +a +a +"} +(5,1,1) = {" +a +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +a +a +"} +(6,1,1) = {" +a +u +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +a +"} +(7,1,1) = {" +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +a +"} +(8,1,1) = {" +a +u +C +C +C +C +C +C +C +T +C +C +G +G +C +C +C +C +C +C +C +u +a +"} +(9,1,1) = {" +a +u +u +C +C +C +C +C +G +y +C +C +U +G +C +C +C +C +C +C +C +u +a +"} +(10,1,1) = {" +a +a +u +u +C +C +C +C +G +C +C +C +C +C +C +C +C +C +C +C +C +u +a +"} +(11,1,1) = {" +a +a +a +u +u +C +C +C +C +C +C +y +C +T +C +C +C +C +C +C +u +u +a +"} +(12,1,1) = {" +a +a +a +n +u +C +C +C +C +C +C +y +y +C +C +C +C +C +C +C +u +a +a +"} +(13,1,1) = {" +a +a +u +u +u +C +C +C +G +y +T +C +C +G +C +C +C +C +C +C +u +a +a +"} +(14,1,1) = {" +a +a +u +C +C +C +C +C +G +U +C +C +U +C +C +C +C +C +C +C +u +u +a +"} +(15,1,1) = {" +a +u +u +C +C +C +C +C +G +G +G +C +G +C +C +C +C +C +C +C +C +u +a +"} +(16,1,1) = {" +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +a +"} +(17,1,1) = {" +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +a +a +"} +(18,1,1) = {" +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +u +u +u +a +a +"} +(19,1,1) = {" +a +u +C +C +C +C +C +C +C +C +C +C +C +C +C +u +u +a +a +a +a +a +a +"} +(20,1,1) = {" +a +u +u +C +C +C +C +C +u +u +u +u +C +C +C +u +a +a +a +a +a +a +a +"} +(21,1,1) = {" +a +a +u +u +C +C +C +u +u +a +a +u +u +C +C +u +a +a +a +a +a +a +a +"} +(22,1,1) = {" +a +a +a +u +u +u +u +u +a +a +a +a +u +u +u +u +a +a +a +a +a +a +a +"} +(23,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/surface_submaps/valley/leppy.dmm b/maps/submaps/surface_submaps/valley/leppy.dmm new file mode 100644 index 0000000000..5712146a76 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/leppy.dmm @@ -0,0 +1,643 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"b" = ( +/obj/structure/table/gold, +/obj/random/energy/highend, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"d" = ( +/mob/living/simple_mob/vore/lamia/random, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"r" = ( +/obj/structure/table/gold, +/obj/random/contraband/nofail, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"s" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/random, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"t" = ( +/mob/living/simple_mob/vore/leopardmander/exotic, +/turf/simulated/floor/water/ocean{ + outdoors = 0 + }, +/area/submap/leppy) +"z" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/leppy) +"A" = ( +/turf/template_noop, +/area/template_noop) +"D" = ( +/obj/structure/table/gold, +/obj/random/medical/pillbottle, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"F" = ( +/obj/structure/table/gold, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"J" = ( +/obj/structure/table/gold, +/obj/random/maintenance/misc, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) +"K" = ( +/turf/simulated/wall/sandstone, +/area/submap/leppy) +"L" = ( +/turf/simulated/floor/water/ocean{ + outdoors = 0 + }, +/area/submap/leppy) +"Z" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/mineral/floor/cave, +/area/submap/leppy) + +(1,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +"} +(2,1,1) = {" +A +A +A +A +A +K +K +K +K +K +K +K +K +A +A +A +A +A +A +A +A +A +A +"} +(3,1,1) = {" +A +A +A +A +A +K +r +a +a +a +a +r +K +A +A +A +A +A +A +A +A +A +A +"} +(4,1,1) = {" +A +A +A +A +A +K +D +d +a +a +a +J +K +A +z +z +z +A +A +A +A +A +A +"} +(5,1,1) = {" +A +A +A +A +A +K +r +a +a +a +a +r +K +z +z +a +z +z +z +A +A +A +A +"} +(6,1,1) = {" +A +A +A +z +z +K +K +K +a +a +K +K +K +a +a +a +a +a +z +z +A +A +A +"} +(7,1,1) = {" +A +A +A +z +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +A +A +A +"} +(8,1,1) = {" +A +A +A +z +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +z +A +A +"} +(9,1,1) = {" +A +A +z +z +a +a +a +L +L +L +L +a +a +a +L +L +a +a +a +a +z +A +A +"} +(10,1,1) = {" +A +A +z +a +a +a +a +L +L +L +L +L +L +L +L +L +L +a +a +a +z +A +A +"} +(11,1,1) = {" +A +A +z +a +a +a +L +L +L +L +L +L +L +L +L +L +L +a +a +a +z +A +A +"} +(12,1,1) = {" +A +A +z +a +a +a +L +L +L +L +L +L +L +L +L +L +L +a +a +a +z +A +A +"} +(13,1,1) = {" +A +A +z +a +a +a +L +L +L +L +L +t +L +L +L +L +L +a +a +z +z +A +A +"} +(14,1,1) = {" +A +A +z +z +a +a +L +L +L +L +L +L +L +L +L +L +a +a +a +z +z +A +A +"} +(15,1,1) = {" +A +A +A +z +z +a +a +a +L +L +L +L +L +L +L +L +a +K +K +K +K +K +A +"} +(16,1,1) = {" +A +A +A +A +z +z +a +a +a +a +L +L +L +L +L +a +a +a +a +a +Z +K +A +"} +(17,1,1) = {" +A +A +A +K +K +K +a +a +K +a +a +L +L +L +a +a +a +a +a +a +a +K +A +"} +(18,1,1) = {" +A +A +A +K +F +a +a +a +K +a +a +a +a +a +a +a +a +K +s +a +Z +K +A +"} +(19,1,1) = {" +A +A +A +K +F +d +a +a +K +a +a +a +a +a +a +a +a +K +a +d +a +K +A +"} +(20,1,1) = {" +A +A +A +K +b +a +a +a +K +z +z +z +a +a +a +a +z +K +s +a +Z +K +A +"} +(21,1,1) = {" +A +A +A +K +K +K +K +K +K +A +A +z +z +z +z +z +z +K +K +K +K +K +A +"} +(22,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +"} +(23,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +"} diff --git a/maps/submaps/surface_submaps/valley/mausarmy.dmm b/maps/submaps/surface_submaps/valley/mausarmy.dmm new file mode 100644 index 0000000000..fd7edc821c --- /dev/null +++ b/maps/submaps/surface_submaps/valley/mausarmy.dmm @@ -0,0 +1,1140 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/turf/template_noop, +/area/template_noop) +"ay" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"cU" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"dd" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"dW" = ( +/obj/machinery/door/blast/shutters, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"ed" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/obstruction, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"et" = ( +/obj/random/trash_pile, +/turf/template_noop, +/area/template_noop) +"gf" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"ht" = ( +/obj/random/trash_pile, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"hR" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"iL" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"kT" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/obstruction, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"lI" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/item/slime_irradiator, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"mJ" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/obj/random/contraband, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"mQ" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire, +/turf/simulated/shuttle/floor/yellow, +/area/submap/mausarmy) +"oS" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/safe, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"pB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"ra" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"rx" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"sg" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"tq" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"vj" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/obstruction, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"vn" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"vp" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/structure/closet/crate/secure/loot, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"vI" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"we" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"wi" = ( +/obj/structure/table/gold, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel, +/turf/simulated/shuttle/floor/yellow, +/area/submap/mausarmy) +"wP" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"xm" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"zy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"zz" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"zN" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/table/fancyblack, +/obj/random/cash, +/obj/random/cash, +/obj/random/cash, +/obj/item/stolenpackage, +/obj/item/weapon/card/emag/used, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"zV" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"Ad" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"AG" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"AV" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"AX" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"Bu" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"BV" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"CB" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"Do" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/effect/landmark/loot_spawn, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"DU" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/random/rigsuit/chancetofail, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Er" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Ev" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Fn" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"FJ" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/table/fancyblack, +/obj/random/cash, +/obj/random/cash, +/obj/random/cash, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"FO" = ( +/turf/simulated/wall/gold, +/area/submap/mausarmy) +"Hj" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Hr" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/item/stolenpackage, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"JM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Lh" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"LI" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"MF" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"NM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"Oq" = ( +/obj/machinery/door/airlock/gold, +/turf/simulated/shuttle/floor/yellow, +/area/submap/mausarmy) +"OJ" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/item/stolenpackage, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"OO" = ( +/obj/structure/shuttle/engine/heater, +/turf/simulated/wall/gold, +/area/submap/mausarmy) +"Pz" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/table/fancyblack, +/obj/random/cash, +/obj/random/cash, +/obj/random/cash, +/obj/random/rigsuit, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Qd" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/item/stolenpackage, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Qj" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/item/stolenpackage, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Rp" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Rx" = ( +/turf/simulated/wall/r_wall, +/area/submap/mausarmy) +"RE" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"RQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"TL" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"VC" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/random/crate, +/obj/item/stolenpackage, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/random/contraband, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"VE" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"WV" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"XT" = ( +/obj/effect/floor_decal/corner_techfloor_gray/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"XW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Yh" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/mob/living/simple_mob/humanoid/merc/ranged{ + faction = "mouse_army" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"YT" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Ze" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) +"Zm" = ( +/obj/structure/fence/cut/large{ + dir = 8; + icon_state = "straight_cut3" + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"ZK" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/submap/mausarmy) +"ZV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/mausarmy) + +(1,1,1) = {" +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +"} +(2,1,1) = {" +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +"} +(3,1,1) = {" +ao +ao +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +ao +ao +ao +"} +(4,1,1) = {" +ao +ao +vn +XW +XW +XW +Fn +XW +pB +ZV +XW +XW +XW +ZV +XW +XW +pB +Fn +XW +XW +XW +cU +ao +ao +ao +"} +(5,1,1) = {" +ao +ao +ay +VE +VE +VE +dW +VE +VE +FO +Oq +FO +Oq +OO +Ad +VE +VE +dW +VE +VE +VE +tq +ao +ao +ao +"} +(6,1,1) = {" +ao +ao +ay +VE +VE +VE +dW +VE +Bu +FO +mQ +wi +mQ +FO +VE +MF +VE +dW +VE +VE +VE +tq +ao +ao +ao +"} +(7,1,1) = {" +ao +ao +ay +VE +VE +VE +dW +VE +VE +FO +Oq +FO +Oq +OO +Ad +VE +Ze +dW +VE +VE +VE +tq +ao +ao +ao +"} +(8,1,1) = {" +ao +ao +TL +zy +zy +zy +WV +zy +RQ +zy +zy +zy +zy +zy +zy +zy +zy +WV +zy +zy +zy +Lh +ao +ao +ao +"} +(9,1,1) = {" +ao +ao +Rx +Rx +Rx +Rx +Rx +zz +Ev +Ev +Ev +Ev +vj +Ev +Ev +Rp +Rp +Rx +Rx +Rx +Rx +Rx +ao +ao +ao +"} +(10,1,1) = {" +ao +ao +CB +CB +AX +sg +Rx +VC +Ev +Ev +vj +OJ +vj +Ev +XT +Ev +vj +Rx +ht +CB +ht +CB +ao +ao +ao +"} +(11,1,1) = {" +ao +ao +CB +CB +Zm +NM +Rx +vp +Rp +Ev +Ev +vI +Ev +xm +Ev +Ev +BV +Rx +CB +CB +CB +CB +ao +ao +ao +"} +(12,1,1) = {" +ao +ao +ao +CB +AX +zV +Rx +Rp +Ev +Ev +Ev +vj +Ev +xm +Ev +Qj +RE +Rx +ht +CB +CB +CB +ao +ao +ao +"} +(13,1,1) = {" +ao +ao +ao +CB +AX +CB +Rx +ed +Ev +gf +Ev +Ev +vj +Ev +wP +Ev +kT +Rx +CB +CB +CB +ao +ao +ao +ao +"} +(14,1,1) = {" +ao +ao +ao +CB +ZK +LI +Rx +mJ +ra +Ev +Ev +Ev +DU +Hr +Ev +ra +Rp +Rx +ht +CB +CB +ao +ao +ao +ao +"} +(15,1,1) = {" +ao +ao +ao +ao +CB +CB +Rx +Qd +Ev +Rp +Do +Ev +vj +dd +Ev +Rp +hR +Rx +CB +CB +CB +ao +ao +ao +ao +"} +(16,1,1) = {" +ao +ao +ao +ao +CB +CB +Rx +Rx +JM +Rx +Rx +Rx +Rx +Rx +Er +Rx +Rx +Rx +CB +CB +ao +ao +ao +ao +ao +"} +(17,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +AV +AV +AV +AV +Rx +Hj +iL +Hj +iL +Hj +Rx +CB +CB +ao +ao +ao +ao +ao +"} +(18,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +rx +zN +AV +Yh +Rx +AG +Hj +Hj +Hj +Hj +Rx +CB +CB +ao +ao +ao +ao +ao +"} +(19,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +YT +FJ +lI +AV +JM +Hj +Hj +Hj +Hj +Hj +Rx +CB +ao +ao +ao +ao +ao +ao +"} +(20,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +rx +Pz +AV +AV +Rx +AG +we +Hj +Hj +Hj +Er +CB +ao +ao +ao +ao +ao +ao +"} +(21,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +oS +AV +AV +AV +Rx +Hj +Hj +Hj +Hj +Hj +Rx +CB +ao +ao +ao +ao +ao +ao +"} +(22,1,1) = {" +ao +ao +ao +ao +ao +CB +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +Rx +CB +ao +ao +ao +ao +ao +ao +"} +(23,1,1) = {" +ao +ao +ao +ao +ao +ao +ao +et +ao +ao +et +ao +ao +et +ao +ao +et +ao +ao +ao +ao +ao +ao +ao +ao +"} +(24,1,1) = {" +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +"} +(25,1,1) = {" +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +"} diff --git a/maps/submaps/surface_submaps/valley/metroidmaze.dmm b/maps/submaps/surface_submaps/valley/metroidmaze.dmm new file mode 100644 index 0000000000..dd14c211ae --- /dev/null +++ b/maps/submaps/surface_submaps/valley/metroidmaze.dmm @@ -0,0 +1,997 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/dungeon, +/area/submap/metroidmaze) +"p" = ( +/turf/simulated/wall/gold{ + can_open = 1 + }, +/area/submap/metroidmaze) +"s" = ( +/turf/simulated/wall/dungeon{ + can_open = 1 + }, +/area/submap/metroidmaze) +"w" = ( +/mob/living/simple_mob/metroid/juvenile/omega, +/turf/simulated/floor/dungeon, +/area/submap/metroidmaze) +"D" = ( +/turf/template_noop, +/area/template_noop) +"E" = ( +/mob/living/simple_mob/metroid/juvenile/alpha, +/turf/simulated/floor/dungeon, +/area/submap/metroidmaze) +"F" = ( +/obj/structure/table/standard, +/obj/random/projectile/random, +/obj/random/energy/highend, +/obj/random/firstaid, +/obj/random/medical/pillbottle, +/turf/simulated/floor/dungeon, +/area/submap/metroidmaze) +"Z" = ( +/turf/simulated/wall/dungeon, +/area/submap/metroidmaze) + +(1,1,1) = {" +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +"} +(2,1,1) = {" +D +Z +Z +a +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +D +"} +(3,1,1) = {" +D +Z +Z +a +Z +Z +Z +Z +Z +Z +Z +Z +a +a +a +a +a +a +a +a +a +a +a +Z +Z +Z +a +Z +Z +D +"} +(4,1,1) = {" +D +Z +Z +a +a +a +a +a +a +a +Z +Z +a +Z +Z +Z +a +Z +Z +a +Z +Z +a +Z +Z +Z +a +Z +Z +D +"} +(5,1,1) = {" +D +Z +Z +a +Z +Z +Z +a +Z +Z +Z +Z +a +Z +Z +Z +a +Z +Z +a +Z +Z +a +Z +Z +Z +a +Z +Z +D +"} +(6,1,1) = {" +D +Z +Z +Z +Z +Z +Z +a +a +a +a +a +a +a +Z +Z +a +Z +Z +a +Z +Z +a +a +a +a +a +a +Z +D +"} +(7,1,1) = {" +D +Z +a +a +a +a +a +a +Z +Z +Z +Z +Z +a +Z +Z +a +Z +Z +a +a +a +a +Z +Z +Z +Z +a +Z +D +"} +(8,1,1) = {" +D +Z +a +Z +Z +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +Z +Z +a +Z +D +"} +(9,1,1) = {" +D +Z +a +Z +Z +Z +Z +a +Z +Z +Z +Z +Z +a +a +a +E +p +a +Z +Z +Z +a +Z +Z +Z +Z +a +Z +D +"} +(10,1,1) = {" +D +Z +a +Z +a +a +a +a +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +E +Z +Z +Z +Z +a +Z +D +"} +(11,1,1) = {" +D +Z +a +Z +a +Z +Z +a +a +a +a +a +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +p +Z +Z +a +a +a +a +D +"} +(12,1,1) = {" +D +Z +a +a +a +Z +Z +Z +Z +a +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +a +a +Z +Z +a +Z +Z +Z +D +"} +(13,1,1) = {" +D +Z +Z +Z +a +Z +Z +Z +Z +a +Z +Z +F +a +a +F +Z +Z +a +Z +Z +a +Z +Z +Z +a +Z +Z +Z +D +"} +(14,1,1) = {" +D +Z +Z +Z +a +Z +Z +Z +Z +a +Z +Z +a +a +a +a +Z +Z +a +a +a +a +Z +Z +Z +a +Z +Z +Z +D +"} +(15,1,1) = {" +D +Z +Z +Z +a +a +a +a +a +a +Z +Z +a +w +a +a +a +a +a +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +D +"} +(16,1,1) = {" +D +Z +Z +a +a +Z +Z +Z +Z +a +Z +Z +a +a +a +a +Z +Z +a +Z +Z +Z +a +a +a +a +Z +Z +Z +D +"} +(17,1,1) = {" +D +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +F +a +a +F +Z +Z +a +Z +Z +Z +a +Z +Z +a +Z +Z +Z +D +"} +(18,1,1) = {" +D +Z +Z +a +Z +a +a +a +a +a +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +a +Z +Z +a +a +a +Z +D +"} +(19,1,1) = {" +D +Z +Z +a +Z +a +Z +Z +Z +a +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +a +Z +Z +Z +Z +a +Z +D +"} +(20,1,1) = {" +D +Z +Z +a +Z +a +Z +Z +Z +a +a +a +a +Z +Z +a +a +a +a +Z +Z +Z +a +Z +Z +Z +Z +a +Z +D +"} +(21,1,1) = {" +D +Z +Z +a +Z +a +Z +Z +Z +Z +Z +Z +a +Z +Z +a +Z +Z +Z +s +a +a +a +a +a +a +a +a +Z +D +"} +(22,1,1) = {" +D +a +a +a +a +a +a +a +Z +Z +Z +Z +a +Z +Z +a +Z +Z +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(23,1,1) = {" +D +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +Z +a +Z +Z +a +Z +Z +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(24,1,1) = {" +D +Z +Z +Z +Z +Z +Z +a +Z +Z +Z +Z +a +Z +Z +a +Z +a +a +a +a +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(25,1,1) = {" +D +Z +Z +a +Z +Z +Z +a +a +a +a +a +a +a +E +p +Z +a +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(26,1,1) = {" +D +Z +Z +a +Z +Z +Z +a +Z +a +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +a +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(27,1,1) = {" +D +Z +Z +a +a +a +a +a +Z +a +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +a +a +a +a +a +a +a +Z +Z +D +"} +(28,1,1) = {" +D +Z +Z +Z +Z +Z +Z +Z +Z +a +a +a +a +a +a +a +a +a +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(29,1,1) = {" +D +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +a +Z +Z +D +"} +(30,1,1) = {" +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +"} diff --git a/maps/submaps/surface_submaps/valley/mouseattack.dmm b/maps/submaps/surface_submaps/valley/mouseattack.dmm new file mode 100644 index 0000000000..49a60e59e8 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/mouseattack.dmm @@ -0,0 +1,833 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"c" = ( +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"d" = ( +/obj/machinery/door/blast/shutters, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"i" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/rigsuit/chancetofail, +/obj/item/rig_module/mounted/phase, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"j" = ( +/turf/simulated/wall/gold, +/area/submap/mouseattack) +"l" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire/manned, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"o" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/rigsuit/chancetofail, +/obj/item/rig_module/voice, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"q" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator/manned, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"s" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"t" = ( +/obj/structure/shuttle/engine/heater, +/turf/simulated/wall/gold, +/area/submap/mouseattack) +"u" = ( +/mob/living/simple_mob/animal/space/mouse_army/ammo, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"v" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/rig_module/chem_dispenser/injector/advanced, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"w" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/defib, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"y" = ( +/turf/template_noop, +/area/submap/mouseattack) +"z" = ( +/obj/machinery/door/blast/shutters, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) +"B" = ( +/mob/living/simple_mob/animal/space/mouse_army/operative, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"C" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/rigsuit/chancetofail, +/obj/item/rig_module/rad_shield, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"D" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator/manned, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"J" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire/manned, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"N" = ( +/obj/structure/table/rack, +/obj/random/rigsuit/chancetofail, +/obj/item/rig_module/fabricator, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"S" = ( +/obj/machinery/door/airlock/gold, +/turf/simulated/floor/tiled/yellow, +/area/submap/mouseattack) +"X" = ( +/turf/simulated/wall/r_wall, +/area/submap/mouseattack) +"Y" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/manned, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/mouseattack) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(3,1,1) = {" +a +a +d +s +s +s +s +s +s +s +s +s +s +s +s +s +q +s +X +a +"} +(4,1,1) = {" +a +a +d +s +Y +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(5,1,1) = {" +a +a +d +s +s +s +s +j +c +c +B +c +c +c +t +b +s +s +X +a +"} +(6,1,1) = {" +a +a +d +s +s +s +s +j +J +c +N +w +c +J +t +b +s +s +X +a +"} +(7,1,1) = {" +a +a +d +s +s +s +s +j +c +c +c +B +c +c +t +b +s +s +X +a +"} +(8,1,1) = {" +a +a +d +s +Y +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(9,1,1) = {" +a +a +d +s +s +s +s +s +s +s +s +s +s +s +s +s +q +s +X +a +"} +(10,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(11,1,1) = {" +a +a +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +a +"} +(12,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(13,1,1) = {" +a +a +z +s +s +s +s +s +s +s +s +s +s +s +s +s +Y +s +X +a +"} +(14,1,1) = {" +a +a +z +s +l +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(15,1,1) = {" +a +a +z +s +s +s +s +j +c +c +c +u +c +c +t +b +s +s +X +a +"} +(16,1,1) = {" +a +a +z +s +s +s +s +j +D +c +v +o +c +D +t +b +s +s +X +a +"} +(17,1,1) = {" +a +a +z +s +s +s +s +j +c +c +c +u +c +c +t +b +s +s +X +a +"} +(18,1,1) = {" +a +a +z +s +l +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(19,1,1) = {" +a +a +z +s +s +s +s +s +s +s +s +s +s +s +s +s +Y +s +X +a +"} +(20,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(21,1,1) = {" +a +a +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +a +"} +(22,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(23,1,1) = {" +a +a +z +s +s +s +s +s +s +s +s +s +s +s +s +s +Y +s +X +a +"} +(24,1,1) = {" +a +a +z +s +q +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(25,1,1) = {" +a +a +z +s +s +s +s +j +c +c +c +u +c +c +t +b +s +s +X +a +"} +(26,1,1) = {" +a +a +z +s +s +s +s +j +J +c +i +C +c +J +t +b +s +s +X +a +"} +(27,1,1) = {" +a +a +z +s +s +s +s +j +c +c +B +c +c +c +t +b +s +s +X +a +"} +(28,1,1) = {" +a +a +z +s +l +s +s +j +j +S +j +j +S +j +t +b +s +s +X +a +"} +(29,1,1) = {" +a +a +z +s +s +s +s +s +s +s +s +s +s +s +s +s +q +s +X +a +"} +(30,1,1) = {" +a +a +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +X +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/surface_submaps/valley/mousehq.dmm b/maps/submaps/surface_submaps/valley/mousehq.dmm new file mode 100644 index 0000000000..d91b727004 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/mousehq.dmm @@ -0,0 +1,1257 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/table/alien/blue, +/obj/random/material/refined, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"b" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/manned, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"c" = ( +/turf/simulated/wall/uranium, +/area/submap/mousehq) +"d" = ( +/obj/structure/table/alien/blue, +/obj/random/material/refined, +/obj/item/stack/material/phoron, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"e" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"f" = ( +/mob/living/simple_mob/animal/space/mouse_army/ammo, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"g" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"h" = ( +/obj/structure/table/alien/blue, +/obj/item/clothing/under/punpun, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"i" = ( +/obj/structure/table/alien/blue, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"j" = ( +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"k" = ( +/obj/structure/table/alien/blue, +/obj/item/clothing/under/psysuit, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"l" = ( +/obj/machinery/door/airlock/sandstone, +/obj/machinery/door/blast/puzzle{ + checkrange_mult = 3; + dir = 4; + layer = 3.3; + name = "Blast Door"; + open_layer = 3.3 + }, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"m" = ( +/mob/living/simple_mob/animal/space/mouse_army/pyro, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"n" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"o" = ( +/obj/machinery/door/airlock/sandstone, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"p" = ( +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"q" = ( +/mob/living/simple_mob/animal/space/mouse_army/ammo, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"r" = ( +/obj/structure/prop/lock/projectile{ + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"s" = ( +/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel, +/obj/item/weapon/cell/device/weapon/recharge/alien/omni, +/obj/structure/table/alien/blue, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"t" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/submap/mousehq) +"u" = ( +/obj/structure/table/alien/blue, +/obj/random/material/refined, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"v" = ( +/turf/simulated/shuttle/wall/alien, +/area/submap/mousehq) +"w" = ( +/mob/living/simple_mob/animal/space/mouse_army/operative, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"x" = ( +/obj/structure/closet/alien, +/obj/item/prop/alien/junk, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"y" = ( +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"z" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"A" = ( +/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel, +/obj/structure/table/alien/blue, +/obj/item/device/multitool/alien, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"B" = ( +/turf/simulated/floor/plating, +/area/submap/mousehq) +"D" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire/manned, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"E" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire/manned, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"F" = ( +/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel, +/obj/structure/table/alien/blue, +/obj/item/clothing/suit/armor/alien, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"G" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"H" = ( +/mob/living/simple_mob/animal/space/mouse_army/operative, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"J" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator/manned, +/obj/random/material/refined, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"K" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/mousehq) +"M" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator/manned, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"N" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/eraticator/manned, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"O" = ( +/turf/simulated/wall/sandstone, +/area/submap/mousehq) +"P" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/mousehq) +"Q" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/submap/mousehq) +"R" = ( +/obj/structure/table/alien/blue, +/obj/item/clothing/under/psysuit, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"S" = ( +/obj/structure/table/alien/blue, +/obj/random/material/refined, +/obj/item/stack/material/phoron, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"T" = ( +/obj/machinery/door/airlock/sandstone, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"U" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) +"V" = ( +/turf/template_noop, +/area/template_noop) +"W" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"X" = ( +/mob/living/simple_mob/mechanical/mecha/mouse_tank/manned, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"Y" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/obj/item/stack/material/phoron, +/turf/simulated/floor/wmarble, +/area/submap/mousehq) +"Z" = ( +/obj/structure/closet/alien, +/obj/item/prop/alien/junk, +/turf/simulated/floor/bmarble, +/area/submap/mousehq) + +(1,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +"} +(2,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +V +O +O +O +O +O +O +O +V +V +V +V +V +V +V +V +V +V +V +V +"} +(3,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +O +O +Y +g +W +g +G +O +O +V +V +V +V +V +V +V +V +V +V +V +"} +(4,1,1) = {" +V +V +V +V +V +V +V +V +V +V +O +O +j +f +p +y +p +f +z +O +O +V +V +V +V +V +V +V +V +V +V +"} +(5,1,1) = {" +V +V +V +V +V +V +V +V +V +O +O +z +y +p +y +H +y +p +y +j +O +O +V +V +V +V +V +V +V +V +V +"} +(6,1,1) = {" +V +V +V +V +V +V +V +V +O +O +x +y +X +y +p +y +p +y +X +y +x +O +O +V +V +V +V +V +V +V +V +"} +(7,1,1) = {" +V +V +V +V +V +V +V +O +O +O +Z +N +y +H +y +D +y +H +y +N +Z +O +O +O +V +V +V +V +V +V +V +"} +(8,1,1) = {" +V +V +V +V +V +V +O +O +D +O +x +y +p +y +p +y +p +y +p +y +x +O +p +O +O +V +V +V +V +V +V +"} +(9,1,1) = {" +V +V +V +V +V +O +O +p +y +O +O +O +O +O +T +o +O +O +O +O +O +O +O +O +O +O +V +V +V +V +V +"} +(10,1,1) = {" +V +V +V +V +O +O +p +y +p +T +p +y +p +y +p +y +p +y +p +y +D +O +S +y +p +O +O +V +V +V +V +"} +(11,1,1) = {" +V +V +V +O +O +p +y +p +y +O +y +p +y +p +y +p +y +p +y +p +y +O +Z +p +b +p +O +O +V +V +V +"} +(12,1,1) = {" +V +V +O +O +p +y +p +y +i +O +p +M +p +y +p +E +p +y +p +M +p +O +x +b +p +y +p +O +O +V +V +"} +(13,1,1) = {" +V +O +O +p +y +N +y +q +h +O +f +p +y +p +y +q +y +p +y +p +y +O +a +p +y +p +y +H +O +O +V +"} +(14,1,1) = {" +V +O +e +y +p +y +p +y +i +O +O +O +O +v +v +v +v +v +O +O +o +O +O +O +O +T +O +O +O +O +V +"} +(15,1,1) = {" +V +O +k +p +m +p +m +p +y +O +y +p +f +v +y +F +c +v +b +p +y +p +y +q +y +p +y +p +a +O +V +"} +(16,1,1) = {" +V +O +R +y +p +y +p +y +p +T +p +y +p +l +p +m +s +v +D +y +p +y +H +y +p +y +D +f +W +O +V +"} +(17,1,1) = {" +V +O +n +p +y +p +y +p +y +O +y +p +f +v +y +A +c +v +b +p +y +p +y +q +y +p +y +p +a +O +V +"} +(18,1,1) = {" +V +O +O +O +o +T +o +O +O +O +O +O +O +v +v +v +v +v +O +O +o +T +O +O +O +T +O +O +O +O +V +"} +(19,1,1) = {" +V +V +K +K +K +K +K +K +K +K +K +K +P +O +y +p +y +Q +O +p +y +p +O +u +y +p +M +H +O +O +V +"} +(20,1,1) = {" +V +V +V +K +K +K +K +K +K +K +K +K +K +O +r +y +N +t +O +y +p +y +O +Z +p +y +p +O +O +V +V +"} +(21,1,1) = {" +V +V +V +V +K +K +K +K +K +K +K +K +K +O +y +p +y +B +O +p +y +p +O +x +J +p +O +O +V +V +V +"} +(22,1,1) = {" +V +V +V +V +V +K +K +K +K +K +K +K +K +O +O +T +o +O +O +y +p +y +O +d +p +O +O +V +V +V +V +"} +(23,1,1) = {" +V +V +V +V +V +V +K +K +K +K +K +K +K +O +y +H +y +p +y +q +f +q +O +O +O +O +V +V +V +V +V +"} +(24,1,1) = {" +V +V +V +V +V +V +V +K +K +K +K +K +K +O +p +w +p +y +p +y +p +y +O +O +O +V +V +V +V +V +V +"} +(25,1,1) = {" +V +V +V +V +V +V +V +V +K +K +K +K +K +O +O +o +T +O +O +O +O +O +O +O +V +V +V +V +V +V +V +"} +(26,1,1) = {" +V +V +V +V +V +V +V +V +V +K +K +K +K +O +p +E +D +y +p +M +x +O +O +V +V +V +V +V +V +V +V +"} +(27,1,1) = {" +V +V +V +V +V +V +V +V +V +V +K +K +K +O +y +p +y +p +y +x +O +O +V +V +V +V +V +V +V +V +V +"} +(28,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +K +K +O +p +w +H +M +x +O +O +V +V +V +V +V +V +V +V +V +V +"} +(29,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +V +K +O +n +j +U +e +O +O +V +V +V +V +V +V +V +V +V +V +V +"} +(30,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +V +V +O +O +O +O +O +O +V +V +V +V +V +V +V +V +V +V +V +V +"} +(31,1,1) = {" +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +V +"} diff --git a/maps/submaps/surface_submaps/valley/phorondragon.dmm b/maps/submaps/surface_submaps/valley/phorondragon.dmm new file mode 100644 index 0000000000..4e5f960a3b --- /dev/null +++ b/maps/submaps/surface_submaps/valley/phorondragon.dmm @@ -0,0 +1,853 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/item/stack/material/phoron{ + amount = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"c" = ( +/turf/simulated/floor/water, +/area/submap/phorondragon) +"d" = ( +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"i" = ( +/mob/living/simple_mob/vore/aggressive/dragon/virgo3b, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"j" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"k" = ( +/turf/simulated/floor/water/deep, +/area/submap/phorondragon) +"n" = ( +/obj/item/slime_extract/purple, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"s" = ( +/obj/structure/outcrop/phoron, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"u" = ( +/obj/item/toy/plushie/carp/nebula, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"x" = ( +/turf/template_noop, +/area/template_noop) +"A" = ( +/obj/item/slime_extract/dark_purple, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"E" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"H" = ( +/turf/simulated/wall/phoron, +/area/submap/phorondragon) +"J" = ( +/turf/simulated/mineral, +/area/submap/phorondragon) +"P" = ( +/obj/item/weapon/gun/magnetic/matfed/phoronbore, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"S" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) +"U" = ( +/obj/structure/prop/statue/phoron, +/turf/simulated/floor/water/deep, +/area/submap/phorondragon) +"W" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/phorondragon) + +(1,1,1) = {" +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +"} +(2,1,1) = {" +x +x +x +x +x +x +x +x +x +x +x +x +x +x +c +c +c +c +c +c +x +x +x +x +x +x +x +"} +(3,1,1) = {" +x +x +x +x +x +x +x +x +x +x +x +x +x +c +c +c +c +c +c +c +c +x +x +x +x +x +x +"} +(4,1,1) = {" +x +x +x +x +x +x +x +x +x +x +x +x +c +c +c +c +c +c +c +c +c +c +c +x +x +x +x +"} +(5,1,1) = {" +x +x +x +x +x +x +x +x +x +x +J +c +c +c +c +k +k +k +k +U +c +c +c +c +c +x +x +"} +(6,1,1) = {" +x +x +x +x +x +x +x +x +x +J +J +c +c +c +k +k +k +k +k +k +k +c +c +c +c +c +x +"} +(7,1,1) = {" +x +x +x +x +x +x +x +J +J +j +j +c +c +c +U +k +k +k +k +k +k +k +c +c +c +c +x +"} +(8,1,1) = {" +x +x +x +x +x +J +J +S +j +j +j +c +c +c +k +k +k +k +k +k +k +k +k +c +c +c +x +"} +(9,1,1) = {" +x +x +x +x +J +J +j +j +j +j +j +c +c +c +k +k +k +k +k +k +k +k +k +k +c +c +x +"} +(10,1,1) = {" +x +x +x +J +J +s +j +j +j +j +j +j +c +c +k +k +k +k +k +k +k +k +k +U +c +c +x +"} +(11,1,1) = {" +x +x +J +J +j +j +a +j +s +W +j +j +c +c +k +k +k +k +k +k +k +k +k +c +c +c +x +"} +(12,1,1) = {" +x +x +J +S +j +j +j +j +j +j +j +j +c +c +c +k +k +k +k +k +k +k +k +c +c +c +x +"} +(13,1,1) = {" +x +x +J +j +j +j +i +j +j +j +j +j +c +c +c +k +k +k +k +k +k +k +c +c +c +x +x +"} +(14,1,1) = {" +x +J +J +j +n +j +j +j +a +j +j +j +c +c +c +c +k +U +k +k +k +c +c +c +c +x +x +"} +(15,1,1) = {" +x +J +j +s +j +j +j +j +j +j +j +j +s +c +c +c +c +c +c +c +c +c +c +c +c +x +x +"} +(16,1,1) = {" +x +J +j +W +j +j +W +s +j +j +j +j +j +j +c +c +c +c +c +c +c +c +c +c +x +x +x +"} +(17,1,1) = {" +x +J +j +j +a +j +j +j +j +j +j +W +j +j +j +j +j +c +c +c +c +c +c +c +x +x +x +"} +(18,1,1) = {" +x +J +j +j +H +j +j +j +j +j +j +s +j +j +a +j +j +j +j +j +j +j +s +J +x +x +x +"} +(19,1,1) = {" +x +J +s +H +j +a +j +j +i +j +j +A +j +j +j +j +j +j +j +j +j +J +J +J +x +x +x +"} +(20,1,1) = {" +x +J +J +E +j +s +d +j +j +j +j +j +j +j +j +j +W +s +j +j +j +J +x +x +x +x +x +"} +(21,1,1) = {" +x +x +J +j +j +P +j +j +j +j +j +a +j +j +i +j +j +j +j +j +J +J +x +x +x +x +x +"} +(22,1,1) = {" +x +x +J +J +u +a +H +j +j +s +W +j +j +j +j +j +a +j +j +J +x +x +x +x +x +x +x +"} +(23,1,1) = {" +x +x +x +J +J +H +a +j +j +j +j +j +j +j +s +j +j +S +J +J +x +x +x +x +x +x +x +"} +(24,1,1) = {" +x +x +x +x +J +s +j +j +j +j +j +a +j +j +j +j +J +J +x +x +x +x +x +x +x +x +x +"} +(25,1,1) = {" +x +x +x +x +J +J +J +j +j +j +j +j +j +j +S +J +J +x +x +x +x +x +x +x +x +x +x +"} +(26,1,1) = {" +x +x +x +x +x +x +J +J +J +S +J +J +J +J +J +J +x +x +x +x +x +x +x +x +x +x +x +"} +(27,1,1) = {" +x +x +x +x +x +x +x +x +J +J +J +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +"} diff --git a/maps/submaps/surface_submaps/valley/piratefortress.dmm b/maps/submaps/surface_submaps/valley/piratefortress.dmm new file mode 100644 index 0000000000..73fd0d5391 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/piratefortress.dmm @@ -0,0 +1,2828 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ar" = ( +/obj/item/clothing/glasses/thermal/plain/eyepatch, +/obj/structure/closet/crate, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/random/energy/highend, +/obj/item/stolenpackage, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"aE" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"bt" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/super, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"bG" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"bK" = ( +/obj/structure/table/marble, +/obj/random/tool/power, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"bT" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"cg" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"ck" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/stolenpackage, +/obj/item/weapon/card/emag, +/obj/item/rig_module/mounted/energy_blade, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"cK" = ( +/obj/random/tool, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"df" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"dB" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"dK" = ( +/obj/random/material, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"dZ" = ( +/obj/structure/table/marble, +/obj/random/material/refined, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"es" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"eF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/under/pirate, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"fq" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ft" = ( +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"fU" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/energy/highend, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"gN" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"gQ" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/armored, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"gU" = ( +/obj/structure/closet/grave{ + opened = 0 + }, +/obj/random/projectile, +/turf/template_noop, +/area/template_noop) +"hd" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"hx" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/armored, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"hS" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"iK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "PAPC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"jg" = ( +/mob/living/simple_mob/humanoid/pirate/machete/armored, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"jO" = ( +/obj/structure/table/marble, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"jZ" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"kq" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ky" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"kC" = ( +/obj/machinery/porta_turret/stationary/syndie{ + faction = "pirate" + }, +/turf/simulated/floor/plating, +/area/submap/piratefortress) +"lc" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"le" = ( +/obj/structure/table/marble, +/obj/random/material/precious, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"lh" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"lj" = ( +/obj/structure/table/marble, +/obj/item/stack/material/tritium{ + amount = 20 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"lw" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/pirate, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ms" = ( +/turf/simulated/floor/water, +/area/submap/piratefortress) +"mx" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"mU" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"mY" = ( +/obj/structure/closet/grave{ + opened = 0 + }, +/obj/random/maintenance, +/turf/template_noop, +/area/template_noop) +"nj" = ( +/obj/item/weapon/dnainjector/telemut, +/obj/structure/closet/grave{ + opened = 0 + }, +/turf/template_noop, +/area/template_noop) +"nl" = ( +/obj/structure/table/marble, +/obj/random/toolbox, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"or" = ( +/mob/living/simple_mob/vore/aggressive/frog{ + faction = "pirate" + }, +/turf/simulated/floor/water, +/area/submap/piratefortress) +"ov" = ( +/obj/structure/table/marble, +/obj/random/material, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"oX" = ( +/turf/simulated/wall/skipjack, +/area/submap/piratefortress) +"pA" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"sr" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"tr" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"uu" = ( +/turf/simulated/floor/water/pool, +/area/submap/piratefortress) +"uB" = ( +/obj/structure/table/darkglass, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/weapon/implantcase/surge, +/obj/item/weapon/gun/projectile/lamia, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"uU" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"vk" = ( +/obj/item/clothing/glasses/graviton/medgravpatch, +/obj/structure/closet/crate, +/obj/item/stolenpackage, +/obj/random/energy/highend, +/obj/item/stolenpackage, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"vr" = ( +/obj/structure/table/reinforced, +/obj/random/explorer_shield, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"vB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/projectile/revolver/lombardi/gold, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/material/minihoe, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"vR" = ( +/turf/simulated/wall/skipjack{ + can_open = 1 + }, +/area/submap/piratefortress) +"vT" = ( +/turf/simulated/floor/outdoors/grass/sif/forest, +/area/submap/piratefortress) +"wq" = ( +/obj/structure/table/marble, +/obj/random/toolbox, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"wv" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"wN" = ( +/obj/machinery/porta_turret/alien{ + faction = "Pirate" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"xf" = ( +/obj/structure/table/marble, +/obj/item/mecha_parts/mecha_equipment/storage/bluespace, +/obj/random/tool/power, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"xi" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"xj" = ( +/turf/simulated/wall/golddiamond, +/area/submap/piratefortress) +"xk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/night, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/under/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"xM" = ( +/obj/machinery/door/airlock/gold, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"xN" = ( +/mob/living/simple_mob/humanoid/pirate/las/armored, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"xX" = ( +/obj/structure/table/gold, +/obj/item/weapon/aliencoin/gold, +/obj/random/energy/highend, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"yg" = ( +/turf/simulated/wall/durasteel, +/area/submap/piratefortress) +"yi" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"zu" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"zR" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Au" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Av" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/bottle/robustharvest, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"AJ" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"BP" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/stolenpackage, +/obj/random/energy/highend, +/obj/item/rig_module/vision/multi, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"BT" = ( +/obj/structure/table/reinforced, +/obj/random/projectile, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Di" = ( +/obj/item/weapon/dnainjector/telemut, +/turf/simulated/floor/outdoors/rocks, +/area/submap/piratefortress) +"DD" = ( +/mob/living/simple_mob/vore/pitcher_plant, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"DL" = ( +/mob/living/simple_mob/humanoid/pirate/captain, +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"DN" = ( +/obj/structure/closet/grave{ + opened = 0 + }, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/outdoors/grass/sif/forest, +/area/submap/piratefortress) +"En" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"EB" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/morestuff, +/obj/item/clothing/under/pirate, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/head/collectable/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Fo" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"FC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/bottle/left4zed, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Gl" = ( +/obj/structure/closet/grave{ + opened = 0 + }, +/obj/random/contraband, +/turf/template_noop, +/area/template_noop) +"Gv" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"GI" = ( +/mob/living/simple_mob/humanoid/pirate/mate/ranged, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Hd" = ( +/obj/machinery/door/airlock/diamond{ + locked = 1 + }, +/turf/simulated/floor/tiled/red, +/area/submap/piratefortress) +"HA" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"JV" = ( +/mob/living/simple_mob/vore/aggressive/panther{ + faction = "pirate" + }, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"KQ" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(155) + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"KS" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/piratefortress) +"La" = ( +/turf/simulated/floor/outdoors/rocks, +/area/submap/piratefortress) +"Lr" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/pirate, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Mo" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"MC" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"NA" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"NG" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"OB" = ( +/obj/structure/table/gold, +/obj/item/weapon/flame/lighter/zippo/gold, +/obj/item/capture_crystal, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ON" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"Pl" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/hatch/yellow, +/mob/living/simple_mob/mechanical/mecha/ripley/pirate, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Pr" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"PF" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"PJ" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"PP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/piratefortress) +"Qw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/submap/piratefortress) +"QI" = ( +/obj/structure/table/reinforced, +/obj/random/energy/highend, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"QM" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"RI" = ( +/obj/structure/table/marble, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"St" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Su" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"Td" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/projectile/deagle/gold, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/under/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"TJ" = ( +/obj/structure/table/reinforced, +/obj/random/projectile/shotgun, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"TL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/piratefortress) +"Up" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Uu" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Uz" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/hatch/yellow, +/mob/living/simple_mob/mechanical/mecha/ripley/pirate, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"VJ" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"WW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Xv" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/night, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/under/pirate, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"XD" = ( +/turf/template_noop, +/area/template_noop) +"XJ" = ( +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"XL" = ( +/obj/structure/table/marble, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive/rigged, +/obj/random/tool/power, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"YB" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/rigged, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Zb" = ( +/obj/structure/table/marble, +/obj/item/rig_module/atmos_shield, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"Zi" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ZC" = ( +/mob/living/simple_mob/vore/lamia/random{ + faction = "pirate" + }, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/yellow, +/area/submap/piratefortress) +"ZQ" = ( +/obj/structure/railing, +/turf/simulated/floor/wood, +/area/submap/piratefortress) + +(1,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(2,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(3,1,1) = {" +XD +XD +XD +XD +XD +XD +mY +XD +XD +XD +XD +XD +XD +La +La +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +mY +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(4,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +La +La +La +ms +ms +ms +ms +La +La +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(5,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +XD +XD +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(6,1,1) = {" +XD +mY +XD +XD +XD +XD +XD +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +nj +XD +XD +XD +"} +(7,1,1) = {" +XD +XD +XD +XD +XD +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(8,1,1) = {" +XD +XD +XD +XD +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +or +ms +ms +ms +ms +ms +ms +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(9,1,1) = {" +XD +XD +La +La +La +ms +ms +ms +ms +or +ms +ms +ms +ms +La +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +La +XD +XD +XD +XD +XD +XD +"} +(10,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +vT +vT +La +La +La +La +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +XD +XD +XD +XD +XD +"} +(11,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +ms +La +La +La +La +vT +vT +DN +vT +vT +vT +vT +vT +vT +vT +La +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +XD +XD +XD +XD +XD +"} +(12,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +La +vT +kC +vT +vT +vT +vT +vT +vT +vT +kC +vT +vT +vT +vT +vT +vT +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +XD +XD +XD +XD +"} +(13,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +kC +oX +PP +Qw +oX +oX +oX +PP +Qw +oX +kC +vT +vT +vT +kC +vT +vT +La +La +kC +La +ms +ms +ms +ms +ms +ms +ms +La +XD +XD +XD +XD +"} +(14,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +vT +oX +En +Uu +lw +Lr +lw +Uu +WW +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +kC +La +ms +ms +ms +ms +ms +ms +La +La +XD +XD +XD +"} +(15,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +vT +oX +NA +fq +NA +GI +NA +fq +NA +oX +HA +DL +JV +HA +oX +lh +gN +cK +ov +oX +vT +La +La +ms +ms +or +ms +ms +ms +La +XD +XD +XD +"} +(16,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +vT +oX +NA +NA +vB +FC +Av +NA +NA +oX +Up +OB +xX +Up +oX +dK +QM +QM +xf +oX +vT +vT +La +La +ms +ms +ms +ms +ms +La +XD +XD +XD +"} +(17,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +kC +oX +oX +St +oX +oX +oX +St +oX +oX +Up +Up +Up +Up +xM +QM +QM +QM +jO +oX +vT +vT +kC +La +La +ms +ms +ms +ms +La +XD +XD +XD +"} +(18,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +La +vT +vT +oX +XJ +XJ +XJ +kq +XJ +XJ +XJ +xM +es +Up +Up +es +oX +yi +cK +QM +dZ +oX +oX +oX +oX +kC +La +ms +ms +ms +ms +La +XD +mY +XD +"} +(19,1,1) = {" +XD +XD +La +La +ms +ms +ms +ms +La +La +vT +oX +XJ +XJ +XJ +ky +XJ +XJ +XJ +oX +xj +Hd +Hd +xj +oX +cK +QM +QM +bK +le +jO +XL +oX +vT +La +ms +ms +ms +ms +La +XD +XD +XD +"} +(20,1,1) = {" +XD +gU +XD +La +ms +ms +ms +ms +ms +La +kC +oX +oX +XJ +VJ +oX +oX +Fo +oX +oX +yg +vk +ar +yg +oX +YB +QM +QM +QM +cK +QM +QM +oX +vT +La +La +ms +ms +ms +La +XD +XD +XD +"} +(21,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +ms +La +vT +oX +TJ +AJ +lc +oX +Pr +TL +lj +oX +yg +ck +BP +yg +oX +dB +QM +cK +QM +Uz +QM +Pl +oX +kC +vT +La +ms +ms +ms +La +XD +XD +XD +"} +(22,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +ms +La +vT +oX +gQ +XJ +ZC +oX +iK +jg +bt +oX +yg +wN +wN +yg +oX +cK +QM +QM +dK +QM +cK +QM +oX +vT +vT +La +ms +ms +ms +La +XD +XD +XD +"} +(23,1,1) = {" +XD +XD +XD +La +ms +ms +or +ms +La +La +vT +oX +uu +uu +uu +oX +Pr +ON +Su +oX +oX +yg +yg +oX +oX +QM +dK +sr +Zb +nl +RI +wq +oX +vT +vT +La +ms +ms +ms +La +XD +XD +XD +"} +(24,1,1) = {" +XD +XD +XD +La +La +ms +ms +ms +La +DN +vT +oX +uu +uu +uu +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +KQ +oX +oX +oX +oX +oX +oX +oX +kC +vT +La +ms +or +ms +La +XD +XD +XD +"} +(25,1,1) = {" +XD +XD +XD +XD +La +ms +ms +ms +La +vT +vT +oX +uu +uu +uu +oX +DD +cg +DD +oX +df +hd +hd +Zi +hd +XJ +jZ +oX +Gv +Up +Xv +mU +oX +vT +vT +La +ms +ms +ms +La +La +XD +XD +"} +(26,1,1) = {" +XD +XD +XD +La +La +ms +ms +ms +La +vT +vT +oX +xN +XJ +NG +vR +cg +uB +cg +oX +tr +XJ +mx +XJ +PF +XJ +XJ +St +zR +Up +Up +zu +oX +vT +vT +La +ms +ms +ms +ms +La +XD +XD +"} +(27,1,1) = {" +XD +mY +XD +La +ms +ms +ms +ms +La +vT +vT +oX +Au +hS +fU +oX +DD +cg +DD +oX +PJ +BT +aE +pA +aE +pA +ft +oX +Td +Up +EB +mU +oX +vT +vT +La +La +ms +ms +ms +La +XD +XD +"} +(28,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +La +vT +kC +oX +XJ +VJ +oX +oX +oX +oX +oX +oX +PJ +pA +aE +vr +aE +QI +ft +oX +xk +Up +EB +mU +oX +vT +DN +vT +La +ms +ms +ms +La +La +XD +"} +(29,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +La +vT +vT +oX +tr +XJ +hd +hd +bT +Zi +hd +hd +XJ +XJ +Mo +XJ +hx +XJ +XJ +St +zR +Up +Up +uU +oX +vT +vT +vT +La +ms +ms +ms +ms +La +XD +"} +(30,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +La +vT +vT +oX +bG +xi +XJ +xi +wv +xi +xi +xi +xi +xi +xi +wv +xi +xi +MC +oX +Gv +Up +eF +mU +oX +vT +vT +vT +La +ms +ms +ms +ms +La +XD +"} +(31,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +La +La +kC +oX +oX +oX +KQ +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +oX +KQ +oX +oX +oX +kC +vT +vT +La +ms +ms +ms +ms +La +XD +"} +(32,1,1) = {" +XD +XD +XD +La +ms +ms +ms +ms +ms +La +La +kC +vT +vT +vT +vT +vT +vT +vT +kC +vT +vT +vT +vT +kC +vT +vT +vT +vT +vT +vT +vT +kC +vT +vT +La +La +ms +ms +ms +ms +La +XD +"} +(33,1,1) = {" +XD +XD +La +La +ms +ms +ms +ms +ms +ms +La +La +vT +vT +vT +vT +DN +vT +vT +vT +vT +vT +vT +vT +vT +La +La +La +La +vT +vT +vT +La +La +La +La +ms +ms +ms +ms +ms +La +XD +"} +(34,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +ms +ms +ms +La +vT +vT +vT +vT +vT +vT +vT +vT +vT +vT +La +La +La +La +ms +ms +La +La +La +La +La +ms +ms +ms +ms +ms +ms +ms +ms +La +XD +"} +(35,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +La +La +La +La +La +La +La +La +La +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +or +ms +ms +ms +La +XD +"} +(36,1,1) = {" +XD +XD +La +ms +ms +ms +ms +or +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +XD +"} +(37,1,1) = {" +XD +XD +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +ms +ms +ms +or +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +ms +La +La +La +XD +"} +(38,1,1) = {" +XD +XD +La +La +ms +ms +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +or +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +La +Di +La +La +La +La +XD +XD +XD +"} +(39,1,1) = {" +XD +XD +XD +La +La +ms +ms +ms +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +ms +ms +ms +La +La +La +La +La +La +La +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +"} +(40,1,1) = {" +XD +XD +XD +XD +La +La +La +La +ms +ms +ms +ms +ms +KS +ZQ +ms +ms +ms +ms +ms +ms +La +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(41,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +La +La +La +La +ms +La +La +La +La +La +ms +ms +La +La +La +XD +XD +XD +XD +XD +XD +XD +XD +XD +mY +XD +XD +XD +XD +XD +XD +XD +XD +XD +mY +XD +"} +(42,1,1) = {" +XD +XD +mY +XD +XD +XD +XD +XD +XD +XD +La +La +La +XD +XD +XD +La +La +La +La +XD +XD +XD +XD +Gl +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} +(43,1,1) = {" +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +XD +"} diff --git a/maps/submaps/surface_submaps/valley/piratevessel.dmm b/maps/submaps/surface_submaps/valley/piratevessel.dmm new file mode 100644 index 0000000000..9f303858f0 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/piratevessel.dmm @@ -0,0 +1,1805 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aj" = ( +/obj/machinery/door/airlock/diamond, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"bh" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"bT" = ( +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"cd" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"cn" = ( +/obj/structure/table/gold, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/random/medical/pillbottle, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"cG" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"cO" = ( +/mob/living/simple_mob/humanoid/pirate, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"dt" = ( +/turf/template_noop, +/area/template_noop) +"dx" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/seeds/goldappleseed, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"dN" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"dO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/storage/pill_bottle/nutriment, +/obj/item/weapon/reagent_containers/glass/bottle/mutagen, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"eO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"fJ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/reagent_containers/glass/bottle/left4zed, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"fX" = ( +/mob/living/simple_mob/humanoid/pirate/ranged, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"gd" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"gA" = ( +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"gO" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"hc" = ( +/obj/structure/closet/crate/medical, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"he" = ( +/mob/living/simple_mob/humanoid/pirate/las, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"hO" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/steel, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/head/helmet/space/pirate, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"hR" = ( +/obj/structure/table/gold, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/item/weapon/card/emag, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ib" = ( +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"iP" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ka" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ky" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"lo" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/bed/chair/bar_stool, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"lC" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"lN" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"lZ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/reagent_containers/glass/bottle/robustharvest, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"mq" = ( +/turf/simulated/wall/rplastihull, +/area/submap/piratevessel) +"mw" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/mob/living/bot/farmbot{ + faction = "pirate" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"pu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"pQ" = ( +/turf/simulated/wall/golddiamond, +/area/submap/piratevessel) +"pR" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"qd" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"qB" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"qL" = ( +/obj/machinery/door/airlock/gold, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"qP" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"qW" = ( +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"rp" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"rw" = ( +/obj/structure/table/gold, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/item/rig_module/fabricator/energy_net, +/obj/item/weapon/rig/pmc/security/grey/equipped, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"st" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"sP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"sX" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ta" = ( +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"tI" = ( +/obj/structure/closet/crate/hydroponics/exotic, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"tX" = ( +/obj/structure/table/marble, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ur" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/seeds/goldappleseed, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"uL" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/closet/jcloset, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"vY" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"wz" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"xr" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"AD" = ( +/obj/machinery/computer/ship{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Bx" = ( +/obj/structure/closet/crate/mimic, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"BG" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/gun/random, +/obj/random/gun/random, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"BJ" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"CN" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Dr" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/contraband, +/obj/item/weapon/gun/energy/lasershotgun, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Dy" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"DY" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Ev" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"EC" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"EP" = ( +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Fc" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Fg" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/machinery/porta_turret/alien{ + faction = "pirate" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Fh" = ( +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/item/rig_module/mounted/egun, +/obj/machinery/light/poi, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Fw" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/contraband, +/obj/item/weapon/gun/energy/lasercannon, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Gl" = ( +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Gw" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/storage/pill_bottle/nutriment, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Hf" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Hs" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"HP" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/firstaid, +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Io" = ( +/mob/living/simple_mob/humanoid/pirate/machete, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Jd" = ( +/obj/structure/closet/crate/freezer/nanotrasen, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Jn" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Jv" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"JU" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Lc" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Lh" = ( +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"LK" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"LZ" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/toolbox, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Mb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/rplastihull, +/area/submap/piratevessel) +"ML" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light/poi, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"MZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Nb" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Nu" = ( +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Nz" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"NC" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"NO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife/machete/hatchet, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"NZ" = ( +/obj/machinery/computer/ship{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Oj" = ( +/obj/structure/railing, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/piratevessel) +"Pd" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/gun/random, +/obj/random/gun/random, +/obj/machinery/light/poi, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"PL" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/table/rack/shelf/steel, +/obj/random/firstaid, +/obj/machinery/light/poi, +/obj/random/contraband, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"PT" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/steel, +/obj/item/clothing/head/helmet/space/pirate, +/obj/item/clothing/suit/space/pirate, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Qt" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/janitorialcart, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Rj" = ( +/mob/living/simple_mob/humanoid/pirate/machete, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"RF" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/bed/chair/bar_stool, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"RN" = ( +/obj/structure/closet/crate/carp, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Sb" = ( +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Sp" = ( +/obj/structure/table/marble, +/obj/structure/table/marble, +/obj/random/material/precious, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Tg" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"TI" = ( +/obj/structure/closet/crate/secure/large/reinforced, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Uc" = ( +/obj/structure/closet/crate/medical/blood, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Un" = ( +/obj/structure/table/marble, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"UN" = ( +/mob/living/simple_mob/humanoid/pirate, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Vb" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/mopbucket, +/obj/item/weapon/mop/advanced, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"VB" = ( +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"VY" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/wall/rplastihull, +/area/submap/piratevessel) +"Wd" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Wy" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"WG" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"WX" = ( +/mob/living/simple_mob/humanoid/pirate/ranged, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Xb" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"Yl" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/pirate, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"YF" = ( +/mob/living/simple_mob/humanoid/pirate/las, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"YG" = ( +/mob/living/simple_mob/humanoid/pirate/captain, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"YU" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ZA" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ZK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) +"ZO" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/piratevessel) + +(1,1,1) = {" +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +"} +(2,1,1) = {" +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +"} +(3,1,1) = {" +dt +dt +dt +dt +dt +dt +dt +dt +dt +mq +mq +mq +mq +dN +dN +mq +mq +mq +mq +dt +dt +dt +dt +dt +dt +dt +dt +dt +"} +(4,1,1) = {" +dt +dt +dt +mq +VY +VY +VY +VY +VY +mq +cG +Oj +st +cd +cd +ta +pu +cG +mq +VY +VY +VY +VY +VY +mq +dt +dt +dt +"} +(5,1,1) = {" +dt +dt +dt +mq +Mb +Mb +Mb +Mb +Mb +mq +NC +eO +qB +EP +EP +Sb +sP +NC +mq +Mb +Mb +Mb +Mb +Mb +mq +dt +dt +dt +"} +(6,1,1) = {" +dt +dt +dt +mq +dx +wz +Ev +wz +Ev +MZ +st +cd +VB +Lh +Lh +gA +cd +ta +MZ +Wd +sX +Wd +sX +hc +mq +dt +dt +dt +"} +(7,1,1) = {" +dt +dt +dt +mq +dx +Ev +Ev +Ev +Ev +mq +ky +Hs +Jn +ZK +ZK +Jn +Hs +ZO +mq +Wd +Wd +Wd +Wd +RN +mq +dt +dt +dt +"} +(8,1,1) = {" +dt +dt +dt +mq +dx +WX +Ev +Ev +NO +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +Wd +Wd +tX +fX +TI +mq +dt +dt +dt +"} +(9,1,1) = {" +dt +dt +dt +mq +JU +mw +Ev +Ev +Fc +mq +Lc +Nb +Jv +Nb +Nb +Jv +Nb +EC +mq +xr +Wd +tX +Wd +Fh +mq +dt +dt +dt +"} +(10,1,1) = {" +dt +dt +dt +mq +pR +Ev +Ev +UN +NO +mq +Hf +CN +lo +YU +YU +lo +WG +qW +mq +Wd +cO +tX +Wd +tI +mq +dt +dt +dt +"} +(11,1,1) = {" +dt +dt +dt +mq +ur +Ev +Ev +Ev +Ev +mq +bh +bT +Un +Un +Un +Un +gO +Nu +mq +Wd +Wd +Wd +Wd +DY +mq +dt +dt +dt +"} +(12,1,1) = {" +dt +dt +dt +mq +ur +Ev +Ev +Ev +Ev +MZ +bh +bT +Un +Un +Un +Un +gO +Nu +MZ +Wd +Wd +Wd +Wd +Gl +mq +dt +dt +dt +"} +(13,1,1) = {" +dt +dt +dt +mq +pR +Ev +Ev +Ev +Ev +mq +Hf +he +RF +rp +rp +RF +YF +qW +mq +Wd +Io +tX +Wd +Jd +mq +dt +dt +dt +"} +(14,1,1) = {" +dt +dt +dt +mq +JU +Nz +Ev +Rj +dO +mq +ZA +vY +lN +vY +vY +lN +vY +LK +mq +xr +Wd +Sp +qd +ib +mq +dt +dt +dt +"} +(15,1,1) = {" +dt +dt +dt +mq +dx +Ev +Ev +Ev +lZ +mq +mq +mq +mq +aj +aj +mq +mq +mq +mq +Wd +Wd +tX +Wd +DY +mq +dt +dt +dt +"} +(16,1,1) = {" +dt +dt +dt +mq +dx +Ev +Ev +Ev +fJ +mq +pQ +Fg +qP +BJ +BJ +qP +Fg +pQ +mq +Wd +Wd +Wd +Wd +Bx +mq +dt +dt +dt +"} +(17,1,1) = {" +dt +dt +dt +mq +dx +Dy +Ev +Ev +Gw +mq +BG +BJ +BJ +BJ +BJ +BJ +BJ +Pd +mq +Wd +Wd +Wd +lC +Uc +mq +dt +dt +dt +"} +(18,1,1) = {" +dt +dt +dt +mq +mq +mq +mq +MZ +mq +mq +Dr +BJ +BJ +BJ +BJ +BJ +BJ +Fw +mq +mq +MZ +mq +mq +mq +mq +dt +dt +dt +"} +(19,1,1) = {" +dt +dt +dt +dt +dt +mq +PT +Wy +PT +mq +LZ +BJ +cn +rw +hR +cn +BJ +LZ +mq +PT +Wy +PT +mq +dt +dt +dt +dt +dt +"} +(20,1,1) = {" +dt +dt +dt +dt +dt +mq +hO +Wy +hO +mq +HP +BJ +BJ +YG +BJ +BJ +iP +PL +mq +hO +Wy +hO +mq +dt +dt +dt +dt +dt +"} +(21,1,1) = {" +dt +dt +dt +dt +dt +mq +Tg +Wy +ML +mq +pQ +NZ +AD +NZ +NZ +AD +NZ +pQ +mq +Tg +Wy +ML +mq +dt +dt +dt +dt +dt +"} +(22,1,1) = {" +dt +dt +dt +dt +dt +mq +Wy +Wy +Wy +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +Wy +Wy +Wy +mq +dt +dt +dt +dt +dt +"} +(23,1,1) = {" +dt +dt +dt +dt +dt +mq +Wy +gd +Wy +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +Wy +gd +Wy +mq +dt +dt +dt +dt +dt +"} +(24,1,1) = {" +dt +dt +dt +dt +dt +mq +Wy +Wy +Yl +dN +dt +dt +dt +dt +dt +dt +dt +dt +dN +Yl +Wy +Wy +mq +dt +dt +dt +dt +dt +"} +(25,1,1) = {" +dt +dt +dt +dt +dt +mq +Tg +Xb +ML +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +Tg +Xb +ML +mq +dt +dt +dt +dt +dt +"} +(26,1,1) = {" +dt +dt +dt +dt +dt +mq +Wy +Wy +Wy +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +Wy +Wy +Wy +mq +dt +dt +dt +dt +dt +"} +(27,1,1) = {" +dt +dt +dt +dt +dt +mq +mq +mq +qL +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +qL +mq +mq +mq +dt +dt +dt +dt +dt +"} +(28,1,1) = {" +dt +dt +dt +dt +dt +dt +mq +Qt +Wd +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +Wd +Qt +mq +dt +dt +dt +dt +dt +dt +"} +(29,1,1) = {" +dt +dt +dt +dt +dt +dt +mq +Vb +ka +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +xr +Vb +mq +dt +dt +dt +dt +dt +dt +"} +(30,1,1) = {" +dt +dt +dt +dt +dt +dt +mq +uL +Wd +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +Wd +uL +mq +dt +dt +dt +dt +dt +dt +"} +(31,1,1) = {" +dt +dt +dt +dt +dt +dt +mq +mq +mq +mq +dt +dt +dt +dt +dt +dt +dt +dt +mq +mq +mq +mq +dt +dt +dt +dt +dt +dt +"} +(32,1,1) = {" +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +"} +(33,1,1) = {" +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +"} diff --git a/maps/submaps/surface_submaps/valley/piratevox.dmm b/maps/submaps/surface_submaps/valley/piratevox.dmm new file mode 100644 index 0000000000..78f643cff5 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/piratevox.dmm @@ -0,0 +1,1465 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"cD" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/gun/random, +/obj/random/rigsuit, +/obj/random/gun/random, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"cH" = ( +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle{ + health = 15; + maxHealth = 15 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"cK" = ( +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/plating, +/area/submap/piratevox) +"dy" = ( +/obj/machinery/computer/ship{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"dz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"fA" = ( +/obj/random/mob/merc/all, +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/red, +/area/submap/piratevox) +"fD" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"fL" = ( +/obj/structure/table/standard, +/obj/item/weapon/flame/lighter/zippo/rainbow, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"fV" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/gun/random, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"gp" = ( +/obj/machinery/door/airlock/phoron, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"hj" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/gun/random, +/obj/random/rigsuit, +/obj/random/gun/random, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"hB" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"it" = ( +/obj/machinery/power/port_gen/pacman/mrs, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"iJ" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"iN" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/captain, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"iU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"ki" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"mE" = ( +/obj/structure/table/standard, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"op" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/tiled/red, +/area/submap/piratevox) +"pD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"pJ" = ( +/obj/structure/table/standard, +/obj/random/toolbox, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"pK" = ( +/obj/structure/table/standard, +/obj/random/gun/random, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"pV" = ( +/obj/structure/table/standard, +/obj/item/weapon/card/emag/used, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"rp" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/suppressor, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"rS" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"to" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/gun/random, +/obj/random/rigsuit, +/obj/random/gun/random, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"tX" = ( +/obj/structure/table/standard, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/rig_module/mounted/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"uQ" = ( +/obj/machinery/porta_turret/stationary/syndie{ + faction = "voxpirate" + }, +/turf/simulated/shuttle/plating, +/area/submap/piratevox) +"vn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"xe" = ( +/obj/structure/bed/chair/office{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"xr" = ( +/turf/simulated/wall/rplastitanium, +/area/submap/piratevox) +"ye" = ( +/turf/template_noop, +/area/submap/piratevox) +"zq" = ( +/turf/simulated/wall/thull, +/area/submap/piratevox) +"An" = ( +/obj/structure/table/standard, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Ap" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"AS" = ( +/obj/machinery/door/airlock/phoron, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"AV" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/technician, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Bl" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall, +/area/submap/piratevox) +"Cm" = ( +/turf/template_noop, +/area/template_noop) +"Dg" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Dt" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"DI" = ( +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/obj/structure/bed/chair/office{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"FN" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi{ + health = 15; + maxHealth = 15 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Iu" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"LG" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + health = 15; + maxHealth = 15 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"LP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"NE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"NI" = ( +/obj/structure/closet/crate/secure/loot, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Op" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + health = 15; + maxHealth = 15 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Os" = ( +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"OH" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Rr" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/shuttle/wall, +/area/submap/piratevox) +"SL" = ( +/turf/simulated/shuttle/wall, +/area/submap/piratevox) +"Tk" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/obj/structure/bed/chair/office, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Tl" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Un" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"UL" = ( +/obj/structure/grille/rustic{ + health = 25; + name = "reinforced grille" + }, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/plating, +/area/submap/piratevox) +"Vh" = ( +/turf/simulated/floor/tiled/red, +/area/submap/piratevox) +"VO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"VU" = ( +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/red, +/area/submap/piratevox) +"Wj" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"WN" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/rig_module/cleaner_launcher, +/obj/item/weapon/mop/advanced, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Xl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"YI" = ( +/obj/structure/table/standard, +/obj/random/contraband/nofail, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"YQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"Za" = ( +/obj/structure/bed/chair/office, +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"ZP" = ( +/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, +/obj/structure/bed/chair/office{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) +"ZU" = ( +/obj/machinery/computer/ship, +/turf/simulated/floor/tiled/white, +/area/submap/piratevox) + +(1,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(2,1,1) = {" +Cm +Cm +Cm +Cm +Rr +Rr +Rr +Rr +Rr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Rr +Rr +Rr +Rr +Rr +Cm +Cm +Cm +Cm +"} +(3,1,1) = {" +Cm +Cm +Cm +Cm +Bl +Bl +Bl +Bl +Bl +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Bl +Bl +Bl +Bl +Bl +Cm +Cm +Cm +Cm +"} +(4,1,1) = {" +Cm +Cm +Cm +Cm +SL +NI +hB +Os +SL +Cm +Cm +SL +SL +SL +SL +SL +SL +SL +Cm +Cm +SL +Os +hB +NI +SL +Cm +Cm +Cm +Cm +"} +(5,1,1) = {" +Cm +Cm +Cm +Cm +SL +mE +Os +Tl +SL +Cm +Cm +SL +LP +hB +DI +hB +Os +SL +Cm +Cm +SL +rS +Os +mE +SL +Cm +Cm +Cm +Cm +"} +(6,1,1) = {" +Cm +Cm +Cm +Cm +SL +mE +xe +Os +SL +SL +SL +SL +rp +An +fL +pV +rp +SL +SL +SL +SL +Os +Za +mE +SL +Cm +Cm +Cm +Cm +"} +(7,1,1) = {" +Cm +Cm +Cm +Cm +SL +mE +LP +Os +SL +Os +WN +SL +AV +Os +Os +Os +AV +SL +Dt +iJ +SL +Os +Os +mE +SL +Cm +Cm +Cm +Cm +"} +(8,1,1) = {" +Cm +Cm +Cm +Cm +SL +cD +Os +Os +AS +Os +tX +SL +OH +Os +iN +Os +Xl +SL +it +VO +gp +vn +LP +hj +SL +Cm +Cm +Cm +Cm +"} +(9,1,1) = {" +Cm +Cm +Cm +Cm +SL +to +AV +Os +SL +SL +SL +SL +SL +SL +AS +SL +SL +SL +SL +SL +SL +pD +AV +to +SL +Cm +Cm +Cm +Cm +"} +(10,1,1) = {" +Cm +Cm +Cm +Cm +SL +Dg +Op +Os +SL +Os +Os +LP +Os +Iu +Os +Iu +Un +Os +LP +Os +SL +pD +Op +YI +SL +Cm +Cm +Cm +Cm +"} +(11,1,1) = {" +Cm +Cm +Cm +Cm +SL +Dg +ZP +Os +AS +Tl +Op +Os +Os +Os +Xl +Os +dz +NE +LG +Ap +gp +iU +Tk +YI +SL +Cm +Cm +Cm +Cm +"} +(12,1,1) = {" +Cm +Cm +Cm +Cm +SL +Dg +ki +LP +SL +Os +ki +Os +Os +AV +Os +AV +Os +Os +ki +Os +SL +Os +YQ +YI +SL +Cm +Cm +Cm +Cm +"} +(13,1,1) = {" +Cm +Cm +Cm +Cm +SL +SL +SL +SL +SL +SL +SL +SL +SL +Os +Os +Os +SL +SL +SL +SL +SL +SL +SL +SL +SL +Cm +Cm +Cm +Cm +"} +(14,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +xr +xr +xr +Os +LP +Os +SL +xr +xr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(15,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +xr +VU +VU +VU +Tl +VU +VU +VU +xr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(16,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +xr +Vh +op +Vh +Os +Vh +Vh +Vh +xr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(17,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +xr +VU +VU +fA +Os +fA +VU +VU +xr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(18,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +xr +xr +xr +ki +Os +YQ +xr +xr +xr +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(19,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +ye +ye +UL +SL +SL +AS +SL +SL +UL +ye +ye +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(20,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +uQ +UL +UL +Wj +hB +Os +hB +Wj +UL +UL +uQ +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(21,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +ye +UL +UL +Wj +LP +Os +Tl +Os +Os +Wj +UL +UL +ye +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(22,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +UL +UL +Wj +rp +Os +Os +Os +Os +Os +OH +Wj +cK +UL +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(23,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +ye +SL +Wj +Os +Os +Os +Os +FN +Os +Os +Os +LP +Wj +SL +ye +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(24,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +ye +SL +SL +Os +Os +Os +Os +dy +zq +ZU +Os +Os +Os +Os +SL +SL +ye +Cm +Cm +Cm +Cm +Cm +Cm +"} +(25,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +ye +fD +Os +Os +rS +Op +dy +zq +zq +zq +ZU +Op +Tl +Os +Os +fD +ye +Cm +Cm +Cm +Cm +Cm +Cm +"} +(26,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +ye +SL +SL +Os +Os +Os +Os +dy +zq +ZU +Os +Os +LP +Os +SL +SL +ye +Cm +Cm +Cm +Cm +Cm +Cm +"} +(27,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +ye +SL +Wj +Os +Os +Os +Os +cH +LP +Os +Os +Os +Wj +SL +ye +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(28,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +UL +UL +Wj +OH +Os +Os +Os +Os +Os +rp +Wj +UL +UL +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(29,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +UL +UL +Wj +LP +Os +AV +LP +Os +Wj +UL +UL +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(30,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +uQ +UL +UL +fV +pJ +pK +pJ +fV +UL +UL +uQ +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(31,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +ye +UL +SL +SL +SL +SL +SL +UL +ye +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(32,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(33,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} diff --git a/maps/submaps/surface_submaps/valley/plontden.dmm b/maps/submaps/surface_submaps/valley/plontden.dmm new file mode 100644 index 0000000000..b608a56272 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/plontden.dmm @@ -0,0 +1,1044 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"bB" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/cosmos, +/obj/item/toy/plushie/red_fox, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"cN" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/gun/energy/xray/xenoarch, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"dT" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"eF" = ( +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"fg" = ( +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"gA" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"gD" = ( +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"gH" = ( +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"hS" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"im" = ( +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"iS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"iU" = ( +/turf/simulated/wall/r_wall, +/area/submap/plontden) +"jf" = ( +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"jt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"kp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"ln" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"lL" = ( +/obj/structure/closet/crate/hydroponics/exotic, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"mt" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"mw" = ( +/obj/machinery/chemical_dispenser/xenoflora, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"mH" = ( +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"mO" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"od" = ( +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"oI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"oO" = ( +/turf/simulated/floor/plating, +/area/submap/plontden) +"pA" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"rH" = ( +/turf/simulated/floor/water/indoors, +/area/submap/plontden) +"ur" = ( +/turf/template_noop, +/area/template_noop) +"vg" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"vj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"vl" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"vy" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"wG" = ( +/obj/effect/floor_decal/industrial/hatch, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"xh" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"Aj" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"BG" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = -24 + }, +/obj/machinery/chem_master, +/obj/structure/cable, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Cc" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/plating, +/area/submap/plontden) +"Cd" = ( +/obj/machinery/seed_storage/xenobotany{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenoflora Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Cp" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"CQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Dp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"Er" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"HB" = ( +/obj/structure/closet/cabinet, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"HD" = ( +/mob/living/carbon/human/ai_controlled/replicant, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"JI" = ( +/obj/structure/table/sifwoodentable, +/obj/random/medical, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"Ke" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"KI" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_grid, +/area/submap/plontden) +"Li" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"LV" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Mo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"On" = ( +/obj/structure/table/sifwoodentable, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/yellow, +/area/submap/plontden) +"OR" = ( +/obj/structure/table/glass, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/device/analyzer/plant_analyzer, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Pd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_grid, +/area/submap/plontden) +"Ps" = ( +/obj/structure/grille, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"Qm" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/submap/plontden) +"Rs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + dir = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"Rw" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"RD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"RJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Sq" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"SH" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Te" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"UL" = ( +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/plontden) +"VY" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Wb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"WF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/hydro, +/area/submap/plontden) +"Xb" = ( +/obj/machinery/light, +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) +"Zb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/plontden) + +(1,1,1) = {" +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +"} +(2,1,1) = {" +ur +ur +ur +ur +ur +ur +iU +iU +iU +iU +iU +iU +ur +ur +ur +ur +ur +ur +"} +(3,1,1) = {" +ur +ur +ur +ur +ur +ur +iU +cN +gD +gD +HB +iU +ur +ur +ur +ur +ur +ur +"} +(4,1,1) = {" +ur +ur +ur +ur +ur +ur +iU +JI +gD +gD +vg +iU +ur +ur +ur +ur +ur +ur +"} +(5,1,1) = {" +ur +ur +ur +ur +ur +ur +iU +On +gD +gD +bB +iU +ur +ur +ur +ur +ur +ur +"} +(6,1,1) = {" +ur +ur +ur +ur +ur +iU +iU +im +KI +im +iU +iU +iU +ur +ur +ur +ur +ur +"} +(7,1,1) = {" +ur +ur +ur +ur +iU +iU +lL +Cp +WF +od +Li +mO +iU +iU +ur +ur +ur +ur +"} +(8,1,1) = {" +ur +ur +ur +ur +gH +jf +mH +Cp +od +od +Li +mH +SH +gH +ur +ur +ur +ur +"} +(9,1,1) = {" +ur +ur +ur +ur +UL +mt +mH +Cp +od +od +Li +mH +Xb +UL +ur +ur +ur +ur +"} +(10,1,1) = {" +ur +ur +ur +ur +eF +VY +HD +Cp +od +od +Li +HD +hS +eF +ur +ur +ur +ur +"} +(11,1,1) = {" +ur +ur +ur +ur +iU +VY +mH +Cp +od +od +Li +mH +mw +iU +ur +ur +ur +ur +"} +(12,1,1) = {" +ur +ur +ur +iU +iU +VY +vl +ln +Dp +Dp +Wb +RJ +BG +iU +iU +ur +ur +ur +"} +(13,1,1) = {" +ur +ur +ur +gH +VY +mH +kp +LV +rH +rH +xh +RD +od +od +KI +ur +ur +ur +"} +(14,1,1) = {" +ur +ur +ur +UL +CQ +HD +gA +iU +rH +rH +iU +Te +od +jt +fg +ur +ur +ur +"} +(15,1,1) = {" +ur +ur +ur +eF +VY +mH +kp +Ke +rH +rH +Er +RD +od +od +KI +ur +ur +ur +"} +(16,1,1) = {" +ur +ur +ur +iU +iU +VY +iS +ln +Rs +od +Zb +pA +vy +iU +iU +ur +ur +ur +"} +(17,1,1) = {" +ur +ur +ur +ur +iU +VY +mH +Cp +Mo +od +Li +mH +Sq +iU +ur +ur +ur +ur +"} +(18,1,1) = {" +ur +ur +ur +ur +gH +VY +HD +Cp +Mo +od +Li +HD +Cd +Ps +ur +ur +ur +ur +"} +(19,1,1) = {" +ur +ur +ur +ur +UL +mt +mH +Cp +Mo +od +Li +mH +Rw +UL +ur +ur +ur +ur +"} +(20,1,1) = {" +ur +ur +ur +ur +eF +OR +mH +Cp +Mo +od +Li +mH +wG +eF +ur +ur +ur +ur +"} +(21,1,1) = {" +ur +ur +ur +ur +iU +iU +dT +Cp +oI +od +Li +wG +iU +iU +ur +ur +ur +ur +"} +(22,1,1) = {" +ur +ur +ur +ur +ur +iU +iU +iU +Pd +im +iU +iU +iU +ur +ur +ur +ur +ur +"} +(23,1,1) = {" +ur +ur +ur +ur +ur +ur +ur +iU +aG +vj +oO +iU +ur +ur +ur +ur +ur +ur +"} +(24,1,1) = {" +ur +ur +ur +ur +ur +ur +ur +iU +Aj +Qm +Cc +iU +ur +ur +ur +ur +ur +ur +"} +(25,1,1) = {" +ur +ur +ur +ur +ur +ur +ur +iU +iU +iU +iU +iU +ur +ur +ur +ur +ur +ur +"} +(26,1,1) = {" +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +ur +"} diff --git a/maps/submaps/surface_submaps/valley/puzzledungeon.dmm b/maps/submaps/surface_submaps/valley/puzzledungeon.dmm new file mode 100644 index 0000000000..bc7bcfdb97 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/puzzledungeon.dmm @@ -0,0 +1,1017 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/outdoors/ice, +/area/submap/puzzledungeon) +"d" = ( +/obj/structure/table/darkglass, +/obj/item/clothing/suit/armor/pcarrier/laserproof/full, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/dungeon, +/area/submap/puzzledungeon) +"h" = ( +/turf/simulated/floor/lava, +/area/submap/puzzledungeon) +"j" = ( +/turf/simulated/floor/lava/harmless, +/area/submap/puzzledungeon) +"k" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice, +/area/submap/puzzledungeon) +"l" = ( +/obj/structure/table/darkglass, +/obj/item/clothing/suit/armor/pcarrier/bulletproof/full, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/dungeon, +/area/submap/puzzledungeon) +"s" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/submap/puzzledungeon) +"t" = ( +/turf/template_noop, +/area/template_noop) +"v" = ( +/turf/simulated/floor/cult, +/area/submap/puzzledungeon) +"w" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/dungeon, +/area/submap/puzzledungeon) +"z" = ( +/turf/simulated/wall/dungeon, +/area/submap/puzzledungeon) +"F" = ( +/obj/random/landmine, +/turf/simulated/floor/dungeon, +/area/submap/puzzledungeon) +"S" = ( +/turf/simulated/floor/dungeon, +/area/submap/puzzledungeon) + +(1,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} +(2,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} +(3,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} +(4,1,1) = {" +t +t +t +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +t +t +t +t +t +t +t +t +"} +(5,1,1) = {" +t +t +t +z +a +a +a +k +a +a +a +z +S +S +S +j +j +S +S +S +z +s +t +t +t +t +t +t +t +t +"} +(6,1,1) = {" +t +t +t +z +a +a +a +a +a +a +S +z +v +v +v +h +h +v +v +v +z +s +s +t +t +t +t +t +t +t +"} +(7,1,1) = {" +t +t +t +z +k +a +a +a +a +S +S +S +S +S +S +j +j +S +S +S +S +s +s +t +t +t +t +t +t +t +"} +(8,1,1) = {" +t +t +t +z +a +a +a +a +a +S +S +S +S +S +S +j +j +S +S +S +S +s +s +t +t +t +t +t +t +t +"} +(9,1,1) = {" +t +t +t +z +a +a +k +a +a +a +S +z +v +v +v +h +h +v +v +v +z +s +s +t +t +t +t +t +t +t +"} +(10,1,1) = {" +t +t +t +z +a +a +a +a +a +a +a +z +S +S +S +j +j +S +S +S +z +s +t +t +t +t +t +t +t +t +"} +(11,1,1) = {" +t +t +t +z +k +a +a +a +a +k +a +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +t +t +t +t +"} +(12,1,1) = {" +t +t +t +z +a +a +a +a +a +a +a +z +S +d +w +S +z +a +a +k +a +a +a +a +a +z +t +t +t +t +"} +(13,1,1) = {" +t +t +t +z +a +a +a +a +a +a +k +z +S +S +S +S +z +k +a +a +a +a +a +a +k +z +t +t +t +t +"} +(14,1,1) = {" +t +t +t +z +a +k +a +a +a +k +S +z +z +F +F +z +z +S +k +a +a +k +a +a +a +z +t +t +t +t +"} +(15,1,1) = {" +t +t +t +z +a +a +a +a +k +S +S +S +S +F +F +S +S +S +S +a +a +a +a +a +a +z +t +t +t +t +"} +(16,1,1) = {" +t +t +t +z +a +a +k +a +a +S +S +S +S +F +F +S +S +S +S +a +a +a +a +k +a +z +t +t +t +t +"} +(17,1,1) = {" +t +t +t +z +a +a +a +a +a +k +S +z +z +F +F +z +z +S +k +a +a +a +a +a +a +z +t +t +t +t +"} +(18,1,1) = {" +t +t +t +z +a +k +a +a +a +a +k +z +S +S +S +S +z +k +a +a +a +a +k +a +a +z +t +t +t +t +"} +(19,1,1) = {" +t +t +t +z +a +a +a +k +a +a +a +z +S +w +l +S +z +a +a +a +a +a +a +a +a +z +t +t +t +t +"} +(20,1,1) = {" +t +t +t +z +z +z +z +z +z +z +z +z +z +z +z +z +z +a +a +a +k +a +a +a +a +z +t +t +t +t +"} +(21,1,1) = {" +t +t +t +t +t +t +s +z +v +v +v +h +h +v +v +v +z +a +k +a +a +a +a +a +a +z +t +t +t +t +"} +(22,1,1) = {" +t +t +t +t +t +t +s +z +S +S +S +j +j +S +S +S +z +S +a +a +a +a +a +a +k +z +t +t +t +t +"} +(23,1,1) = {" +t +t +t +t +t +s +s +S +v +v +v +h +h +v +v +v +S +S +S +a +a +a +a +a +a +z +t +t +t +t +"} +(24,1,1) = {" +t +t +t +t +t +s +s +S +S +S +S +j +j +S +S +S +S +S +S +a +a +a +a +k +a +z +t +t +t +t +"} +(25,1,1) = {" +t +t +t +t +t +t +s +z +v +v +v +h +h +v +v +v +z +S +a +a +a +a +a +a +a +z +t +t +t +t +"} +(26,1,1) = {" +t +t +t +t +t +t +s +z +S +S +S +j +j +S +S +S +z +a +a +a +k +a +a +a +a +z +t +t +t +t +"} +(27,1,1) = {" +t +t +t +t +t +t +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +z +t +t +t +t +"} +(28,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} +(29,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} +(30,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +"} diff --git a/maps/submaps/surface_submaps/valley/settlement.dmm b/maps/submaps/surface_submaps/valley/settlement.dmm new file mode 100644 index 0000000000..9a1c98d3d0 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/settlement.dmm @@ -0,0 +1,2524 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ay" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"aT" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"bh" = ( +/obj/structure/table/standard, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"bn" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"bp" = ( +/obj/random/multiple/corp_crate, +/turf/simulated/floor/lino, +/area/submap/settlement) +"bI" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/construct/artificer/caster, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"cD" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"cI" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"cY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"dE" = ( +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"en" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"eB" = ( +/mob/living/simple_mob/construct/artificer/caster, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"eI" = ( +/mob/living/simple_mob/construct/shade, +/turf/simulated/floor/outdoors/dirt, +/area/submap/settlement) +"eJ" = ( +/obj/structure/closet/crate/freezer, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"eK" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"fl" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"ft" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"fU" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/random/multiple/gun/projectile, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"gf" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"gl" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/random/energy/sec, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"gz" = ( +/mob/living/simple_mob/construct/juggernaut, +/turf/simulated/floor/cult, +/area/submap/settlement) +"gC" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"hh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"ht" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"hy" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/rack, +/obj/random/cash/huge, +/obj/random/cash/huge, +/obj/random/cash/huge, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"hV" = ( +/obj/structure/closet/grave, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"il" = ( +/obj/machinery/light{ + layer = 3 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/lino, +/area/submap/settlement) +"im" = ( +/obj/structure/table/woodentable, +/obj/random/multiple/gun/projectile/handgun, +/turf/simulated/floor/lino, +/area/submap/settlement) +"it" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/cult, +/area/submap/settlement) +"iV" = ( +/obj/machinery/light{ + layer = 3 + }, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"jb" = ( +/obj/machinery/gibber, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"jo" = ( +/obj/structure/bed/chair/office/light, +/mob/living/simple_mob/construct/wraith, +/turf/simulated/floor/lino, +/area/submap/settlement) +"jx" = ( +/obj/structure/windoor_assembly{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"jZ" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"kg" = ( +/mob/living/simple_mob/humanoid/cultist/magus, +/turf/simulated/floor/cult, +/area/submap/settlement) +"km" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"kM" = ( +/turf/simulated/floor/cult, +/area/submap/settlement) +"kT" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"le" = ( +/mob/living/simple_mob/construct/juggernaut, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"ls" = ( +/obj/structure/largecrate/animal/teppi, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"lt" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"lz" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"lO" = ( +/turf/simulated/floor/wood, +/area/submap/settlement) +"lX" = ( +/obj/structure/simple_door/wood, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"nN" = ( +/turf/simulated/floor/lino, +/area/submap/settlement) +"oa" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/rack, +/obj/random/cash/huge, +/obj/random/cash/huge, +/obj/random/cash/huge, +/obj/random/rigsuit/chancetofail, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"oq" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"oS" = ( +/obj/structure/largecrate/animal/cow, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"pn" = ( +/obj/structure/simple_door/cult, +/turf/simulated/floor/cult, +/area/submap/settlement) +"pR" = ( +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"pV" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/template_noop) +"qa" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"qv" = ( +/obj/structure/table/fancyblack, +/obj/item/device/soulstone, +/obj/random/material/precious, +/turf/simulated/floor/cult, +/area/submap/settlement) +"rh" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"rs" = ( +/obj/structure/kitchenspike, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"rA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"rW" = ( +/turf/simulated/wall/cult, +/area/submap/settlement) +"sb" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"sn" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"st" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"sK" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"sS" = ( +/obj/effect/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"te" = ( +/obj/structure/constructshell/cult, +/turf/simulated/floor/cult, +/area/submap/settlement) +"uc" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/chef_recipes, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"vc" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"vG" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"vY" = ( +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/lino, +/area/submap/settlement) +"wF" = ( +/obj/structure/constructshell, +/turf/simulated/floor/cult, +/area/submap/settlement) +"wV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/submap/settlement) +"xq" = ( +/mob/living/simple_mob/creature/cult/strong, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"xs" = ( +/obj/random/multiple/corp_crate, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"xv" = ( +/mob/living/simple_mob/construct/shade, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"xz" = ( +/obj/structure/sink{ + dir = 1 + }, +/obj/machinery/light{ + layer = 3 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"xH" = ( +/obj/machinery/porta_turret/ai_defense{ + req_one_access = null + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"xQ" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"xS" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"xY" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/crabmeat, +/obj/item/weapon/reagent_containers/food/snacks/crabmeat, +/obj/item/weapon/reagent_containers/food/snacks/crabmeat, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"xZ" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"ya" = ( +/mob/living/simple_mob/construct/harvester, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"yb" = ( +/mob/living/simple_mob/construct/proteon, +/turf/simulated/floor/cult, +/area/submap/settlement) +"yf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"yi" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/settlement) +"yR" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"zh" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"zz" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/settlement) +"zT" = ( +/mob/living/simple_mob/creature/cult/strong, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"AY" = ( +/obj/machinery/light{ + dir = 8; + layer = 3 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Bv" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/settlement) +"BK" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"BT" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/contraband, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Cd" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/wood, +/area/submap/settlement) +"Do" = ( +/obj/structure/table/borosilicate, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"DD" = ( +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Ev" = ( +/obj/structure/sink{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Ey" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Fi" = ( +/turf/simulated/wall/wood, +/area/submap/settlement) +"Fn" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"Fv" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"FA" = ( +/mob/living/simple_mob/construct/harvester/greater, +/turf/simulated/floor/cult, +/area/submap/settlement) +"FR" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/settlement) +"GS" = ( +/obj/structure/toilet, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"GU" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"GV" = ( +/obj/structure/fence/corner{ + dir = 3 + }, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"HF" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"HK" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/storage/belt/soulstone/full, +/obj/item/weapon/gun/energy/imperial, +/turf/simulated/floor/cult, +/area/submap/settlement) +"HR" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/submap/settlement) +"HV" = ( +/mob/living/simple_mob/animal/space/bats/cult/strong, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/settlement) +"Il" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Iu" = ( +/obj/structure/table/standard, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"ID" = ( +/obj/machinery/door/airlock/vault/bolted, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"Ja" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Kw" = ( +/obj/item/weapon/stool/padded, +/mob/living/simple_mob/construct/harvester/greater, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"KK" = ( +/obj/structure/windoor_assembly{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"KZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Lj" = ( +/obj/structure/table/woodentable, +/obj/random/mug, +/turf/simulated/floor/lino, +/area/submap/settlement) +"Lw" = ( +/obj/machinery/light{ + dir = 4; + layer = 3 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"LI" = ( +/obj/structure/bed/chair/sofa/left/orange, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"LM" = ( +/obj/structure/cult/forge, +/turf/simulated/floor/cult, +/area/submap/settlement) +"LV" = ( +/obj/structure/bed/chair/sofa/right/orange, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Mm" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Mw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"MI" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/settlement) +"MN" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/rack, +/obj/random/cash/huge, +/obj/random/cash/huge, +/obj/random/cash/huge, +/obj/random/rigsuit, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"MS" = ( +/mob/living/simple_mob/animal/space/bats/cult/strong, +/turf/simulated/floor/outdoors/dirt, +/area/submap/settlement) +"Of" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Oj" = ( +/obj/structure/fence/corner, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"OI" = ( +/turf/simulated/wall/concrete, +/area/submap/settlement) +"OS" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Po" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"PG" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/settlement) +"PP" = ( +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Qe" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Qf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/submap/settlement) +"Qg" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/mob/living/simple_mob/construct/wraith, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) +"Re" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"RL" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_coffee, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Sr" = ( +/obj/item/weapon/chainsaw, +/mob/living/simple_mob/creature/cult/strong, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Ts" = ( +/turf/simulated/wall/cult{ + can_open = 1 + }, +/area/submap/settlement) +"TJ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"TU" = ( +/turf/simulated/wall/r_wall, +/area/submap/settlement) +"UZ" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4; + layer = 3 + }, +/obj/random/maintenance/foodstuff, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Vn" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/cult, +/area/submap/settlement) +"Vp" = ( +/obj/item/weapon/stool/padded, +/mob/living/simple_mob/creature/cult/strong, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/item/device/soulstone, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"Vu" = ( +/obj/structure/cult/tome, +/turf/simulated/floor/cult, +/area/submap/settlement) +"WO" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/mud, +/area/submap/settlement) +"Xm" = ( +/mob/living/simple_mob/construct/juggernaut, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"YH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/foodmeat, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"YI" = ( +/mob/living/simple_mob/construct/harvester, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/submap/settlement) +"YP" = ( +/mob/living/simple_mob/construct/wraith, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/settlement) +"ZR" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/carpet/blue2, +/area/submap/settlement) + +(1,1,1) = {" +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +Ey +Ey +Ey +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +"} +(2,1,1) = {" +pV +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +OI +pV +pV +Ey +Ey +Ey +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +"} +(3,1,1) = {" +pV +OI +xY +sn +Qf +dE +Fn +OI +lz +xS +gf +Of +km +OI +RL +lt +xQ +jZ +lt +lt +lt +iV +OI +PG +PG +Bv +Bv +Bv +PG +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +pV +"} +(4,1,1) = {" +pV +OI +jb +dE +dE +zT +dE +eK +st +sS +en +xZ +Po +OI +sb +lt +fU +Vp +lt +lt +jZ +jZ +rh +PG +HV +Bv +Bv +Bv +PG +Fi +cI +PP +Fi +PP +PP +Fi +PP +cI +Fi +pV +"} +(5,1,1) = {" +pV +OI +eJ +eJ +yf +dE +Fn +OI +Qe +DD +bh +xq +Mm +OI +yR +lt +xQ +jZ +lt +lt +Iu +xQ +rh +PG +PG +Bv +Bv +Bv +PG +Fi +ZR +PP +ay +PP +PP +ay +PP +ZR +Fi +pV +"} +(6,1,1) = {" +pV +OI +OI +OI +OI +OI +OI +OI +fl +YI +Fv +st +ft +OI +GU +lt +xQ +jZ +lt +lt +Kw +jZ +rh +PG +PG +Bv +Bv +Bv +PG +Fi +Il +PP +Fi +le +PP +Fi +PP +Il +Fi +pV +"} +(7,1,1) = {" +pV +OI +ls +rs +rs +rs +oS +OI +YH +DD +KZ +st +uc +OI +sb +lt +Iu +jZ +lt +lt +lt +iV +OI +PG +PG +eI +Bv +Bv +PG +Fi +Fi +Fi +Fi +PP +PP +Fi +Fi +Fi +Fi +pV +"} +(8,1,1) = {" +pV +OI +hh +oq +oq +oq +OS +OI +cY +aT +bn +cD +HF +OI +vc +lt +xQ +jZ +lt +lt +jZ +jZ +rh +PG +PG +Bv +Bv +Bv +PG +Fi +cI +PP +Fi +PP +PP +Fi +PP +cI +Fi +pV +"} +(9,1,1) = {" +pV +OI +oq +oq +Sr +oq +oq +OI +Re +rA +en +en +qa +OI +lt +lt +xQ +Vp +lt +lt +gl +xQ +rh +PG +PG +Bv +Bv +MS +PG +Fi +ZR +PP +ay +PP +PP +ay +PP +ZR +Fi +pV +"} +(10,1,1) = {" +pV +OI +OI +OI +eK +OI +OI +OI +OI +OI +eK +OI +OI +OI +KK +TJ +xQ +jZ +lt +lt +jZ +jZ +rh +PG +PG +Bv +Bv +Bv +PG +Fi +Il +PP +Fi +PP +PP +Fi +PP +Il +Fi +pV +"} +(11,1,1) = {" +pV +OI +xs +oq +oq +AY +oq +OI +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +iV +OI +PG +HV +Bv +Bv +Bv +PG +Fi +Fi +Fi +Fi +PP +PP +Fi +Fi +Fi +Fi +pV +"} +(12,1,1) = {" +pV +OI +Mw +oq +oq +ya +oq +eK +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +lt +OI +PG +PG +Bv +Bv +Bv +PG +Fi +cI +PP +Fi +PP +PP +Fi +PP +cI +Fi +pV +"} +(13,1,1) = {" +pV +OI +xs +oq +oq +Lw +oq +OI +lt +lt +lt +lt +Kw +UZ +jZ +lt +jZ +UZ +jZ +lt +lt +lt +OI +PG +PG +Bv +Bv +Bv +PG +Fi +ZR +PP +ay +PP +PP +ay +PP +ZR +Fi +pV +"} +(14,1,1) = {" +pV +OI +OI +OI +eK +OI +OI +OI +OI +OI +lX +OI +OI +OI +OI +OI +rh +rh +rh +OI +eK +OI +OI +PG +PG +Bv +Bv +Bv +PG +Fi +Il +PP +Fi +PP +PP +Fi +PP +Il +Fi +pV +"} +(15,1,1) = {" +pV +OI +nN +nN +nN +nN +bp +OI +GS +lX +BK +BK +Ev +OI +lO +lO +lO +lO +lO +lO +lO +lO +lO +FR +PG +MS +Bv +Bv +HV +Fi +Fi +Fi +Fi +PP +PP +Fi +Fi +Fi +Fi +pV +"} +(16,1,1) = {" +pV +OI +nN +im +nN +nN +il +OI +OI +OI +BK +BK +xz +OI +lO +Cd +lO +lO +Cd +lO +lO +Cd +lO +FR +PG +Bv +Bv +Bv +PG +Fi +LV +PP +PP +PP +PP +BT +PP +PP +Fi +pV +"} +(17,1,1) = {" +pV +OI +jo +Lj +nN +nN +vY +OI +GS +lX +BK +BK +Ev +OI +Cd +zz +Cd +Cd +zz +Cd +Cd +zz +Cd +FR +PG +Bv +eI +Bv +PG +Fi +LI +PP +PP +PP +PP +Ja +Qg +PP +Fi +pV +"} +(18,1,1) = {" +pV +OI +HR +wV +nN +nN +bp +OI +OI +OI +OI +OI +OI +OI +lO +Cd +lO +lO +Cd +lO +lO +Cd +lO +FR +PG +Bv +Bv +Bv +PG +ay +PP +PP +PP +PP +PP +BT +PP +PP +Fi +pV +"} +(19,1,1) = {" +pV +OI +OI +OI +OI +OI +OI +OI +PG +PG +PG +PG +PG +MI +lO +lO +lO +lO +lO +lO +lO +lO +lO +FR +PG +Bv +MS +Bv +PG +Fi +LV +PP +PP +PP +PP +Ja +Ja +PP +Fi +pV +"} +(20,1,1) = {" +pV +pV +pV +PG +HV +PG +PG +PG +PG +PG +PG +PG +PG +PG +yi +yi +yi +yi +PG +PG +yi +yi +yi +PG +PG +Bv +Bv +Bv +PG +Fi +LI +PP +PP +PP +PP +PP +PP +PP +Fi +pV +"} +(21,1,1) = {" +pV +pV +pV +PG +PG +PG +PG +PG +PG +PG +PG +HV +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +Bv +Bv +Bv +PG +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +pV +"} +(22,1,1) = {" +Ey +Ey +Ey +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +pV +"} +(23,1,1) = {" +Ey +Ey +Ey +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +eI +Bv +Bv +Bv +Bv +Bv +MS +Bv +Bv +Bv +Bv +Bv +Bv +Bv +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +pV +"} +(24,1,1) = {" +Ey +Ey +Ey +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +Bv +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +pV +"} +(25,1,1) = {" +pV +pV +pV +PG +PG +PG +HV +PG +PG +PG +PG +PG +PG +HV +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +Bv +Bv +eI +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +pV +"} +(26,1,1) = {" +pV +pV +pV +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +Bv +Bv +Bv +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +PG +pV +"} +(27,1,1) = {" +pV +pV +pV +kT +gC +gC +gC +gC +gC +gC +gC +gC +sK +gC +gC +gC +gC +gC +gC +gC +gC +gC +WO +PG +PG +Bv +Bv +Bv +PG +PG +TU +TU +TU +TU +TU +TU +TU +TU +TU +pV +"} +(28,1,1) = {" +pV +pV +pV +ht +rW +rW +rW +rW +rW +rW +rW +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +zh +zh +zh +zh +zh +zh +zh +TU +pV +"} +(29,1,1) = {" +pV +pV +pV +ht +rW +kM +LM +kM +wF +te +rW +pR +pR +hV +pR +eB +hV +pR +pR +hV +pR +pR +ht +PG +HV +Bv +Bv +Bv +PG +PG +vG +zh +zh +zh +zh +Xm +zh +zh +TU +pV +"} +(30,1,1) = {" +pV +pV +pV +ht +rW +it +FA +kM +kM +kM +Ts +pR +pR +pR +pR +pR +pR +pR +pR +pR +xv +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +zh +zh +Do +Do +Do +Do +jx +TU +pV +"} +(31,1,1) = {" +pV +pV +pV +ht +rW +it +kM +kg +kM +kM +rW +pR +pR +hV +pR +pR +hV +pR +pR +hV +pR +pR +ht +PG +PG +Bv +Bv +MS +PG +PG +TU +zh +Xm +Do +zh +YP +zh +zh +TU +pV +"} +(32,1,1) = {" +pV +pV +pV +ht +rW +kM +Vu +kM +kM +HK +rW +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +zh +zh +Do +zh +zh +zh +zh +TU +pV +"} +(33,1,1) = {" +pV +pV +pV +ht +rW +rW +rW +rW +rW +rW +rW +pR +pR +hV +pR +pR +hV +pR +pR +hV +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +TU +TU +TU +TU +TU +vG +TU +TU +pV +"} +(34,1,1) = {" +pV +pV +pV +ht +rW +kM +Vn +kM +kM +qv +rW +pR +pR +xv +pR +pR +pR +pR +pR +pR +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +TU +hy +xH +TU +TU +zh +TU +TU +pV +"} +(35,1,1) = {" +pV +pV +pV +ht +rW +it +kM +gz +kM +kM +rW +pR +pR +hV +pR +pR +hV +pR +pR +hV +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +MN +bI +zh +TU +TU +zh +TU +TU +pV +"} +(36,1,1) = {" +pV +pV +pV +ht +rW +it +yb +kM +kM +kM +pn +pR +pR +pR +pR +pR +pR +eB +pR +pR +pR +pR +ht +PG +HV +Bv +Bv +Bv +PG +PG +TU +xH +zh +zh +ID +zh +zh +TU +TU +pV +"} +(37,1,1) = {" +pV +pV +pV +ht +rW +kM +LM +kM +wF +te +rW +pR +pR +hV +pR +pR +hV +pR +pR +hV +xv +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +oa +bI +zh +TU +TU +TU +TU +TU +pV +"} +(38,1,1) = {" +pV +pV +pV +ht +rW +rW +rW +rW +rW +rW +rW +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +pR +ht +PG +PG +Bv +Bv +Bv +PG +PG +TU +TU +hy +xH +TU +TU +TU +TU +TU +pV +"} +(39,1,1) = {" +pV +pV +pV +Oj +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +gC +GV +PG +PG +Bv +Bv +Bv +PG +PG +TU +TU +TU +TU +TU +TU +TU +TU +TU +pV +"} +(40,1,1) = {" +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +Ey +Ey +Ey +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +"} diff --git a/maps/submaps/surface_submaps/valley/siegepoint.dmm b/maps/submaps/surface_submaps/valley/siegepoint.dmm new file mode 100644 index 0000000000..b66fbecc22 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/siegepoint.dmm @@ -0,0 +1,1348 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/mob/living/simple_mob/humanoid/pirate/las/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"cm" = ( +/obj/structure/table/steel_reinforced, +/obj/random/contraband/nofail, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"cM" = ( +/obj/structure/salvageable/console, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"cP" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/pirate/manned, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"fx" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"gA" = ( +/obj/structure/salvageable/machine_os, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"gL" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg/sol{ + faction = "neutral" + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"gR" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"hs" = ( +/turf/template_noop, +/area/template_noop) +"iQ" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/random/ammo, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"ji" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/projectile/SVD, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"jk" = ( +/obj/random/ammo, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"jH" = ( +/obj/structure/salvageable/computer, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"lc" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"lL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/projectile/revolver/lemat, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"nl" = ( +/obj/structure/table/steel_reinforced, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"oa" = ( +/mob/living/simple_mob/mechanical/mecha/ripley/pirate/last_stand_merc, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"oW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"pC" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"pN" = ( +/obj/structure/bed/chair/office{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"pW" = ( +/obj/structure/salvageable/bliss, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"rG" = ( +/obj/machinery/telecomms/relay/preset/ruskie, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"sI" = ( +/obj/structure/salvageable/computer, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"ta" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/merc/ranged/smg/sol{ + faction = "neutral" + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"tl" = ( +/obj/structure/bed/chair/office{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/pirate/las/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"ty" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"uC" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi{ + health = 15; + maxHealth = 15 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"vu" = ( +/obj/structure/salvageable/server, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"wF" = ( +/mob/living/simple_mob/humanoid/pirate/las/armored, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"wV" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"xD" = ( +/obj/structure/salvageable/data, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"xE" = ( +/mob/living/simple_mob/animal/giant_spider/webslinger, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"xK" = ( +/turf/simulated/wall/rpshull, +/area/submap/siegepoint) +"xQ" = ( +/obj/structure/salvageable/data, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"yP" = ( +/mob/living/simple_mob/animal/giant_spider/electric, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"zJ" = ( +/obj/structure/table/steel_reinforced, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"zZ" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + health = 15; + maxHealth = 15 + }, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Ap" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"AO" = ( +/obj/random/ammo, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"AW" = ( +/obj/effect/spider/stickyweb, +/obj/item/weapon/gun/projectile/revolver/webley, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"BY" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/projectile/revolver/saa, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Da" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Ey" = ( +/obj/structure/table/steel_reinforced, +/obj/random/medical/pillbottle, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"EC" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"GW" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + health = 15; + maxHealth = 15 + }, +/obj/item/clothing/suit/armor/pcarrier/merc, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Id" = ( +/obj/effect/spider/stickyweb, +/obj/item/clothing/accessory/storage/webbing/combatpilot, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Ij" = ( +/mob/living/simple_mob/humanoid/pirate/armored, +/obj/random/ammo, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Io" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"IW" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Ji" = ( +/obj/structure/bookcase, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Jv" = ( +/obj/structure/table/steel_reinforced, +/obj/random/medical, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Lo" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/handcannon/armored, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Lu" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"LK" = ( +/obj/structure/salvageable/server, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Nv" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"NT" = ( +/obj/structure/salvageable/data, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Pm" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Pw" = ( +/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Qd" = ( +/mob/living/simple_mob/humanoid/pirate/ranged/shotgun/armored, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"QF" = ( +/obj/structure/bed/chair/office{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"QI" = ( +/obj/structure/salvageable/implant_container_os, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Rl" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/mob/living/simple_mob/humanoid/pirate/las/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Rs" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Rz" = ( +/mob/living/simple_mob/humanoid/pirate/armored, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Tg" = ( +/mob/living/simple_mob/humanoid/pirate/captain, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Tp" = ( +/obj/structure/salvageable/autolathe, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"We" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/energy/medigun, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Xi" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Xu" = ( +/obj/effect/spider/stickyweb, +/obj/item/clothing/suit/armor/pcarrier/riot/full, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"XZ" = ( +/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"Yc" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) +"ZG" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + health = 15; + maxHealth = 15 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/siegepoint) + +(1,1,1) = {" +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} +(2,1,1) = {" +hs +hs +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} +(3,1,1) = {" +hs +hs +xK +Ji +Ji +Ji +Ji +Ji +Ji +Ji +oW +Ji +xK +xK +xK +xK +xK +xK +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} +(4,1,1) = {" +hs +hs +xK +jk +Rz +oW +ae +oW +iQ +oW +uC +Ji +xK +AW +Pm +Pm +yP +xK +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} +(5,1,1) = {" +hs +hs +xK +Ji +oW +Ji +oW +Ji +AO +Ji +oW +oW +Ji +Pm +Pm +xE +Pm +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +hs +hs +"} +(6,1,1) = {" +hs +hs +xK +Ji +oW +Ji +AO +Ji +oW +Ji +oW +AO +Ji +Pm +Xu +Pm +Pm +xK +oW +AO +oW +Da +oW +oW +ty +oW +oW +xK +hs +hs +"} +(7,1,1) = {" +hs +hs +xK +wV +Io +oW +Ij +oW +ae +oW +uC +Ji +xK +Pm +Pm +xE +Pm +xK +oW +oW +oW +ZG +oW +oW +oW +oW +oW +xK +hs +hs +"} +(8,1,1) = {" +hs +hs +xK +Ji +Ji +Ji +Ji +Ji +Ji +Ji +oW +Ji +xK +Id +Pm +Pm +yP +xK +oW +AO +oW +pC +oW +oW +oW +AO +oW +xK +hs +hs +"} +(9,1,1) = {" +hs +xK +xK +xK +xK +xK +xK +xK +xK +xK +Xi +xK +xK +xK +xK +xK +xK +xK +wV +oW +Nv +xK +xK +xK +Xi +xK +xK +xK +hs +hs +"} +(10,1,1) = {" +hs +xK +nl +oW +oW +oW +oW +xK +oW +oW +AO +oW +Lo +oW +AO +oW +oW +Pw +oW +oW +oW +xK +oW +oW +oW +oW +AO +xK +hs +hs +"} +(11,1,1) = {" +hs +xK +zJ +oW +XZ +oW +oW +Xi +oW +ae +oW +oW +oW +ZG +oW +oW +oW +oW +uC +oW +oW +xK +oW +pN +oW +tl +oW +xK +hs +hs +"} +(12,1,1) = {" +hs +xK +jH +oW +oW +oW +nl +xK +oW +oW +oW +oW +Qd +oW +oW +AO +oW +EC +oW +oW +oW +xK +wV +Yc +Jv +Yc +Nv +xK +hs +hs +"} +(13,1,1) = {" +hs +xK +sI +AO +ZG +oW +cm +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +Xi +xK +xK +AO +Ap +oW +Ap +oW +xK +hs +hs +"} +(14,1,1) = {" +hs +xK +zJ +oW +oW +Lu +pW +xK +oW +oW +oW +xK +wV +oW +oW +gL +rG +xK +oW +oW +oW +xK +oW +oW +GW +oW +oW +xK +hs +hs +"} +(15,1,1) = {" +hs +xK +zJ +oW +oW +oW +Tp +xK +zZ +oW +wF +xK +oW +Yc +We +oW +lL +xK +oW +oW +oW +xK +oW +QF +oW +QF +oW +xK +hs +hs +"} +(16,1,1) = {" +hs +xK +QI +oW +ZG +oW +zJ +xK +oW +Tg +oW +Xi +oW +lc +ta +oW +ji +xK +AO +oW +Nv +xK +wV +Yc +Jv +Yc +Nv +xK +hs +hs +"} +(17,1,1) = {" +hs +xK +cM +Lu +oW +oW +nl +xK +ZG +oW +wF +xK +oW +Yc +IW +oW +BY +xK +oW +oW +oW +xK +oW +Rl +oW +Rs +oW +xK +hs +hs +"} +(18,1,1) = {" +hs +xK +cM +oW +oW +oW +zJ +xK +oW +oW +oW +xK +wV +oW +oW +gL +rG +xK +oW +oW +oW +xK +oW +oW +gR +oW +AO +xK +hs +hs +"} +(19,1,1) = {" +hs +xK +Ey +oW +oW +fx +LK +xK +oW +AO +oW +xK +xK +xK +xK +xK +xK +xK +oW +oW +oW +xK +xK +xK +xK +xK +xK +xK +hs +hs +"} +(20,1,1) = {" +hs +xK +zJ +oW +oW +AO +vu +xK +oW +oW +oW +oW +oW +oW +oW +oW +oW +cP +oW +oW +AO +xK +Lu +ty +oW +oW +oW +xK +hs +hs +"} +(21,1,1) = {" +hs +xK +gA +oW +ZG +oW +zJ +xK +wV +oa +uC +oW +oW +oW +oW +ZG +oW +oW +oW +uC +Nv +xK +oW +oW +oW +oW +oW +Xi +hs +hs +"} +(22,1,1) = {" +hs +xK +gA +oW +oW +oW +nl +xK +oW +oW +oW +oW +oW +oW +AO +oW +oW +cP +oW +oW +oW +xK +oW +AO +oW +oW +oW +xK +hs +hs +"} +(23,1,1) = {" +hs +xK +xK +xK +xK +Xi +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +wV +oW +Nv +xK +xK +xK +hs +hs +"} +(24,1,1) = {" +hs +hs +hs +xK +oW +oW +oW +oW +Lu +xQ +xD +xQ +xQ +xQ +xQ +xQ +xQ +xD +xQ +xQ +oW +oW +oW +Lu +oW +xK +hs +hs +hs +hs +"} +(25,1,1) = {" +hs +hs +hs +xK +oW +oW +ZG +oW +oW +oW +oW +oW +AO +fx +oW +oW +oW +fx +oW +oW +ZG +oW +oW +oW +oW +xK +hs +hs +hs +hs +"} +(26,1,1) = {" +hs +hs +hs +xK +oW +AO +Io +oW +oW +oW +oW +oW +oW +ZG +oW +oW +oW +Lu +oW +oW +Io +oW +oW +oW +oW +xK +hs +hs +hs +hs +"} +(27,1,1) = {" +hs +hs +hs +xK +oW +gR +oW +oW +fx +xQ +NT +xQ +xQ +xQ +xQ +xQ +xQ +NT +xQ +xQ +oW +AO +oW +gR +fx +xK +hs +hs +hs +hs +"} +(28,1,1) = {" +hs +hs +hs +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +xK +hs +hs +hs +hs +"} +(29,1,1) = {" +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} +(30,1,1) = {" +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +"} diff --git a/maps/submaps/surface_submaps/valley/solarmoff.dmm b/maps/submaps/surface_submaps/valley/solarmoff.dmm new file mode 100644 index 0000000000..56042cccc6 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/solarmoff.dmm @@ -0,0 +1,568 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/solarmoff) +"c" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/solarmoff) +"d" = ( +/obj/item/weapon/melee/energy/sword/imperial, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"g" = ( +/obj/effect/decal/cleanable/ash, +/obj/random/energy/highend, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"i" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/solarmoff) +"m" = ( +/obj/item/weapon/storage/secure/briefcase/fuelrod, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"n" = ( +/turf/simulated/floor/water, +/area/submap/solarmoff) +"p" = ( +/obj/item/rig_module/ai_container, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"s" = ( +/obj/item/rig_module/vision/thermal, +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"u" = ( +/turf/simulated/wall/r_wall, +/area/submap/solarmoff) +"v" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/water, +/area/submap/solarmoff) +"B" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/submap/solarmoff) +"C" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/rig_module/atmos_shield, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"E" = ( +/mob/living/simple_mob/animal/space/carp/large, +/turf/simulated/floor/water, +/area/submap/solarmoff) +"F" = ( +/obj/random/energy/highend, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"G" = ( +/turf/simulated/mineral/crystal_shiny, +/area/submap/solarmoff) +"I" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"J" = ( +/turf/simulated/floor, +/area/submap/solarmoff) +"K" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/submap/solarmoff) +"L" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/solarmoff) +"M" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/water, +/area/submap/solarmoff) +"N" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/water, +/area/submap/solarmoff) +"P" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/solarmoff) +"R" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water, +/area/submap/solarmoff) +"T" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/rig_module/rescue_pharm, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"U" = ( +/mob/living/simple_mob/vore/solarmoth, +/obj/item/rig_module/device/stamp, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"V" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/solarmoff) +"W" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor, +/area/submap/solarmoff) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +u +B +K +K +K +K +K +K +K +P +u +a +a +a +a +"} +(4,1,1) = {" +a +a +a +u +u +n +M +n +R +n +n +n +n +M +u +u +a +a +a +"} +(5,1,1) = {" +a +a +u +u +n +n +R +n +n +E +n +n +R +n +n +u +u +a +a +"} +(6,1,1) = {" +a +a +L +n +n +E +n +n +n +n +M +n +n +E +n +n +L +a +a +"} +(7,1,1) = {" +a +a +b +M +n +n +M +v +G +G +G +n +n +n +n +M +b +a +a +"} +(8,1,1) = {" +a +a +b +n +R +n +n +G +G +s +G +G +M +R +n +n +b +a +a +"} +(9,1,1) = {" +a +a +b +n +n +n +G +G +p +I +F +G +G +n +n +n +b +a +a +"} +(10,1,1) = {" +a +a +b +n +E +M +G +T +V +U +I +m +G +n +E +n +b +a +a +"} +(11,1,1) = {" +a +a +b +n +n +R +G +G +g +I +d +G +G +n +R +n +b +a +a +"} +(12,1,1) = {" +a +a +b +M +n +n +n +G +G +C +G +G +N +n +n +M +b +a +a +"} +(13,1,1) = {" +a +a +b +n +n +M +n +n +G +G +G +n +R +n +n +n +b +a +a +"} +(14,1,1) = {" +a +a +c +n +n +E +n +n +M +n +n +n +n +E +n +n +i +a +a +"} +(15,1,1) = {" +a +a +u +u +n +n +R +n +n +E +n +R +n +n +n +u +u +a +a +"} +(16,1,1) = {" +a +a +a +u +u +n +M +n +n +n +n +n +n +M +u +u +a +a +a +"} +(17,1,1) = {" +a +a +a +a +u +B +K +P +u +W +u +B +K +P +u +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +u +J +u +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/surface_submaps/valley/spooderchurch.dmm b/maps/submaps/surface_submaps/valley/spooderchurch.dmm new file mode 100644 index 0000000000..434b392ada --- /dev/null +++ b/maps/submaps/surface_submaps/valley/spooderchurch.dmm @@ -0,0 +1,1458 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aZ" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"dT" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"eg" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/webslinger{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"fs" = ( +/mob/living/simple_mob/humanoid/cultist/noodle{ + faction = "syndicate" + }, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"fJ" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"hn" = ( +/obj/structure/table/sifwoodentable, +/obj/random/contraband/nofail, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"hp" = ( +/obj/structure/closet/crate/plastic, +/obj/random/cash/huge, +/obj/random/cash/huge, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"ig" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"kl" = ( +/obj/effect/step_trigger/teleporter/offset/east, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"lp" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10; + icon_state = "cliffbuilder-corner" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"lF" = ( +/obj/structure/table/rack/shelf, +/obj/random/energy/highend, +/obj/random/energy/highend, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"mY" = ( +/mob/living/simple_mob/animal/giant_spider/webslinger{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"ox" = ( +/obj/effect/step_trigger/teleporter/offset/west, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"pK" = ( +/mob/living/simple_mob/humanoid/cultist/hunter/surt{ + faction = "syndicate" + }, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"pV" = ( +/obj/effect/spider/stickyweb, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"tn" = ( +/mob/living/simple_mob/humanoid/cultist/lizard{ + faction = "syndicate" + }, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"tI" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"uF" = ( +/obj/structure/table/sifwoodentable, +/obj/random/firstaid, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"vk" = ( +/obj/structure/table/rack/shelf, +/obj/random/projectile, +/obj/random/projectile, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"vA" = ( +/obj/structure/cliff/automatic{ + dir = 6; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"wl" = ( +/obj/structure/curtain, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"xf" = ( +/mob/living/simple_mob/animal/giant_spider/electric{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"xw" = ( +/obj/structure/cliff/automatic{ + dir = 10; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"xx" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"xC" = ( +/obj/structure/table/sifwoodentable, +/obj/random/rigsuit, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"yq" = ( +/obj/structure/cliff/automatic{ + dir = 9; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"yG" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"yY" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"zv" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"zY" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/card/emag, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Ah" = ( +/obj/structure/closet/crate/plastic, +/obj/item/stolenpackage, +/obj/random/cash/huge, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Bw" = ( +/turf/simulated/wall/log_sif, +/area/submap/spooderchurch) +"Cm" = ( +/turf/template_noop, +/area/template_noop) +"Cq" = ( +/obj/structure/table/sifwoodentable, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Cv" = ( +/obj/structure/table/sifwoodentable, +/obj/random/toolbox, +/obj/random/toolbox, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"EU" = ( +/obj/structure/catwalk, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"Fi" = ( +/obj/structure/catwalk, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"Fk" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"FR" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"HI" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"HU" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"IG" = ( +/mob/living/simple_mob/humanoid/cultist/tesh{ + faction = "syndicate" + }, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"JI" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"KM" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"Mj" = ( +/obj/effect/step_trigger/teleporter/offset/east, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"MB" = ( +/obj/structure/cliff/automatic{ + dir = 5; + icon_state = "cliffbuilder" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"MV" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"NG" = ( +/obj/random/mob/merc/armored, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"NL" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"NM" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"OH" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"Pd" = ( +/turf/template_noop, +/area/submap/spooderchurch) +"Pk" = ( +/obj/effect/step_trigger/teleporter/offset/west, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"PR" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"Rv" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"Tb" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/outdoors/dirt, +/area/submap/spooderchurch) +"UX" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"VU" = ( +/obj/structure/closet/crate/plastic, +/obj/item/stolenpackage, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Wb" = ( +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Xe" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"XH" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/structure/railing{ + dir = 4; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/submap/spooderchurch) +"YO" = ( +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"Zl" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) +"ZX" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/spellbook/oneuse/smoke, +/turf/simulated/floor/wood/sif, +/area/submap/spooderchurch) + +(1,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(2,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(3,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(4,1,1) = {" +Cm +Cm +NL +KM +KM +KM +KM +KM +KM +KM +KM +KM +Xe +MV +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +NL +KM +KM +KM +KM +KM +KM +KM +KM +KM +Xe +Cm +Cm +Cm +"} +(5,1,1) = {" +Cm +Cm +JI +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +tI +yY +yY +Pd +Pd +Pd +Pd +Pd +Pd +yY +JI +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +tI +Cm +Cm +Cm +"} +(6,1,1) = {" +Cm +Cm +JI +Bw +hn +xx +hn +Ah +hn +FR +hn +Bw +tI +yY +ig +Pd +Pd +Pd +Pd +Pd +Pd +ig +JI +Bw +YO +YO +YO +YO +YO +YO +IG +Bw +tI +Cm +Cm +Cm +"} +(7,1,1) = {" +Cm +Rv +fJ +Bw +YO +YO +YO +Fk +YO +YO +YO +Bw +tI +yY +ig +yY +yY +Pd +Pd +yY +yY +ig +JI +Bw +YO +YO +Zl +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(8,1,1) = {" +Cm +NM +NM +zv +YO +YO +YO +YO +YO +YO +YO +Bw +tI +yY +pV +ig +yY +yY +yY +yY +yY +ig +JI +Bw +YO +tn +Cq +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(9,1,1) = {" +Cm +NM +NM +zv +YO +YO +YO +YO +YO +YO +YO +Bw +tI +yY +eg +ig +ig +yY +yY +yY +eg +ig +JI +Bw +YO +YO +Cq +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(10,1,1) = {" +Cm +OH +xw +Bw +YO +Fk +Zl +xx +Zl +Fk +YO +Bw +tI +yY +ig +ig +ig +PR +yY +ig +pV +ig +JI +Bw +YO +YO +YO +YO +YO +YO +IG +Bw +tI +Cm +Cm +Cm +"} +(11,1,1) = {" +NL +KM +vA +Bw +Bw +zv +Bw +Bw +Bw +zv +Bw +Bw +tI +yY +ig +ig +ig +yY +yY +ig +ig +ig +JI +Bw +wl +wl +Bw +Bw +Bw +zv +Bw +Bw +tI +Cm +Cm +Cm +"} +(12,1,1) = {" +JI +Bw +Bw +Bw +YO +YO +uF +Bw +xx +YO +YO +Bw +tI +yY +ig +ig +yY +xf +yY +ig +aZ +ig +JI +Bw +YO +YO +xx +Bw +NM +NM +NM +NM +tI +Cm +Cm +Cm +"} +(13,1,1) = {" +JI +Bw +YO +YO +YO +YO +Zl +Bw +xx +YO +YO +Bw +tI +yY +ig +ig +yY +Tb +yY +yY +ig +aZ +JI +Bw +YO +YO +hp +Bw +NM +NM +NM +NM +MB +Rv +Cm +Cm +"} +(14,1,1) = {" +JI +Bw +YO +Zl +YO +YO +lF +Bw +VU +YO +YO +Bw +HI +Mj +kl +Mj +Mj +Mj +Mj +Mj +Mj +kl +XH +Bw +YO +YO +hp +Bw +NM +NM +NM +NM +NM +NM +Cm +Cm +"} +(15,1,1) = {" +JI +Bw +Wb +xC +YO +NG +ZX +Bw +Cq +YO +YO +zv +Fi +EU +EU +EU +EU +EU +EU +EU +EU +EU +Fi +zv +pK +YO +Cq +Bw +NM +NM +NM +NM +NM +NM +Cm +Cm +"} +(16,1,1) = {" +JI +Bw +YO +zY +YO +YO +vk +Bw +VU +YO +YO +Bw +dT +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +ox +yG +Bw +YO +YO +xx +Bw +NM +NM +NM +NM +NM +NM +Cm +Cm +"} +(17,1,1) = {" +JI +Bw +YO +YO +YO +YO +Zl +Bw +xx +YO +YO +Bw +tI +yY +ig +yY +yY +yY +yY +yY +yY +pV +JI +Bw +YO +YO +xx +Bw +NM +NM +NM +NM +yq +OH +Cm +Cm +"} +(18,1,1) = {" +JI +Bw +Bw +Bw +YO +YO +Cv +Bw +VU +YO +YO +Bw +tI +yY +pV +ig +xf +yY +yY +yY +Tb +ig +JI +Bw +YO +YO +hp +Bw +NM +NM +NM +NM +tI +Cm +Cm +Cm +"} +(19,1,1) = {" +lp +HU +xw +Bw +Bw +zv +Bw +Bw +Bw +zv +Bw +Bw +tI +yY +ig +ig +ig +PR +yY +yY +mY +ig +JI +Bw +wl +wl +Bw +Bw +Bw +zv +Bw +Bw +tI +Cm +Cm +Cm +"} +(20,1,1) = {" +Cm +Rv +fJ +Bw +YO +Fk +Zl +Ah +Zl +Fk +YO +Bw +tI +yY +ig +ig +ig +yY +mY +yY +ig +ig +JI +Bw +YO +YO +YO +YO +YO +YO +IG +Bw +tI +Cm +Cm +Cm +"} +(21,1,1) = {" +Cm +NM +NM +zv +YO +YO +YO +YO +YO +YO +YO +Bw +tI +yY +aZ +pV +ig +yY +yY +yY +pV +ig +JI +Bw +YO +YO +Cq +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(22,1,1) = {" +Cm +NM +NM +zv +YO +YO +YO +YO +YO +YO +YO +Bw +tI +yY +aZ +ig +ig +Pd +Pd +yY +ig +ig +JI +Bw +YO +fs +Cq +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(23,1,1) = {" +Cm +OH +xw +Bw +YO +YO +YO +Fk +YO +YO +YO +Bw +tI +yY +ig +ig +yY +Pd +Pd +Pd +yY +ig +JI +Bw +YO +YO +Zl +YO +YO +YO +YO +Bw +tI +Cm +Cm +Cm +"} +(24,1,1) = {" +Cm +Pd +JI +Bw +hn +xx +hn +FR +hn +xx +hn +Bw +tI +yY +ig +yY +yY +Pd +Pd +Pd +Pd +ig +JI +Bw +YO +YO +YO +YO +YO +YO +IG +Bw +tI +Cm +Cm +Cm +"} +(25,1,1) = {" +Cm +Cm +JI +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +tI +yY +ig +yY +Pd +Pd +Pd +Pd +Pd +Pd +JI +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +tI +Cm +Cm +Cm +"} +(26,1,1) = {" +Cm +Cm +lp +HU +HU +HU +HU +HU +HU +HU +HU +HU +UX +MV +MV +Cm +Cm +Cm +Cm +Cm +Cm +Cm +lp +HU +HU +HU +HU +HU +HU +HU +HU +HU +UX +Cm +Cm +Cm +"} +(27,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(28,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} +(29,1,1) = {" +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +"} diff --git a/maps/submaps/surface_submaps/valley/teppifarm.dmm b/maps/submaps/surface_submaps/valley/teppifarm.dmm new file mode 100644 index 0000000000..9d065c7593 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/teppifarm.dmm @@ -0,0 +1,455 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"b" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"c" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"g" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"h" = ( +/obj/random/energy/highend, +/obj/item/weapon/material/knife/machete/hatchet/unathiknife, +/obj/structure/closet/crate, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"i" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"j" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"k" = ( +/turf/simulated/wall/wood, +/area/submap/teppifarm) +"l" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"m" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"p" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"q" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"r" = ( +/obj/structure/table/woodentable, +/obj/random/contraband/nofail, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"s" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"t" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"u" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"x" = ( +/obj/structure/window/basic, +/obj/structure/curtain/black, +/obj/structure/table/standard, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"y" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"z" = ( +/obj/structure/window/basic, +/obj/effect/landmark/loot_spawn, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"A" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/gun/energy/taser/xeno, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"B" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"C" = ( +/obj/structure/railing{ + dir = 8; + icon_state = "railing0" + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"D" = ( +/turf/simulated/floor/water, +/area/submap/teppifarm) +"E" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"G" = ( +/obj/structure/simple_door/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"H" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/hydroponics/exotic, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"L" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"M" = ( +/obj/structure/simple_door/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"O" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"P" = ( +/obj/item/weapon/material/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"Q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"S" = ( +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"U" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"V" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/table/rack, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/gun/energy/taser/xeno, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"W" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif, +/area/submap/teppifarm) +"X" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"Y" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/wood/alt, +/area/submap/teppifarm) +"Z" = ( +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +"} +(2,1,1) = {" +Z +k +k +k +k +k +k +k +k +C +C +C +C +c +Z +"} +(3,1,1) = {" +Z +k +Y +O +k +s +E +V +k +u +u +U +u +a +Z +"} +(4,1,1) = {" +Z +k +r +Q +k +Q +H +Q +P +j +u +u +u +a +Z +"} +(5,1,1) = {" +Z +k +s +O +k +i +Q +Q +O +u +u +u +u +a +Z +"} +(6,1,1) = {" +Z +k +h +O +k +s +Q +A +k +u +u +u +D +a +Z +"} +(7,1,1) = {" +Z +k +k +G +k +k +B +k +k +b +b +b +b +W +Z +"} +(8,1,1) = {" +Z +k +s +O +O +X +O +B +L +t +g +g +l +l +Z +"} +(9,1,1) = {" +Z +k +s +O +X +y +O +M +L +L +g +g +l +Z +Z +"} +(10,1,1) = {" +Z +k +k +M +k +k +k +k +g +g +t +l +l +Z +Z +"} +(11,1,1) = {" +Z +k +I +O +Q +X +O +z +t +l +l +Z +Z +Z +Z +"} +(12,1,1) = {" +Z +k +S +O +O +O +Q +z +g +l +Z +Z +Z +Z +Z +"} +(13,1,1) = {" +Z +k +q +q +q +p +m +x +l +Z +Z +Z +Z +Z +Z +"} +(14,1,1) = {" +Z +k +k +k +k +k +k +k +l +Z +Z +Z +Z +Z +Z +"} +(15,1,1) = {" +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +"} diff --git a/maps/submaps/surface_submaps/valley/valley.dm b/maps/submaps/surface_submaps/valley/valley.dm new file mode 100644 index 0000000000..e1049084dc --- /dev/null +++ b/maps/submaps/surface_submaps/valley/valley.dm @@ -0,0 +1,280 @@ +// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test. +// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. +// When adding a new PoI, please add it to this list. +#if MAP_TEST +#include "begderg.dmm" +#include "blobden.dmm" +#include "bloodchurch.dmm" +#include "clockwork.dmm" +#include "cove.dmm" +#include "crashedexplo.dmm" +#include "demonranch.dmm" +#include "dronelord.dmm" +#include "fallenportal.dmm" +#include "frostlake.dmm" +#include "leechpond.dmm" +#include "leppy.dmm" +#include "mausarmy.dmm" +#include "metroidmaze.dmm" +#include "phorondragon.dmm" +#include "piratefortress.dmm" +#include "piratevessel.dmm" +#include "piratevox.dmm" +#include "plontden.dmm" +#include "Redshuttledown.dmm" +#include "solarmoff.dmm" +#include "spooderchurch.dmm" +#include "teppifarm.dmm" +#include "vault.dmm" +#include "xenobio.dmm" +#endif + +/datum/map_template/surface/valley + name = "Surface Content - Valley" + desc = "Used to make a place of strange terror." + +//For POIs in the valley walls. +/datum/map_template/surface/valley/walls + +//For POIs in the center. +/dataum/map_template/surface/valley/inner + +/datum/map_template/surface/valley/walls/begderg + name = "Dragon Den" + desc = "A rocky den for a big dragon rematch" + mappath = 'maps/submaps/surface_submaps/valley/begderg.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/blobden + name = "Blob Den" + desc = "An large supply drop with an unfortante guest" + mappath = 'maps/submaps/surface_submaps/valley/blobden.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/bloodchurch + name = "Blood Church" + desc = "A chorus of carnage sung from high above." + mappath = 'maps/submaps/surface_submaps/valley/bloodchurch.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/carriershuttle + name = "Carrier Shuttle" + desc = "A parked merc shuttle with a mini zoo" + mappath = 'maps/submaps/surface_submaps/valley/carriershuttle.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/cliffmanor + name = "Cliff Manor" + desc = "A small shack surronded by jellyfish and a moat" + mappath = 'maps/submaps/surface_submaps/valley/cliffmanor.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/clockwork + name = "Clockwork Den" + desc = "A firey pit with what remains of a nigh fallen church" + mappath = 'maps/submaps/surface_submaps/valley/clockwork.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/cove + name = "Pirate Cove" + desc = "A cove full of pirates. And a brawl outside." + mappath = 'maps/submaps/surface_submaps/valley/cove.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/crashedexplo + name = "Spider Explo" + desc = "Oh look, some spider explorers" + mappath = 'maps/submaps/surface_submaps/valley/crashedexplo.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/demonranch + name = "Demon Ranch" + desc = "A farm made in an attempt to reduced demon summoning costs." + mappath = 'maps/submaps/surface_submaps/valley/demonranch.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/dronelord + name = "Drone Overlords" + desc = "A duo of bounty hunters utlizing drones" + mappath = 'maps/submaps/surface_submaps/valley/dronelord.dmm' + cost = 25 + + +/datum/map_template/surface/valley/inner/eclipseaqua + name = "Eclipse Base Aqua" + desc = "An island base making a certian chem" + mappath = 'maps/submaps/surface_submaps/valley/eclipseaqua.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/eclipsedigsight + name = "Eclipse Base Dig" + desc = "A large scale xenoarch digsite." + mappath = 'maps/submaps/surface_submaps/valley/eclipsedigsight.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/eclipselava + name = "Eclipse Base Molten" + desc = "A well defended base guarding a strange expirement" + mappath = 'maps/submaps/surface_submaps/valley/eclipselava.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/eclipsemountain + name = "Eclipse Base Mountain" + desc = "A telecomns base" + mappath = 'maps/submaps/surface_submaps/valley/eclipsemountain.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/fallenlab + name = "Fallen Lab" + desc = "A lab created to expirment with nanites, long since forgotten" + mappath = 'maps/submaps/surface_submaps/valley/fallenlab.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/fallenportal + name = "Failed Portal" + desc = "Someone attemted to create a portal to redspace. Forgot the BSA" + mappath = 'maps/submaps/surface_submaps/valley/fallenportal.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/frostlake + name = "Frost Lake" + desc = "Ice Puzzle, now with death" + mappath = 'maps/submaps/surface_submaps/valley/frostlake.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/hydroxeno + name = "Aquatic Xenos" + desc = "Xenomoprhs in a squish cave" + mappath = 'maps/submaps/surface_submaps/valley/hydroxeno.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/leechpond + name = "Leech Pond" + desc = "A strange lake reborn." + mappath = 'maps/submaps/surface_submaps/valley/leechpond.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/leppy + name = "Leppy Den" + desc = "A rare leppy with some rare friends." + mappath = 'maps/submaps/surface_submaps/valley/leppy.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/mausarmy + name = "Mouse Takeover" + desc = "Mice trying to take over a warehouse" + mappath = 'maps/submaps/surface_submaps/valley/mausarmy.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/metroidmaze + name = "Maze" + desc = "A strange maze with several metroids" + mappath = 'maps/submaps/surface_submaps/valley/metroidmaze.dmm' + cost = 25 + + +/datum/map_template/surface/valley/inner/mouseattack + name = "Assualt Base" + desc = "A base with many mice ready for attack" + mappath = 'maps/submaps/surface_submaps/valley/mouseattack.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/mousehq + name = "Maus HQ" + desc = "An HQ that holds many deadly mice" + mappath = 'maps/submaps/surface_submaps/valley/mousehq.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/phorondragon + name = "Phoron Den" + desc = "A den of several phoron dragons" + mappath = 'maps/submaps/surface_submaps/valley/phorondragon.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/piratefortress + name = "Pirate Fort" + desc = "A goodie and pirate filled base with a moat" + mappath = 'maps/submaps/surface_submaps/valley/piratefortress.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/piratevessel + name = "Pirate Vessel" + desc = "A vessel meant for short jaunts and raids" + mappath = 'maps/submaps/surface_submaps/valley/piratevessel.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/piratevpx + name = "Vox Pirates" + desc = "A mercanry vessel having some vox raiders attack" + mappath = 'maps/submaps/surface_submaps/valley/piratevox.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/plontden + name = "Plant Den" + desc = "A familiar looking plant set up" + mappath = 'maps/submaps/surface_submaps/valley/plontden.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/puzzledungeon + name = "Puzzle Dungeon" + desc = "No threats just puzzles" + mappath = 'maps/submaps/surface_submaps/valley/puzzledungeon.dmm' + cost = 25 + + +/datum/map_template/surface/valley/inner/redshuttledown + name = "Red Shuttle Down" + desc = "The mercanry bringing out some of their best to scout Sif" + mappath = 'maps/submaps/surface_submaps/valley/Redshuttledown.dmm' + cost = 25 + + +/datum/map_template/surface/valley/inner/settlement + name = "Settlement" + desc = "An abaondened settlement." + mappath = 'maps/submaps/surface_submaps/valley/settlement.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/siegepoint + name = "Siege Point" + desc = "A friendly merc base under the assualt of pirates" + mappath = 'maps/submaps/surface_submaps/valley/siegepoint.dmm' + cost = 25 + + +/datum/map_template/surface/valley/walls/solarmoff + name = "Solar Pond" + desc = "A pond with fesh and a small sun" + mappath = 'maps/submaps/surface_submaps/valley/solarmoff.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/spooderchurch + name = "Spider Church" + desc = "Trust us, it's a cult about spiders, ignore the mercs" + mappath = 'maps/submaps/surface_submaps/valley/spooderchurch.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/teppifarm + name = "Teppi Farm" + desc = "Cute a teppi" + mappath = 'maps/submaps/surface_submaps/valley/teppifarm.dmm' + cost = 25 + +/datum/map_template/surface/valley/walls/vault + name = "Vault" + desc = "The vault holds many secerts" + mappath = 'maps/submaps/surface_submaps/valley/vault.dmm' + cost = 25 + +/datum/map_template/surface/valley/inner/xenobio + name = "Xenobio Lab" + desc = "A ruined xenobio" + mappath = 'maps/submaps/surface_submaps/valley/xenobio.dmm' + cost = 25 diff --git a/maps/submaps/surface_submaps/valley/valley_areas.dm b/maps/submaps/surface_submaps/valley/valley_areas.dm new file mode 100644 index 0000000000..5bc94d702a --- /dev/null +++ b/maps/submaps/surface_submaps/valley/valley_areas.dm @@ -0,0 +1,171 @@ +/area/submap/begderg + name = "Poi Valley Wall - Rock Dragon" + ambience = AMBIENCE_RUINS + +/area/submap/blobden + name = "Poi Valley Wall - Blob Den" + ambience = AMBIENCE_RUINS + +/area/submap/bloodchurch + name = "Poi Valley - Blood Church" + ambience = AMBIENCE_UNHOLY + +/area/submap/carriershuttle + name = "Poi Valley Wall - Carrier Shuttle" + requires_power = FALSE + ambience = AMBIENCE_RUINS + +/area/submap/cliffmanor + name = "Poi Valley Wall - Cliff Manor" + ambience = AMBIENCE_RUINS + +/area/submap/clockwork + name = "Poi Valley Wall - Clockwork" + ambience = AMBIENCE_RUINS + +/area/submap/cove + name = "Poi Valley Wall - Cove" + ambience = AMBIENCE_RUINS + +/area/submap/crashedexplo + name = "Poi Valley - Spooder Explorers" + ambience = AMBIENCE_RUINS + +/area/submap/demonranch + name = "Poi Valley - Demon Ranch" + ambience = AMBIENCE_UNHOLY + +/area/submap/dronelord + name = "Poi Valley Wall - Drone Overlords" + requires_power = FALSE + ambience = AMBIENCE_RUINS + + +/area/submap/eclipseaqua + name = "Poi Valley Wall - Eclipse Aqua" + requires_power = FALSE + ambience = AMBIENCE_TECH_RUINS + +/area/submap/eclipsedigsight + name = "Poi Valley Wall - Eclipse Dig" + requires_power = FALSE + ambience = AMBIENCE_TECH_RUINS + +/area/submap/eclipselava + name = "Poi Valley Wall - Eclipse Lava" + requires_power = FALSE + ambience = AMBIENCE_TECH_RUINS + +/area/submap/eclipsemountain + name = "Poi Valley Wall - Eclipse Mountain" + requires_power = FALSE + ambience = AMBIENCE_TECH_RUINS + +/area/submap/fallenlab + name = "Poi Valley Wall - Fallen Lab" + ambience = AMBIENCE_RUINS + +/area/submap/fallenportal + name = "Poi Valley - Failed Portal" + ambience = AMBIENCE_RUINS + + +/area/submap/hydroxeno + name = "Poi Valley Wall - Hydro Xeno" + ambience = AMBIENCE_RUINS + + +/area/submap/frostlake + name = "Poi Valley Wall - Frost Lake" + ambience = AMBIENCE_RUINS + +/area/submap/leechpond + name = "Poi Valley - Leech Pond" + ambience = AMBIENCE_RUINS + +/area/submap/leppy + name = "Poi Valley Wall - Leppy" + ambience = AMBIENCE_RUINS + +/area/submap/mausarmy + name = "Poi Valley - Maus Army" + ambience = AMBIENCE_RUINS + +/area/submap/metroidmaze + name = "Poi Valley Walls - Maze" + ambience = AMBIENCE_RUINS + + +/area/submap/mouseattack + name = "Poi Valley Wall - Mouse Attack" + ambience = AMBIENCE_RUINS + +/area/submap/mousehq + name = "Poi Valley Wall - Mouse HQ" + ambience = AMBIENCE_RUINS + + +/area/submap/phorondragon + name = "Poi Valley Walls - Phoron Pack" + ambience = AMBIENCE_RUINS + +/area/submap/piratefortress + name = "Poi Valley - Doom Pirates" + requires_power = FALSE + ambience = AMBIENCE_RUINS + +/area/submap/piratevessel + name = "Poi Valley - Shuttle Pirates" + requires_power = FALSE + ambience = AMBIENCE_RUINS + +/area/submap/piratevox + name = "Poi Valley - Vox Raiders" + requires_power = FALSE + ambience = AMBIENCE_RUINS + +/area/submap/plontden + name = "Poi Valley Walls - Plont" + ambience = AMBIENCE_RUINS + + +/area/submap/puzzledungeon + name = "Poi Valley Walls - Puzzle Dungeon" + ambience = AMBIENCE_RUINS + + +/area/submap/redshuttledown + name = "Poi Valley - Red Shuttle" + requires_power = FALSE + ambience = AMBIENCE_RUINS + + +/area/submap/settlement + name = "Poi Valley Walls - Settlement" + ambience = AMBIENCE_RUINS + +/area/submap/siegepoint + name = "Poi Valley Walls - Siegepoint" + ambience = AMBIENCE_RUINS + + +/area/submap/solarmoff + name = "Poi Valley Walls - Solar Moth" + ambience = AMBIENCE_RUINS + +/area/submap/spooderchurch + name = "Poi Valley - Fake Cult" + ambience = AMBIENCE_UNHOLY + +/area/submap/teppifarm + name = "Poi Valley - Teppi Farm" + ambience = AMBIENCE_RUINS + +/area/submap/vault + name = "Poi Valley Walls - Vault" + requires_power = FALSE + ambience = AMBIENCE_RUINS + +/area/submap/xenobio + name = "Poi Valley - Xenobio" + ambience = AMBIENCE_RUINS \ No newline at end of file diff --git a/maps/submaps/surface_submaps/valley/vault.dmm b/maps/submaps/surface_submaps/valley/vault.dmm new file mode 100644 index 0000000000..798071a729 --- /dev/null +++ b/maps/submaps/surface_submaps/valley/vault.dmm @@ -0,0 +1,1775 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"b" = ( +/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"c" = ( +/turf/simulated/shuttle/wall/alien, +/area/submap/vault) +"d" = ( +/turf/template_noop, +/area/template_noop) +"e" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/obj/item/weapon/implantcase/chem, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"h" = ( +/mob/living/simple_mob/mechanical/hivebot/precusor/lobber, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"i" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"n" = ( +/obj/structure/loot_pile/surface/alien/end, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"o" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"p" = ( +/turf/space, +/area/submap/vault) +"q" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"r" = ( +/obj/machinery/porta_turret/alien{ + faction = "hivebot" + }, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"v" = ( +/obj/structure/table/alien/blue, +/obj/random/janusmodule, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"x" = ( +/turf/simulated/shuttle/floor/alienplating/external, +/area/submap/vault) +"y" = ( +/obj/item/clothing/suit/armor/shield, +/obj/item/weapon/implantcase/handblade, +/obj/item/weapon/implantcase/dart, +/obj/item/clothing/head/technomancer/master, +/obj/item/clothing/suit/armor/alien/tank, +/turf/space, +/area/submap/vault) +"z" = ( +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"B" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/radiation, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"C" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/emp, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"D" = ( +/obj/structure/window/titanium/full, +/obj/structure/grille/cult{ + name = "Alien grille" + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular, +/turf/simulated/shuttle/floor/alienplating/external, +/area/submap/vault) +"G" = ( +/mob/living/simple_mob/mechanical/hivebot/precusor/laser, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"H" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/obj/item/weapon/cell/device/weapon/recharge/alien/omni/empty, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"I" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"J" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/radiation, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"L" = ( +/mob/living/simple_mob/mechanical/hivebot/support/logistics, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"M" = ( +/obj/structure/table/alien/blue, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/obj/item/weapon/implantcase/medkit, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"N" = ( +/obj/item/clothing/head/technomancer/apprentice, +/obj/structure/table/alien/blue, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"O" = ( +/obj/machinery/door/airlock/alien/blue/public, +/obj/structure/fans/tiny, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"P" = ( +/obj/machinery/porta_turret/alien{ + faction = "hivebot" + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/vault) +"R" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/gun/energy/alien, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"V" = ( +/obj/machinery/porta_turret/alien{ + faction = "hivebot" + }, +/turf/space, +/area/submap/vault) +"X" = ( +/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced{ + faction = "hivebot" + }, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"Y" = ( +/obj/machinery/door/airlock/alien/blue/public, +/obj/structure/fans/tiny{ + mouse_opacity = 0 + }, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) +"Z" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/gun/energy/alien, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/obj/item/clothing/head/technomancer/apprentice, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/submap/vault) + +(1,1,1) = {" +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +"} +(2,1,1) = {" +d +d +d +d +d +d +d +d +c +c +c +c +c +a +a +a +a +a +a +a +a +a +a +a +a +a +c +c +c +c +c +d +d +d +d +d +d +d +d +"} +(3,1,1) = {" +d +d +d +d +d +d +d +c +c +c +c +c +c +a +a +z +z +a +a +a +a +a +z +z +a +a +c +c +r +r +c +c +d +d +d +d +d +d +d +"} +(4,1,1) = {" +d +d +d +d +d +d +c +c +a +a +a +r +c +c +r +a +a +r +c +c +c +r +a +a +r +c +c +c +a +a +a +c +c +d +d +d +d +d +d +"} +(5,1,1) = {" +d +d +d +d +d +c +c +P +a +z +z +a +c +c +c +Y +Y +c +c +c +c +c +Y +Y +c +c +c +c +z +z +a +a +c +c +d +d +d +d +d +"} +(6,1,1) = {" +d +d +d +d +c +c +c +r +a +z +z +a +q +a +z +a +a +c +c +c +c +c +a +a +z +a +q +a +z +z +a +a +r +c +c +d +d +d +d +"} +(7,1,1) = {" +d +d +d +c +c +c +c +c +a +a +a +a +q +a +z +a +a +c +c +c +c +c +a +a +z +a +q +a +a +c +a +a +z +r +c +c +d +d +d +"} +(8,1,1) = {" +d +d +c +c +P +r +c +c +c +q +c +c +c +c +c +O +O +c +c +c +c +c +O +O +c +c +c +c +c +c +q +c +a +a +a +c +c +d +d +"} +(9,1,1) = {" +d +c +c +a +a +a +a +c +r +a +a +i +c +c +a +a +a +a +c +c +c +a +a +a +a +c +c +H +a +a +z +q +a +a +a +a +c +c +d +"} +(10,1,1) = {" +d +c +c +a +z +z +a +q +a +z +a +n +c +a +a +a +a +a +a +a +a +a +a +a +a +a +c +Z +a +z +a +c +c +z +z +a +P +c +d +"} +(11,1,1) = {" +d +c +c +a +z +z +a +c +a +a +a +c +c +a +a +z +z +z +z +z +z +z +z +z +a +a +c +c +P +a +a +c +a +z +z +a +r +c +d +"} +(12,1,1) = {" +d +c +c +r +a +a +a +c +i +n +c +c +c +a +a +a +a +a +a +X +a +a +a +a +a +a +c +c +c +M +H +c +a +a +c +c +c +c +d +"} +(13,1,1) = {" +d +c +c +c +c +q +q +c +c +c +c +c +c +c +a +a +a +z +z +z +z +z +a +a +a +c +c +c +c +c +c +c +q +q +c +c +c +c +d +"} +(14,1,1) = {" +d +a +a +c +c +a +a +c +c +a +a +a +c +c +c +a +a +a +a +v +a +a +a +x +c +c +c +a +a +a +c +c +a +a +c +c +a +a +d +"} +(15,1,1) = {" +d +a +a +r +c +z +z +c +a +a +a +a +a +c +c +c +c +D +D +D +D +D +c +c +c +c +a +a +a +a +a +c +z +z +c +r +a +a +d +"} +(16,1,1) = {" +d +a +z +a +Y +a +a +O +a +a +z +a +I +a +c +c +c +D +D +D +D +D +c +c +c +a +a +a +z +a +a +O +a +a +Y +a +z +a +d +"} +(17,1,1) = {" +d +a +z +a +Y +a +a +O +a +a +z +a +I +a +c +c +V +p +p +p +p +p +V +c +c +a +B +a +z +a +a +O +a +a +Y +a +z +a +d +"} +(18,1,1) = {" +d +a +a +r +c +c +c +c +a +a +o +I +z +a +D +D +p +p +p +p +p +p +p +D +D +C +z +a +J +a +a +c +c +c +c +r +a +a +d +"} +(19,1,1) = {" +d +a +a +c +c +c +c +c +c +a +z +a +z +a +D +D +p +p +p +p +p +p +p +D +D +a +z +a +z +a +c +c +c +c +c +c +a +a +d +"} +(20,1,1) = {" +d +a +a +c +c +c +c +c +c +a +z +h +z +v +D +D +p +p +p +y +p +p +p +D +D +v +z +L +z +a +c +c +c +c +c +c +a +a +d +"} +(21,1,1) = {" +d +a +a +c +c +c +c +c +c +a +z +a +z +a +D +D +p +p +p +p +p +p +p +D +D +a +z +a +z +a +c +c +c +c +c +c +a +a +d +"} +(22,1,1) = {" +d +a +a +r +c +c +c +c +a +a +o +I +z +a +D +D +p +p +p +p +p +p +p +D +D +C +z +a +J +a +a +c +c +c +c +r +a +a +d +"} +(23,1,1) = {" +d +a +z +a +Y +a +a +O +a +a +z +a +I +a +c +c +V +p +p +p +p +p +V +c +c +a +B +a +z +a +a +O +a +a +Y +a +z +a +d +"} +(24,1,1) = {" +d +a +z +a +Y +a +a +O +a +a +z +a +I +a +c +c +c +D +D +D +D +D +c +c +c +a +a +a +z +a +a +O +a +a +Y +a +z +a +d +"} +(25,1,1) = {" +d +a +a +r +c +z +z +c +a +a +a +a +a +c +c +c +c +D +D +D +D +D +c +c +c +c +a +a +a +a +a +c +z +z +c +r +a +a +d +"} +(26,1,1) = {" +d +a +a +c +c +a +a +c +c +a +a +a +c +c +c +a +a +a +a +v +a +a +a +a +c +c +c +a +a +a +c +c +a +a +c +c +a +a +d +"} +(27,1,1) = {" +d +c +c +c +c +q +q +c +c +c +c +c +c +c +a +a +a +b +z +G +z +b +a +a +a +c +c +c +c +c +c +c +q +q +c +c +c +c +d +"} +(28,1,1) = {" +d +c +r +a +a +a +a +c +H +e +c +c +c +a +a +a +a +a +a +a +a +a +a +a +a +a +c +c +c +n +i +c +a +a +a +a +r +c +d +"} +(29,1,1) = {" +d +c +r +a +z +z +a +c +a +a +N +c +c +a +a +z +z +z +z +z +z +z +z +z +a +a +c +c +P +a +a +c +a +z +z +a +a +c +d +"} +(30,1,1) = {" +d +c +r +a +z +z +a +c +a +z +a +R +c +a +a +a +a +a +a +a +a +a +a +a +a +a +c +n +a +z +a +q +a +z +z +a +a +c +d +"} +(31,1,1) = {" +d +c +c +a +a +a +a +a +a +a +a +H +c +c +a +a +a +a +c +c +c +a +a +a +a +c +c +i +a +a +c +c +a +a +a +a +c +c +d +"} +(32,1,1) = {" +d +d +c +c +a +a +a +a +a +c +c +c +c +c +c +O +O +c +c +c +c +c +O +O +c +c +c +c +c +q +c +P +a +a +r +c +c +d +d +"} +(33,1,1) = {" +d +d +d +c +c +a +z +a +a +a +a +a +q +a +z +a +a +c +c +c +c +c +a +a +z +a +q +a +a +a +a +a +z +a +c +c +d +d +d +"} +(34,1,1) = {" +d +d +d +d +c +c +a +a +a +z +z +a +q +a +z +a +a +c +c +c +c +c +a +a +z +a +q +a +z +z +a +a +a +c +c +d +d +d +d +"} +(35,1,1) = {" +d +d +d +d +d +c +c +a +a +z +z +a +c +c +c +Y +Y +c +c +c +c +c +Y +Y +c +c +c +a +z +z +a +r +c +c +d +d +d +d +d +"} +(36,1,1) = {" +d +d +d +d +d +d +c +c +a +a +a +a +c +c +r +a +a +r +c +c +c +r +a +a +r +c +c +a +a +a +a +c +c +d +d +d +d +d +d +"} +(37,1,1) = {" +d +d +d +d +d +d +d +c +c +P +r +r +c +a +a +z +z +a +a +a +a +a +z +z +a +a +c +r +a +a +c +c +d +d +d +d +d +d +d +"} +(38,1,1) = {" +d +d +d +d +d +d +d +d +c +c +c +c +c +a +a +a +a +a +a +a +a +a +a +a +a +a +c +c +c +c +c +d +d +d +d +d +d +d +d +"} +(39,1,1) = {" +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +"} diff --git a/maps/submaps/surface_submaps/valley/xenobio.dmm b/maps/submaps/surface_submaps/valley/xenobio.dmm new file mode 100644 index 0000000000..93fc94e18f --- /dev/null +++ b/maps/submaps/surface_submaps/valley/xenobio.dmm @@ -0,0 +1,1216 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"af" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"bl" = ( +/turf/simulated/floor/plating, +/area/submap/xenobio) +"bM" = ( +/obj/structure/table/woodentable, +/obj/item/stolenpackage, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"bR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_mob/slime/xenobio/green{ + unity = 1 + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"bU" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/glasses/graviton/medgravpatch, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"bY" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"cV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + locked = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"dT" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/carbon/human/monkey, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"ee" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/full{ + density = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"fl" = ( +/mob/living/simple_mob/slime/xenobio/gold{ + unity = 1 + }, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"fz" = ( +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"fH" = ( +/mob/living/simple_mob/slime/xenobio/dark_blue{ + unity = 1 + }, +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"fL" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"fZ" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"gK" = ( +/turf/simulated/wall/r_lead, +/area/submap/xenobio) +"gW" = ( +/obj/machinery/door/blast/regular, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"iQ" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"iT" = ( +/obj/machinery/door/airlock/external/bolted, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"je" = ( +/mob/living/carbon/human/monkey, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"kl" = ( +/mob/living/simple_mob/slime/xenobio/ruby{ + unity = 1 + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"kM" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"kN" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"lb" = ( +/obj/machinery/power/rtg/advanced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"lU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"ng" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"nt" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"os" = ( +/obj/machinery/door/airlock/external/bolted, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"oC" = ( +/turf/simulated/wall/r_wall, +/area/submap/xenobio) +"oD" = ( +/obj/item/stolenpackage, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"pa" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"pP" = ( +/turf/simulated/wall{ + can_open = 1; + desc = "A huge chunk of metal used to seperate rooms. There are scratch marks along the floor." + }, +/area/submap/xenobio) +"rf" = ( +/obj/structure/table/standard, +/obj/item/stack/material/phoron{ + amount = 10 + }, +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"ri" = ( +/obj/item/device/perfect_tele/frontier, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"rw" = ( +/obj/structure/loot_pile/mecha/phazon, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"rS" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/xenobio/monkey_gun, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"sl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/purple, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"tw" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + locked = 1 + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"tW" = ( +/obj/random/plushielarge, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"uu" = ( +/turf/template_noop, +/area/template_noop) +"vu" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"wb" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"zk" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"zo" = ( +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Aa" = ( +/obj/machinery/smartfridge/secure/extract, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Af" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Ai" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"Aq" = ( +/mob/living/carbon/human/monkey, +/obj/structure/table/standard, +/obj/item/stack/material/morphium, +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"AO" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"AS" = ( +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + id = "slimeden" + }, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"Co" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Cq" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"DG" = ( +/obj/machinery/door/window/brigdoor/westright, +/obj/machinery/door/blast/regular{ + id = "slimeden" + }, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"Ej" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"EM" = ( +/obj/machinery/power/rtg/advanced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"Gc" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"Gh" = ( +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"GP" = ( +/turf/simulated/wall, +/area/submap/xenobio) +"Ha" = ( +/obj/structure/table/standard, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/item/clothing/glasses/graviton, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"HY" = ( +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"JJ" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"JM" = ( +/mob/living/simple_mob/slime/xenobio/oil{ + unity = 1 + }, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"JP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/slime/xenobio/emerald{ + unity = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"JZ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Kw" = ( +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"KH" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + req_access = null; + req_one_access = list(1,19) + }, +/obj/machinery/door/blast/regular{ + id = "slimeden" + }, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"Me" = ( +/obj/structure/table/standard, +/obj/item/weapon/melee/energy/spear, +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"Mo" = ( +/turf/simulated/floor/reinforced/phoron{ + phoron = 100 + }, +/area/submap/xenobio) +"MR" = ( +/obj/item/weapon/bedsheet/purple, +/obj/structure/bed, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"Ng" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Np" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"NN" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/mob/living/carbon/human/monkey, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"OW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"PM" = ( +/mob/living/simple_mob/slime/xenobio/sapphire{ + unity = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Qq" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/armor/tesla, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"RZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/mop/advanced, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Sc" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/mob/living/carbon/human/monkey, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"SD" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/poi{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "slimeden" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"SE" = ( +/mob/living/simple_mob/slime/xenobio/silver{ + unity = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"SZ" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"Tn" = ( +/mob/living/carbon/human/monkey, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"TN" = ( +/obj/structure/table/standard, +/obj/item/stack/material/phoron{ + amount = 10 + }, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled, +/area/submap/xenobio) +"Um" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "PAPC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) +"UR" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/submap/xenobio) +"VK" = ( +/obj/item/weapon/grenade/shooter/energy/tesla, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"WL" = ( +/mob/living/simple_mob/slime/xenobio/bluespace{ + unity = 1 + }, +/turf/simulated/floor/reinforced, +/area/submap/xenobio) +"YT" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/green, +/area/submap/xenobio) + +(1,1,1) = {" +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +"} +(2,1,1) = {" +uu +uu +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +uu +uu +uu +"} +(3,1,1) = {" +uu +oC +oC +gK +gK +gK +GP +GP +GP +MR +bM +SD +bU +sl +oC +uu +uu +uu +"} +(4,1,1) = {" +uu +oC +gK +EM +UR +EM +gK +GP +GP +Cq +Tn +Gh +Gh +Gh +oC +uu +uu +uu +"} +(5,1,1) = {" +uu +oC +gK +Gc +bR +Ej +gK +GP +GP +Um +YT +YT +OW +vu +oC +uu +uu +uu +"} +(6,1,1) = {" +uu +oC +gK +lb +lU +lb +gK +GP +GP +Cq +kl +Tn +zk +Gh +oC +uu +uu +uu +"} +(7,1,1) = {" +uu +oC +oC +gK +tw +gK +GP +GP +GP +SZ +kN +YT +wb +Gh +oC +uu +uu +uu +"} +(8,1,1) = {" +uu +oC +oC +GP +JZ +GP +GP +GP +GP +GP +GP +GP +cV +GP +oC +uu +uu +uu +"} +(9,1,1) = {" +uu +oC +Ha +zo +JZ +zo +GP +ri +WL +HY +GP +zo +JZ +zo +oC +uu +uu +uu +"} +(10,1,1) = {" +uu +oC +TN +zo +JZ +zo +GP +HY +je +HY +GP +zo +JZ +zo +oC +uu +uu +uu +"} +(11,1,1) = {" +uu +oC +rS +zo +JZ +zo +GP +gW +KH +AS +GP +zo +JZ +zo +oC +uu +uu +uu +"} +(12,1,1) = {" +uu +oC +ee +zo +JZ +zo +NN +PM +zo +SE +NN +zo +JZ +zo +oC +uu +uu +uu +"} +(13,1,1) = {" +uu +oC +Aa +zo +AO +Af +Af +dT +JP +Af +Af +Af +ng +zo +oC +uu +uu +uu +"} +(14,1,1) = {" +uu +oC +nt +zo +zo +zo +Sc +PM +zo +SE +Sc +zo +zo +zo +oC +uu +uu +uu +"} +(15,1,1) = {" +uu +oC +Np +zo +zo +zo +GP +AS +DG +AS +GP +AS +DG +AS +oC +uu +uu +uu +"} +(16,1,1) = {" +uu +oC +Ng +zo +zo +zo +GP +oD +je +HY +GP +HY +je +HY +oC +uu +uu +uu +"} +(17,1,1) = {" +uu +oC +RZ +zo +zo +Co +GP +HY +JM +VK +GP +HY +fl +HY +oC +uu +uu +uu +"} +(18,1,1) = {" +uu +oC +oC +oC +iT +oC +oC +oC +oC +oC +oC +oC +pP +oC +oC +uu +uu +uu +"} +(19,1,1) = {" +uu +uu +oC +af +bl +Ai +oC +Aq +rf +fz +oC +bl +bl +bl +oC +uu +uu +uu +"} +(20,1,1) = {" +uu +uu +oC +kM +bl +bl +os +Mo +fH +Mo +oC +bl +bl +bl +oC +uu +uu +uu +"} +(21,1,1) = {" +uu +uu +oC +bY +bl +Ai +oC +Me +Mo +Mo +oC +Kw +Qq +Kw +oC +uu +uu +uu +"} +(22,1,1) = {" +uu +uu +oC +oC +iT +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +uu +"} +(23,1,1) = {" +uu +uu +oC +fL +zo +fL +oC +tW +tW +tW +oC +zo +fZ +zo +zo +zo +oC +uu +"} +(24,1,1) = {" +uu +uu +oC +zo +zo +zo +oC +tW +rw +tW +oC +zo +zo +zo +zo +JJ +iT +uu +"} +(25,1,1) = {" +uu +uu +oC +zo +zo +zo +oC +tW +tW +tW +oC +zo +zo +zo +zo +zo +oC +uu +"} +(26,1,1) = {" +uu +uu +oC +iQ +zo +JJ +oC +oC +oC +oC +oC +iQ +zo +JJ +oC +oC +oC +uu +"} +(27,1,1) = {" +uu +uu +oC +zo +zo +zo +fZ +zo +zo +zo +fZ +zo +zo +zo +oC +uu +uu +uu +"} +(28,1,1) = {" +uu +uu +oC +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +oC +uu +uu +uu +"} +(29,1,1) = {" +uu +uu +oC +fL +zo +zo +pa +zo +zo +zo +pa +zo +pa +fL +oC +uu +uu +uu +"} +(30,1,1) = {" +uu +uu +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +oC +uu +uu +uu +"} +(31,1,1) = {" +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +"} diff --git a/modular_chomp/code/_HELPERS/icons/flatten.dm b/modular_chomp/code/_HELPERS/icons/flatten.dm new file mode 100644 index 0000000000..6459d885c5 --- /dev/null +++ b/modular_chomp/code/_HELPERS/icons/flatten.dm @@ -0,0 +1,268 @@ +//? File contains functions to generate flat /icon's from things. +//? This is obviously expensive. Very, very expensive. +//? new get_flat_icon is faster, but, really, don't use these unless you need to. +//? Chances are unless you are: +//? - sending to html/browser (for non character preview purposes) +//? - taking photos +//? - doing complex icon operations that can't be done with filters/overlays +//? you probably don't need to use these. + +/** + * Generates an icon with all 4 directions of something. + * + * @params + * - A - appearancelike object. + * - no_anim - flatten out animations + */ +/proc/get_compound_icon(atom/A, no_anim) + var/mutable_appearance/N = new + N.appearance = A + N.dir = NORTH + var/icon/north = get_flat_icon(N, NORTH, no_anim = no_anim) + N.dir = SOUTH + var/icon/south = get_flat_icon(N, SOUTH, no_anim = no_anim) + N.dir = EAST + var/icon/east = get_flat_icon(N, EAST, no_anim = no_anim) + N.dir = WEST + var/icon/west = get_flat_icon(N, WEST, no_anim = no_anim) + qdel(N) + //Starts with a blank icon because of byond bugs. + var/icon/full = icon('modular_chomp/icons/system/blank_32x32.dmi', "") + full.Insert(north, dir = NORTH) + full.Insert(south, dir = SOUTH) + full.Insert(east, dir = EAST) + full.Insert(west, dir = WEST) + qdel(north) + qdel(south) + qdel(east) + qdel(west) + return full + +/proc/get_flat_icon(appearance/appearancelike, dir, no_anim) + if(!dir && isloc(appearancelike)) + dir = appearancelike.dir + return _get_flat_icon(appearancelike, dir, no_anim, null, TRUE) + +/proc/_get_flat_icon(image/A, defdir, no_anim, deficon, start) + // start with blank image + var/static/icon/template = icon('modular_chomp/icons/system/blank_32x32.dmi', "") + + #define BLANK icon(template) + + #define INDEX_X_LOW 1 + #define INDEX_X_HIGH 2 + #define INDEX_Y_LOW 3 + #define INDEX_Y_HIGH 4 + + #define flatX1 flat_size[INDEX_X_LOW] + #define flatX2 flat_size[INDEX_X_HIGH] + #define flatY1 flat_size[INDEX_Y_LOW] + #define flatY2 flat_size[INDEX_Y_HIGH] + #define addX1 add_size[INDEX_X_LOW] + #define addX2 add_size[INDEX_X_HIGH] + #define addY1 add_size[INDEX_Y_LOW] + #define addY2 add_size[INDEX_Y_HIGH] + + // invis? skip. + if(!A || A.alpha <= 0) + return BLANK + + // detect if state exists + var/icon/icon = A.icon || deficon + var/state = A.icon_state + var/none = !icon + if(!none) + var/list/states = icon_states(icon) + if(!(state in states)) + if(!("" in states)) + none = TRUE + else + state = "" + + // determine if there's directionals + // propagate forced direcitons down if and only if A has a direction + // todo: this results in a mismatch if someone is facing east but their overlays are facing south. + var/dir + if(start || !A.dir) + dir = defdir + else + dir = A.dir + var/ourdir = dir + if(!none && ourdir != SOUTH) + if(length(icon_states(icon(icon, state, NORTH)))) + else if(length(icon_states(icon(icon, state, EAST)))) + else if(length(icon_states(icon(icon, state, WEST)))) + else + ourdir = SOUTH + + // start generating + if(!A.overlays.len && !A.underlays.len) + // we don't even have ourselves! + if(none) + return BLANK + // no overlays/underlays, we're done, just mix in ourselves + var/icon/self_icon = icon(icon(icon, state, ourdir), "", SOUTH, no_anim? 1 : null) + if(A.alpha < 255) + self_icon.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY) + if(A.color) + if(islist(A.color)) + self_icon.MapColors(arglist(A.color)) + else + self_icon.Blend(A.color, ICON_MULTIPLY) + return self_icon + + // safety/performance check + if((A.overlays.len + A.underlays.len) > 80) + // we use fucking insertion check + // > 80 = death. + CRASH("get_flat_icon tried to process more than 80 layers") + + // otherwise, we have to blend in all overlays/underlays. + var/icon/flat = BLANK + var/list/appearance/gathered = list() + var/appearance/copying + var/appearance/comparing + var/i + var/appearance/self + var/current_layer + + if(!none) + // add the atom itself + self = image(icon = icon, icon_state = state, layer = A.layer, dir = ourdir) + self.color = A.color + self.alpha = A.alpha + self.blend_mode = A.blend_mode + gathered[self] = A.layer + + // gather + for(copying as anything in A.overlays) + // todo: better handling + if(copying.plane != FLOAT_PLANE && copying.plane != A.plane) + // we don't care probably HUD or something lol + continue + current_layer = copying.layer + // if it's float layer, shove it right above atom. + if(current_layer < 0) + if(current_layer < -1000) + CRASH("who the hell is using -1000 or below on float layers?") + current_layer = A.layer + (1000 + current_layer) / 1000 + // else, add 1 so it doesn't potentially collide on float + else + ++current_layer + + // inject with insertion sort + for(i in 1 to gathered.len) + comparing = gathered[i] + if(current_layer < gathered[comparing]) + gathered.Insert(i, copying) + // associate + gathered[copying] = current_layer + + for(copying as anything in A.underlays) + // todo: better handling + if(copying.plane != FLOAT_PLANE && copying.plane != A.plane) + // we don't care probably HUD or something lol + continue + current_layer = copying.layer + // if it's float layer, shove it right below atom. + if(current_layer < 0) + if(current_layer < -1000) + CRASH("who the hell is using -1000 or below on float layers?") + current_layer = A.layer - (1000 + current_layer) / 1000 + // else, subtract 1 so it doesn't potentially collide on float + else + --current_layer + + // inject with insertion sort + for(i in 1 to gathered.len) + comparing = gathered[i] + if(current_layer < gathered[comparing]) + gathered.Insert(i, copying) + // associate + gathered[copying] = current_layer + + // adding icon we're mixing in + var/icon/adding + // current dimensions + var/list/flat_size = list(1, flat.Width(), 1, flat.Height()) + // adding dimensions + var/list/add_size[4] + // blend mode + var/blend_mode + + // blend in layers + for(copying as anything in gathered) + // if invis, skip + if(copying.alpha == 0) + continue + + // detect if it's literally ourselves + if(copying == self) + // blend in normally (no sense doing otherwise unless we're on map) + // we can't assume we're on map. + blend_mode = BLEND_OVERLAY + adding = icon(icon, state, ourdir) + else + // use full get_flat_icon + blend_mode = copying.blend_mode + adding = _get_flat_icon(copying, defdir, no_anim, icon) + + // if we got nothing, skip + if(!adding) + continue + + // detect adding size, taking into account copying overlay's pixel offsets + add_size[INDEX_X_LOW] = min(flatX1, copying.pixel_x + 1) + add_size[INDEX_X_HIGH] = max(flatX2, copying.pixel_x + adding.Width()) + add_size[INDEX_Y_LOW] = min(flatY1, copying.pixel_y + 1) + add_size[INDEX_Y_HIGH] = max(flatY2, copying.pixel_y + adding.Height()) + + // resize flat to fit if necessary + if(flat_size ~! add_size) + flat.Crop( + addX1 - flatX1 + 1, + addY1 - flatY1 + 1, + addX2 - flatX1 + 1, + addY2 - flatY1 + 1 + ) + flat_size = add_size.Copy() + + // blend the overlay/underlay in + flat.Blend(adding, blendMode2iconMode(blend_mode), copying.pixel_x + 2 - flatX1, copying.pixel_y + 2 - flatY1) + + // apply colors + if(A.color) + if(islist(A.color)) + flat.MapColors(arglist(A.color)) + else + flat.Blend(A.color, ICON_MULTIPLY) + + // apply alpha + if(A.alpha < 255) + flat.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY) + + // finalize + if(no_anim) + // clean up frames + var/icon/cleaned = icon() + cleaned.Insert(flat, "", SOUTH, 1, 0) + return cleaned + else + // just return flat as SOUTH + return icon(flat, "", SOUTH) + + #undef flatX1 + #undef flatX2 + #undef flatY1 + #undef flatY2 + #undef addX1 + #undef addX2 + #undef addY1 + #undef addY2 + + #undef INDEX_X_LOW + #undef INDEX_X_HIGH + #undef INDEX_Y_LOW + #undef INDEX_Y_HIGH + + #undef BLANK \ No newline at end of file diff --git a/modular_chomp/code/_HELPERS/type2type/color.dm b/modular_chomp/code/_HELPERS/type2type/color.dm new file mode 100644 index 0000000000..a09f01fa27 --- /dev/null +++ b/modular_chomp/code/_HELPERS/type2type/color.dm @@ -0,0 +1,172 @@ +/** + * Convert RBG to HSL + */ +/proc/rgb2hsl(red, green, blue) + red /= 255 + green /= 255 + blue /= 255 + + var/max = max(red, green, blue) + var/min = min(red, green, blue) + var/range = max - min + + var/hue = 0 + var/saturation = 0 + var/lightness = 0 + + lightness = (max + min) / 2 + if(range != 0) + if(lightness < 0.5) + saturation = range / (max + min) + else + saturation = range / (2 - max - min) + + var/dred = ((max - red) / (6 * max)) + 0.5 + var/dgreen = ((max - green) / (6 * max)) + 0.5 + var/dblue = ((max - blue) / (6 * max)) + 0.5 + + if(max == red) + hue = dblue - dgreen + else if(max == green) + hue = dred - dblue + (1 / 3) + else + hue = dgreen - dred + (2 / 3) + if(hue < 0) + hue++ + else if(hue > 1) + hue-- + + return list(hue, saturation, lightness) +/** + * Convert HSL to RGB + */ +/proc/hsl2rgb(hue, saturation, lightness) + var/red + var/green + var/blue + + if(saturation == 0) + red = lightness * 255 + green = red + blue = red + else + var/a;var/b; + if(lightness < 0.5) + b = lightness * (1 + saturation) + else + b = (lightness + saturation) - (saturation * lightness) + a = 2 * lightness - b + + red = round(255 * hue2rgb(a, b, hue + (1/3)), 1) + green = round(255 * hue2rgb(a, b, hue), 1) + blue = round(255 * hue2rgb(a, b, hue - (1/3)), 1) + + return list(red, green, blue) + +/** + * Convert hue to RGB + */ +/proc/hue2rgb(a, b, hue) + if(hue < 0) + hue++ + else if(hue > 1) + hue-- + if(6*hue < 1) + return (a + (b - a) * 6 * hue) + if(2*hue < 1) + return b + if(3*hue < 2) + return (a + (b - a) * ((2 / 3) - hue) * 6) + return a + +/** + * Convert Kelvin to RGB + * + * Adapted from http://www.tannerhelland.com/4435/convert-temperature-rgb-algorithm-code/ + */ +/proc/heat2colour(temp) + return rgb( + heat2colour_r(temp), + heat2colour_g(temp), + heat2colour_b(temp), + ) + +/** + * Convert Kelvin for the Red channel + */ +/proc/heat2colour_r(temp) + temp /= 100 + if(temp <= 66) + . = 255 + else + . = max(0, min(255, 329.698727446 * (temp - 60) ** -0.1332047592)) + +/** + * Convert Kelvin for the Green channel + */ +/proc/heat2colour_g(temp) + temp /= 100 + if(temp <= 66) + . = max(0, min(255, 99.4708025861 * log(temp) - 161.1195681661)) + else + . = max(0, min(255, 288.1221685293 * ((temp - 60) ** -0.075148492))) + +/** + * Convert Kelvin for the Blue channel + */ +/proc/heat2colour_b(temp) + temp /= 100 + if(temp >= 66) + . = 255 + else + if(temp <= 16) + . = 0 + else + . = max(0, min(255, 138.5177312231 * log(temp - 10) - 305.0447927307)) + +/** + * Assumes format #RRGGBB #rrggbb + */ +/proc/color_hex2num(A) + if(!A || length(A) != length_char(A)) + return 0 + var/R = hex2num(copytext(A, 2, 4)) + var/G = hex2num(copytext(A, 4, 6)) + var/B = hex2num(copytext(A, 6, 8)) + return R+G+B + +/** + *! Word of warning: + * Using a matrix like this as a color value will simplify it back to a string after being set. + */ +/proc/color_hex2color_matrix(string) + var/length = length(string) + if((length != 7 && length != 9) || length != length_char(string)) + return color_matrix_identity() + var/r = hex2num(copytext(string, 2, 4)) / 255 + var/g = hex2num(copytext(string, 4, 6)) / 255 + var/b = hex2num(copytext(string, 6, 8)) / 255 + var/a = 1 + if(length == 9) + a = hex2num(copytext(string, 8, 10)) / 255 + if(!isnum(r) || !isnum(g) || !isnum(b) || !isnum(a)) + return color_matrix_identity() + return list( + r,0,0,0,0, + g,0,0,0,0, + b,0,0,0,0, + a,0,0,0,0, + ) + +/** + * Will drop all values not on the diagonal. + */ +/proc/color_matrix2color_hex(list/the_matrix) + if(!istype(the_matrix) || the_matrix.len != 20) + return "#ffffffff" + return rgb( + the_matrix[1] * 255, // R + the_matrix[6] * 255, // G + the_matrix[11] * 255, // B + the_matrix[16] * 255, // A + ) \ No newline at end of file diff --git a/modular_chomp/code/datums/browser/color_matrix_picker.dm b/modular_chomp/code/datums/browser/color_matrix_picker.dm new file mode 100644 index 0000000000..fd409a3ba0 --- /dev/null +++ b/modular_chomp/code/datums/browser/color_matrix_picker.dm @@ -0,0 +1,84 @@ +/datum/browser/modal/color_matrix_picker + var/color_matrix + +/datum/browser/modal/color_matrix_picker/New(mob/user, message, title, button1 = "Ok", button2, button3, stealfocus = TRUE, timeout = 0, list/values) + if(!user) + return + if(!values) + values = list(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) + if(values.len < 12) + values.len = 12 + var/list/output = list() + output += "
" + output += "[message]" +#define MATRIX_FIELD(field, default) " " + output += "

" + output += MATRIX_FIELD("rr", values[1]) + output += MATRIX_FIELD("gr", values[4]) + output += MATRIX_FIELD("br", values[7]) + output += "

" + output += MATRIX_FIELD("rg", values[2]) + output += MATRIX_FIELD("gg", values[5]) + output += MATRIX_FIELD("bg", values[8]) + output += "

" + output += MATRIX_FIELD("rb", values[3]) + output += MATRIX_FIELD("gb", values[6]) + output += MATRIX_FIELD("bb", values[9]) + output += "

" + output += MATRIX_FIELD("cr", values[10]) + output += MATRIX_FIELD("cg", values[11]) + output += MATRIX_FIELD("cb", values[12]) + output += "

" +#undef MATRIX_FIELD + + output += {"
+ "} + + if (button2) + output += {""} + + if (button3) + output += {""} + output += {"
"} + + ..(user, ckey("[user]-[message]-[title]-[world.time]-[rand(1,10000)]"), title, 800, 400, src, stealfocus, timeout) + set_content(output.Join("")) + +/datum/browser/modal/color_matrix_picker/Topic(href, list/href_list) + if(href_list["close"] || !user) + opentime = 0 + return + if(href_list["button"]) + var/button = text2num(href_list["button"]) + if(ISINRANGE(button, 1, 3)) + selectedbutton = button + var/list/cm = rgb_construct_color_matrix( + text2num(href_list["rr"]), + text2num(href_list["rg"]), + text2num(href_list["rb"]), + text2num(href_list["gr"]), + text2num(href_list["gg"]), + text2num(href_list["gb"]), + text2num(href_list["br"]), + text2num(href_list["bg"]), + text2num(href_list["bb"]), + text2num(href_list["cr"]), + text2num(href_list["cg"]), + text2num(href_list["cb"]) + ) + if(cm) + color_matrix = cm + opentime = 0 + close() + +/proc/color_matrix_picker(mob/user, message, title, button1 = "Ok", button2, button3, stealfocus, timeout = 10 MINUTES, list/values) + if(!istype(user)) + if(istype(user, /client)) + var/client/C = user + user = C.mob + else + return + var/datum/browser/modal/color_matrix_picker/B = new(user, message, title, button1, button2, button3, stealfocus, timeout, values) + B.open() + B.wait() + return list("button" = B.selectedbutton, "matrix" = B.color_matrix) \ No newline at end of file diff --git a/modular_chomp/code/datums/interfaces/appearance.dm b/modular_chomp/code/datums/interfaces/appearance.dm new file mode 100644 index 0000000000..92fef7e7f4 --- /dev/null +++ b/modular_chomp/code/datums/interfaces/appearance.dm @@ -0,0 +1,143 @@ +/** + * hey, remember mutable appearance? + * + * only: + * - this isn't a real object rather than a struct + * - i'm making a cast for it so we can VV it + * - this is also used to cast procs that operate on appearance-like things. + * + * Sue me, I need to debug things somehow + * + * DO NOT USE THESE UNLESS YOU KNOW WHAT YOU ARE DOING. + */ +/appearance + var/alpha + var/appearance_flags + var/blend_mode + var/color + var/desc + var/dir + var/gender + var/icon + var/icon_state + var/invisibility + var/infra_luminosity + var/list/filters + var/layer + var/luminosity + var/maptext + var/maptext_width + var/maptext_height + var/maptext_x + var/maptext_y + var/mouse_over_pointer + var/mouse_drag_pointer + var/mouse_drop_pointer + var/mouse_drop_zone + var/mouse_opacity + var/name + var/opacity + var/list/overlays + var/override + var/pixel_x + var/pixel_y + var/pixel_w + var/pixel_z + var/plane + var/render_source + var/render_target + var/suffix + var/text + var/transform + var/list/underlays + // var/vis_flags + +//! vis_flags missing even though byond ref says it's there, fuck off why is this possible + +GLOBAL_REAL_VAR(_appearance_var_list) = list( + "alpha", + "appearance_flags", + "blend_mode", + "color", + "desc", + "dir", + "gender", + "icon", + "icon_state", + "invisibility", + "infra_luminosity", + "filters", + "layer", + "luminosity", + "maptext", + "maptext_width", + "maptext_height", + "maptext_x", + "maptext_y", + "mouse_over_pointer", + "mouse_drag_pointer", + "mouse_drop_pointer", + "mouse_drop_zone", + "mouse_opacity", + "name", + "opacity", + "overlays", + "override", + "pixel_x", + "pixel_y", + "pixel_w", + "pixel_z", + "plane", + "render_source", + "render_target", + "suffix", + "text", + "transform", + "underlays" + // "vis_flags" +) + +/proc/__appearance_v_debug(appearance/A, name) + switch(name) +#define DEBUG_APPEARANCE_VAR(n) if(#n) return debug_variable(name, A.n, 0, null) + DEBUG_APPEARANCE_VAR(alpha) + DEBUG_APPEARANCE_VAR(appearance_flags) + DEBUG_APPEARANCE_VAR(blend_mode) + DEBUG_APPEARANCE_VAR(color) + DEBUG_APPEARANCE_VAR(desc) + DEBUG_APPEARANCE_VAR(dir) + DEBUG_APPEARANCE_VAR(gender) + DEBUG_APPEARANCE_VAR(icon) + DEBUG_APPEARANCE_VAR(icon_state) + DEBUG_APPEARANCE_VAR(invisibility) + DEBUG_APPEARANCE_VAR(infra_luminosity) + DEBUG_APPEARANCE_VAR(filters) + DEBUG_APPEARANCE_VAR(layer) + DEBUG_APPEARANCE_VAR(luminosity) + DEBUG_APPEARANCE_VAR(maptext) + DEBUG_APPEARANCE_VAR(maptext_width) + DEBUG_APPEARANCE_VAR(maptext_height) + DEBUG_APPEARANCE_VAR(maptext_x) + DEBUG_APPEARANCE_VAR(maptext_y) + DEBUG_APPEARANCE_VAR(mouse_over_pointer) + DEBUG_APPEARANCE_VAR(mouse_drag_pointer) + DEBUG_APPEARANCE_VAR(mouse_drop_pointer) + DEBUG_APPEARANCE_VAR(mouse_drop_zone) + DEBUG_APPEARANCE_VAR(mouse_opacity) + DEBUG_APPEARANCE_VAR(name) + DEBUG_APPEARANCE_VAR(opacity) + DEBUG_APPEARANCE_VAR(overlays) + DEBUG_APPEARANCE_VAR(override) + DEBUG_APPEARANCE_VAR(pixel_x) + DEBUG_APPEARANCE_VAR(pixel_y) + DEBUG_APPEARANCE_VAR(pixel_w) + DEBUG_APPEARANCE_VAR(pixel_z) + DEBUG_APPEARANCE_VAR(plane) + DEBUG_APPEARANCE_VAR(render_source) + DEBUG_APPEARANCE_VAR(render_target) + DEBUG_APPEARANCE_VAR(suffix) + DEBUG_APPEARANCE_VAR(text) + DEBUG_APPEARANCE_VAR(transform) + DEBUG_APPEARANCE_VAR(underlays) + // DEBUG_APPEARANCE_VAR(vis_flags) +#undef DEBUG_APPEARANCE_VAR \ No newline at end of file diff --git a/modular_chomp/code/game/atoms/atoms.dm b/modular_chomp/code/game/atoms/atoms.dm new file mode 100644 index 0000000000..1822d1c5a2 --- /dev/null +++ b/modular_chomp/code/game/atoms/atoms.dm @@ -0,0 +1,55 @@ +/atom + //! Colors + /** + * used to store the different colors on an atom + * + * its inherent color, the colored paint applied on it, special color effect etc... + */ + var/list/atom_colours + +//! ## Atom Colour Priority System +/** + * A System that gives finer control over which atom colour to colour the atom with. + * The "highest priority" one is always displayed as opposed to the default of + * "whichever was set last is displayed" + */ + +/// Adds an instance of colour_type to the atom's atom_colours list +/atom/proc/add_atom_colour(coloration, colour_priority) + if(!atom_colours || !atom_colours.len) + atom_colours = list() + atom_colours.len = COLOUR_PRIORITY_AMOUNT //four priority levels currently. + if(!coloration) + return + if(colour_priority > atom_colours.len) + return + atom_colours[colour_priority] = coloration + update_atom_colour() + +/// Removes an instance of colour_type from the atom's atom_colours list +/atom/proc/remove_atom_colour(colour_priority, coloration) + if(!atom_colours) + atom_colours = list() + atom_colours.len = COLOUR_PRIORITY_AMOUNT //four priority levels currently. + if(colour_priority > atom_colours.len) + return + if(coloration && atom_colours[colour_priority] != coloration) + return //if we don't have the expected color (for a specific priority) to remove, do nothing + atom_colours[colour_priority] = null + update_atom_colour() + +/// Resets the atom's color to null, and then sets it to the highest priority colour available +/atom/proc/update_atom_colour() + if(!atom_colours) + atom_colours = list() + atom_colours.len = COLOUR_PRIORITY_AMOUNT //four priority levels currently. + color = null + for(var/C in atom_colours) + if(islist(C)) + var/list/L = C + if(L.len) + color = L + return + else if(C) + color = C + return \ No newline at end of file diff --git a/modular_chomp/code/game/machinery/colormate.dm b/modular_chomp/code/game/machinery/colormate.dm new file mode 100644 index 0000000000..e3a3537352 --- /dev/null +++ b/modular_chomp/code/game/machinery/colormate.dm @@ -0,0 +1,300 @@ +#define COLORMATE_TINT 1 +#define COLORMATE_HSV 2 +#define COLORMATE_MATRIX 3 + +/obj/machinery/gear_painter + name = "Color Mate" + desc = "A machine to give your apparel a fresh new color!" + icon = 'icons/obj/vending_vr.dmi' + icon_state = "colormate" + density = TRUE + anchored = TRUE + var/atom/movable/inserted + var/activecolor = "#FFFFFF" + var/list/color_matrix_last + var/active_mode = COLORMATE_HSV + + var/build_hue = 0 + var/build_sat = 1 + var/build_val = 1 + + /// Allow holder'd mobs + var/allow_mobs = TRUE + /// Minimum lightness for normal mode + var/minimum_normal_lightness = 50 + /// Minimum lightness for matrix mode, tested using 4 test colors of full red, green, blue, white. + var/minimum_matrix_lightness = 75 + /// Minimum matrix tests that must pass for something to be considered a valid color (see above) + var/minimum_matrix_tests = 2 + /// Temporary messages + var/temp + + var/list/allowed_types = list( + /obj/item/clothing, + /obj/item/weapon/storage/backpack, + /obj/item/weapon/storage/belt, + /obj/item/toy + ) + +/obj/machinery/gear_painter/Initialize(mapload) + . = ..() + color_matrix_last = list( + 1, 0, 0, + 0, 1, 0, + 0, 0, 1, + 0, 0, 0, + ) + +/obj/machinery/gear_painter/update_icon() + if(panel_open) + icon_state = "colormate_open" + else if(inoperable()) + icon_state = "colormate_off" + else if(inserted) + icon_state = "colormate_active" + else + icon_state = "colormate" + +/obj/machinery/gear_painter/Destroy() + if(inserted) //please i beg you do not drop nulls + inserted.forceMove(drop_location()) + return ..() + +/obj/machinery/gear_painter/attackby(obj/item/I, mob/living/user) + if(inserted) + to_chat(user, SPAN_WARNING("The machine is already loaded.")) + return + if(default_deconstruction_screwdriver(user, I)) + return + if(default_deconstruction_crowbar(user, I)) + return + if(default_unfasten_wrench(user, I, 40)) + return + + if(is_type_in_list(I, allowed_types) && !inoperable()) + user.visible_message("[user] inserts \the [I] into the Color Mate receptable.") + user.drop_from_inventory(I) + I.forceMove(src) + inserted = I + SStgui.update_uis(src) + + else + return ..() + +/obj/machinery/gear_painter/attack_hand(mob/user) + if(..()) + return + tgui_interact(user) + +/obj/machinery/gear_painter/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "ColorMate", name) + ui.open() + +/obj/machinery/gear_painter/proc/insert_mob(mob/victim, mob/user) + if(inserted) + return + if(user) + visible_message(SPAN_WARNING("[user] stuffs [victim] into [src]!")) + inserted = victim + inserted.forceMove(src) + +/obj/machinery/gear_painter/AllowDrop() + return FALSE + +// /obj/machinery/gear_painter/handle_atom_del(atom/movable/AM) +// if(AM == inserted) +// inserted = null +// return ..() + +/obj/machinery/gear_painter/AltClick(mob/user) + . = ..() + drop_item() + +/obj/machinery/gear_painter/proc/drop_item() + if(!oview(1,src)) + return + if(!inserted) + return + to_chat(usr, SPAN_NOTICE("You remove [inserted] from [src]")) + inserted.forceMove(drop_location()) + var/mob/living/user = usr + if(istype(user)) + user.put_in_hands(inserted) + inserted = null + update_icon() + SStgui.update_uis(src) + +/obj/machinery/gear_painter/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "ColorMate", src.name) + ui.set_autoupdate(FALSE) //This might be a bit intensive, better to not update it every few ticks + ui.open() + +/obj/machinery/gear_painter/tgui_data(mob/user) + . = list() + .["activemode"] = active_mode + .["matrixcolors"] = list( + "rr" = color_matrix_last[1], + "rg" = color_matrix_last[2], + "rb" = color_matrix_last[3], + "gr" = color_matrix_last[4], + "gg" = color_matrix_last[5], + "gb" = color_matrix_last[6], + "br" = color_matrix_last[7], + "bg" = color_matrix_last[8], + "bb" = color_matrix_last[9], + "cr" = color_matrix_last[10], + "cg" = color_matrix_last[11], + "cb" = color_matrix_last[12], + ) + .["buildhue"] = build_hue + .["buildsat"] = build_sat + .["buildval"] = build_val + if(temp) + .["temp"] = temp + if(inserted) + .["item"] = list() + .["item"]["name"] = inserted.name + .["item"]["sprite"] = icon2base64(get_flat_icon(inserted,dir=SOUTH,no_anim=TRUE)) + .["item"]["preview"] = icon2base64(build_preview()) + else + .["item"] = null + +/obj/machinery/gear_painter/tgui_act(action, params) + . = ..() + if(.) + return + if(inserted) + switch(action) + if("switch_modes") + active_mode = text2num(params["mode"]) + return TRUE + if("choose_color") + var/chosen_color = input(usr, "Choose a color: ", "ColorMate colour picking", activecolor) as color|null + if(chosen_color) + activecolor = chosen_color + return TRUE + if("paint") + do_paint(usr) + temp = "Painted Successfully!" + return TRUE + if("drop") + temp = "" + drop_item() + return TRUE + if("clear") + inserted.remove_atom_colour(FIXED_COLOUR_PRIORITY) + playsound(src, 'sound/effects/spray3.ogg', 50, 1) + temp = "Cleared Successfully!" + return TRUE + if("set_matrix_color") + color_matrix_last[params["color"]] = params["value"] + return TRUE + if("set_hue") + build_hue = clamp(text2num(params["buildhue"]), 0, 360) + return TRUE + if("set_sat") + build_sat = clamp(text2num(params["buildsat"]), -10, 10) + return TRUE + if("set_val") + build_val = clamp(text2num(params["buildval"]), -10, 10) + return TRUE + + +/obj/machinery/gear_painter/proc/do_paint(mob/user) + var/color_to_use + switch(active_mode) + if(COLORMATE_TINT) + color_to_use = activecolor + if(COLORMATE_MATRIX) + color_to_use = rgb_construct_color_matrix( + text2num(color_matrix_last[1]), + text2num(color_matrix_last[2]), + text2num(color_matrix_last[3]), + text2num(color_matrix_last[4]), + text2num(color_matrix_last[5]), + text2num(color_matrix_last[6]), + text2num(color_matrix_last[7]), + text2num(color_matrix_last[8]), + text2num(color_matrix_last[9]), + text2num(color_matrix_last[10]), + text2num(color_matrix_last[11]), + text2num(color_matrix_last[12]), + ) + if(COLORMATE_HSV) + color_to_use = color_matrix_hsv(build_hue, build_sat, build_val) + color_matrix_last = color_to_use + if(!color_to_use || !check_valid_color(color_to_use, user)) + to_chat(user, SPAN_NOTICE("Invalid color.")) + return FALSE + inserted.add_atom_colour(color_to_use, FIXED_COLOUR_PRIORITY) + playsound(src, 'sound/effects/spray3.ogg', 50, 1) + return TRUE + + +/// Produces the preview image of the item, used in the UI, the way the color is not stacking is a sin. +/obj/machinery/gear_painter/proc/build_preview() + if(inserted) //sanity + var/list/cm + switch(active_mode) + if(COLORMATE_MATRIX) + cm = rgb_construct_color_matrix( + text2num(color_matrix_last[1]), + text2num(color_matrix_last[2]), + text2num(color_matrix_last[3]), + text2num(color_matrix_last[4]), + text2num(color_matrix_last[5]), + text2num(color_matrix_last[6]), + text2num(color_matrix_last[7]), + text2num(color_matrix_last[8]), + text2num(color_matrix_last[9]), + text2num(color_matrix_last[10]), + text2num(color_matrix_last[11]), + text2num(color_matrix_last[12]), + ) + if(!check_valid_color(cm, usr)) + return get_flat_icon(inserted, dir=SOUTH, no_anim=TRUE) + + if(COLORMATE_TINT) + if(!check_valid_color(activecolor, usr)) + return get_flat_icon(inserted, dir=SOUTH, no_anim=TRUE) + + if(COLORMATE_HSV) + cm = color_matrix_hsv(build_hue, build_sat, build_val) + color_matrix_last = cm + if(!check_valid_color(cm, usr)) + return get_flat_icon(inserted, dir=SOUTH, no_anim=TRUE) + + var/cur_color = inserted.color + inserted.color = null + inserted.color = (active_mode == COLORMATE_TINT ? activecolor : cm) + var/icon/preview = get_flat_icon(inserted, dir=SOUTH, no_anim=TRUE) + inserted.color = cur_color + temp = "" + + . = preview + +/obj/machinery/gear_painter/proc/check_valid_color(list/cm, mob/user) + if(!islist(cm)) // normal + var/list/HSV = ReadHSV(RGBtoHSV(cm)) + if(HSV[3] < minimum_normal_lightness) + temp = "[cm] is too dark (Minimum lightness: [minimum_normal_lightness])" + return FALSE + return TRUE + else // matrix + // We test using full red, green, blue, and white + // A predefined number of them must pass to be considered valid + var/passed = 0 +#define COLORTEST(thestring, thematrix) passed += (ReadHSV(RGBtoHSV(RGBMatrixTransform(thestring, thematrix)))[3] >= minimum_matrix_lightness) + COLORTEST("FF0000", cm) + COLORTEST("00FF00", cm) + COLORTEST("0000FF", cm) + COLORTEST("FFFFFF", cm) +#undef COLORTEST + if(passed < minimum_matrix_tests) + temp = "Matrix is too dark. (passed [passed] out of [minimum_matrix_tests] required tests. Minimum lightness: [minimum_matrix_lightness])." + return FALSE + return TRUE \ No newline at end of file diff --git a/code/game/objects/random/mapping_ch.dm b/modular_chomp/code/game/objects/random/mapping.dm similarity index 57% rename from code/game/objects/random/mapping_ch.dm rename to modular_chomp/code/game/objects/random/mapping.dm index 872f386391..0f7035833a 100644 --- a/code/game/objects/random/mapping_ch.dm +++ b/modular_chomp/code/game/objects/random/mapping.dm @@ -56,7 +56,7 @@ /obj/effect/map_helper/no_tele/area/LateInitialize() var/area/A = get_area(src) if(A) - A.flags += BLUE_SHIELDED + A.flags |= BLUE_SHIELDED for(var/turf/T in A.contents) T.block_tele = 1 qdel(src) @@ -68,4 +68,60 @@ /obj/effect/map_helper/make_indoors/LateInitialize() for(var/turf/simulated/T in Z_TURFS(z)) T.make_indoors() + qdel(src) + +/obj/effect/map_helper/make_indoors/area + name = "Area indoors maker" + desc = "I forcibly call make_indoors on every turf in this area." + +/obj/effect/map_helper/make_indoors/area/LateInitialize() + var/area/A = get_area(src) + if(A) + for(var/turf/simulated/T in A.contents) + T.make_indoors() + qdel(src) + +/obj/effect/map_helper/make_outdoors + name = "z-wide outdoors maker" + desc = "I forcibly call make_outdoors on every turf on this z-level." + +/obj/effect/map_helper/make_outdoors/LateInitialize() + for(var/turf/simulated/T in Z_TURFS(z)) + T.make_outdoors() + qdel(src) + +/obj/effect/map_helper/make_outdoors/area + name = "Area outdoors maker" + desc = "I forcibly call make_outdoors on every turf in this area." + +/obj/effect/map_helper/make_outdoors/area/LateInitialize() + var/area/A = get_area(src) + if(A) + for(var/turf/simulated/T in A.contents) + T.make_outdoors() + qdel(src) + +/* +Make this if you can figure out a way to do it for every area in that z level exclusively +/obj/effect/map_helper/no_phaseshift + name = "area-wide teleport block" + desc = "I disable the use of all hand tele's/translocators/bluespace harpoons/telescience in my area!" + +/obj/effect/map_helper/no_phaseshift/LateInitialize() + var/area/A = get_area(src) + if(A) + A.flags += BLUE_SHIELDED + for(var/turf/T in A.contents) + T.block_tele = 1 + qdel(src) +*/ + +/obj/effect/map_helper/no_phaseshift/area + name = "area-wide phaseshift blocker" + desc = "I disable the use of both shadekin and redspace phasing!" + +/obj/effect/map_helper/no_phaseshift/area/LateInitialize() + var/area/A = get_area(src) + if(A) + A.flags |= PHASE_SHIELDED qdel(src) \ No newline at end of file diff --git a/modular_chomp/code/matrices/color_matrix.dm b/modular_chomp/code/matrices/color_matrix.dm new file mode 100644 index 0000000000..be10a4452c --- /dev/null +++ b/modular_chomp/code/matrices/color_matrix.dm @@ -0,0 +1,240 @@ +///////////////////// +// COLOUR MATRICES // +///////////////////// + +/* Documenting a couple of potentially useful color matrices here to inspire ideas. +// Greyscale - indentical to saturation @ 0 +list(LUMA_R,LUMA_R,LUMA_R,0, LUMA_G,LUMA_G,LUMA_G,0, LUMA_B,LUMA_B,LUMA_B,0, 0,0,0,1, 0,0,0,0) + +// Color inversion +list(-1,0,0,0, 0,-1,0,0, 0,0,-1,0, 0,0,0,1, 1,1,1,0) + +// Sepiatone +list(0.393,0.349,0.272,0, 0.769,0.686,0.534,0, 0.189,0.168,0.131,0, 0,0,0,1, 0,0,0,0) +*/ + +/// Does nothing. +/proc/color_matrix_identity() + return list(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1, 0,0,0,0) + +/** + * Adds/subtracts overall lightness. + * 0 is identity, 1 makes everything white, -1 makes everything black. + */ +/proc/color_matrix_lightness(power) + return list(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1, power,power,power,0) + +/** + * Changes distance hues have from grey while maintaining the overall lightness. Greys are unaffected. + * 1 is identity, 0 is greyscale, >1 oversaturates colors. + */ +/proc/color_matrix_saturation(value) + var/inv = 1 - value + var/R = round(LUMA_R * inv, 0.001) + var/G = round(LUMA_G * inv, 0.001) + var/B = round(LUMA_B * inv, 0.001) + + return list(R + value,R,R,0, G,G + value,G,0, B,B,B + value,0, 0,0,0,1, 0,0,0,0) + +/** + * Exxagerates or removes colors. + */ +/proc/color_matrix_saturation_percent(percent) + if(percent == 0) + return color_matrix_identity() + percent = clamp(percent, -100, 100) + if(percent > 0) + percent *= 3 + var/x = 1 + percent / 100 + var/inv = 1 - x + var/R = LUMA_R * inv + var/G = LUMA_G * inv + var/B = LUMA_B * inv + + return list(R + x,R,R, G,G + x,G, B,B,B + x) + +/** + * Greyscale matrix. + */ +/proc/color_matrix_greyscale() + return list(LUMA_R, LUMA_R, LUMA_R, LUMA_G, LUMA_G, LUMA_G, LUMA_B, LUMA_B, LUMA_B) + +/** + * Changes distance colors have from rgb(127,127,127) grey. + * 1 is identity. 0 makes everything grey >1 blows out colors and greys. + */ +/proc/color_matrix_contrast(value) + var/add = (1 - value) / 2 + return list(value,0,0,0, 0,value,0,0, 0,0,value,0, 0,0,0,1, add,add,add,0) + +/** + * Exxagerates or removes brightness. + */ +/proc/color_matrix_contrast_percent(percent) + var/static/list/delta_index = list( + 0, 0.01, 0.02, 0.04, 0.05, 0.06, 0.07, 0.08, 0.1, 0.11, + 0.12, 0.14, 0.15, 0.16, 0.17, 0.18, 0.20, 0.21, 0.22, 0.24, + 0.25, 0.27, 0.28, 0.30, 0.32, 0.34, 0.36, 0.38, 0.40, 0.42, + 0.44, 0.46, 0.48, 0.5, 0.53, 0.56, 0.59, 0.62, 0.65, 0.68, + 0.71, 0.74, 0.77, 0.80, 0.83, 0.86, 0.89, 0.92, 0.95, 0.98, + 1.0, 1.06, 1.12, 1.18, 1.24, 1.30, 1.36, 1.42, 1.48, 1.54, + 1.60, 1.66, 1.72, 1.78, 1.84, 1.90, 1.96, 2.0, 2.12, 2.25, + 2.37, 2.50, 2.62, 2.75, 2.87, 3.0, 3.2, 3.4, 3.6, 3.8, + 4.0, 4.3, 4.7, 4.9, 5.0, 5.5, 6.0, 6.5, 6.8, 7.0, + 7.3, 7.5, 7.8, 8.0, 8.4, 8.7, 9.0, 9.4, 9.6, 9.8, + 10.0) + percent = clamp(percent, -100, 100) + if(percent == 0) + return color_matrix_identity() + + var/x = 0 + if (percent < 0) + x = 127 + percent / 100 * 127; + else + x = percent % 1 + if(x == 0) + x = delta_index[percent] + else + x = delta_index[percent] * (1-x) + delta_index[percent+1] * x//use linear interpolation for more granularity. + x = x * 127 + 127 + + var/mult = x / 127 + var/add = 0.5 * (127-x) / 255 + return list(mult,0,0, 0,mult,0, 0,0,mult, add,add,add) + +/** + * Moves all colors angle degrees around the color wheel while maintaining intensity of the color and not affecting greys. + * 0 is identity, 120 moves reds to greens, 240 moves reds to blues. + */ +// +// +/proc/color_matrix_rotate_hue(angle) + var/sin = sin(angle) + var/cos = cos(angle) + var/cos_inv_third = 0.333*(1-cos) + var/sqrt3_sin = sqrt(3)*sin + return list( + round(cos+cos_inv_third, 0.001), round(cos_inv_third+sqrt3_sin, 0.001), round(cos_inv_third-sqrt3_sin, 0.001), 0, + round(cos_inv_third-sqrt3_sin, 0.001), round(cos+cos_inv_third, 0.001), round(cos_inv_third+sqrt3_sin, 0.001), 0, + round(cos_inv_third+sqrt3_sin, 0.001), round(cos_inv_third-sqrt3_sin, 0.001), round(cos+cos_inv_third, 0.001), 0, + 0,0,0,1, + 0,0,0,0, + ) + +/** + * Moves all colors angle degrees around the color wheel while maintaining intensity of the color and not affecting whites. + * TODO: Need a version that only affects one color (ie shift red to blue but leave greens and blues alone) + */ +/proc/color_matrix_rotation(angle) + if(angle == 0) + return color_matrix_identity() + angle = clamp(angle, -180, 180) + var/cos = cos(angle) + var/sin = sin(angle) + + var/constA = 0.143 + var/constB = 0.140 + var/constC = -0.283 + return list( + LUMA_R + cos * (1-LUMA_R) + sin * -LUMA_R, LUMA_R + cos * -LUMA_R + sin * constA, LUMA_R + cos * -LUMA_R + sin * -(1-LUMA_R), + LUMA_G + cos * -LUMA_G + sin * -LUMA_G, LUMA_G + cos * (1-LUMA_G) + sin * constB, LUMA_G + cos * -LUMA_G + sin * LUMA_G, + LUMA_B + cos * -LUMA_B + sin * (1-LUMA_B), LUMA_B + cos * -LUMA_B + sin * constC, LUMA_B + cos * (1-LUMA_B) + sin * LUMA_B + ) + +/** + * These next three rotate values about one axis only. + * x is the red axis, y is the green axis, z is the blue axis. + */ +/proc/color_matrix_rotate_x(angle) + var/sinval = round(sin(angle), 0.001) + var/cosval = round(cos(angle), 0.001) + return list(1,0,0,0, 0,cosval,sinval,0, 0,-sinval,cosval,0, 0,0,0,1, 0,0,0,0) + +/proc/color_matrix_rotate_y(angle) + var/sinval = round(sin(angle), 0.001) + var/cosval = round(cos(angle), 0.001) + return list(cosval,0,-sinval,0, 0,1,0,0, sinval,0,cosval,0, 0,0,0,1, 0,0,0,0) + +/proc/color_matrix_rotate_z(angle) + var/sinval = round(sin(angle), 0.001) + var/cosval = round(cos(angle), 0.001) + return list(cosval,sinval,0,0, -sinval,cosval,0,0, 0,0,1,0, 0,0,0,1, 0,0,0,0) + +/** + * Builds a color matrix that transforms the hue, saturation, and value, all in one operation. + */ +/proc/color_matrix_hsv(hue, saturation, value) + hue = clamp(360 - hue, 0, 360) + + // This is very much a rough approximation of hueshifting. This carries some artifacting, such as negative values that simply shouldn't exist, but it does get the job done, and that's what matters. + var/cos_a = cos(hue) // These have to be inverted from 360, otherwise the hue's inverted + var/sin_a = sin(hue) + var/rot_x = cos_a + (1 - cos_a) / 3 + var/rot_y = (1 - cos_a) / 3 - 0.5774 * sin_a // 0.5774 is sqrt(1/3) + var/rot_z = (1 - cos_a) / 3 + 0.5774 * sin_a + + return list( + round((((1-saturation) * LUMA_R) + (rot_x * saturation)) * value, 0.01), round((((1-saturation) * LUMA_R) + (rot_y * saturation)) * value, 0.01), round((((1-saturation) * LUMA_R) + (rot_z * saturation)) * value, 0.01), + round((((1-saturation) * LUMA_G) + (rot_z * saturation)) * value, 0.01), round((((1-saturation) * LUMA_G) + (rot_x * saturation)) * value, 0.01), round((((1-saturation) * LUMA_G) + (rot_y * saturation)) * value, 0.01), + round((((1-saturation) * LUMA_B) + (rot_y * saturation)) * value, 0.01), round((((1-saturation) * LUMA_B) + (rot_z * saturation)) * value, 0.01), round((((1-saturation) * LUMA_B) + (rot_x * saturation)) * value, 0.01), + 0, 0, 0 + ) + +/** + * Returns a matrix addition of A with B. + */ +/proc/color_matrix_add(list/A, list/B) + if(!istype(A) || !istype(B)) + return color_matrix_identity() + if(A.len != 20 || B.len != 20) + return color_matrix_identity() + var/list/output = list() + output.len = 20 + for(var/value in 1 to 20) + output[value] = A[value] + B[value] + return output + +/** + * Returns a matrix multiplication of A with B. + */ +/proc/color_matrix_multiply(list/A, list/B) + if(!istype(A) || !istype(B)) + return color_matrix_identity() + if(A.len != 20 || B.len != 20) + return color_matrix_identity() + var/list/output = list() + output.len = 20 + var/x = 1 + var/y = 1 + var/offset = 0 + for(y in 1 to 5) + offset = (y-1)*4 + for(x in 1 to 4) + output[offset+x] = round(A[offset+1]*B[x] + A[offset+2]*B[x+4] + A[offset+3]*B[x+8] + A[offset+4]*B[x+12]+(y==5?B[x+16]:0), 0.001) + return output + +/** + * Assembles a color matrix, defaulting to identity. + */ +/proc/rgb_construct_color_matrix(rr = 1, rg, rb, gr, gg = 1, gb, br, bg, bb = 1, cr, cg, cb) + return list(rr, rg, rb, gr, gg, gb, br, bg, bb, cr, cg, cb) + +/** + * Assembles a color matrix, defaulting to identity. + */ +/proc/rgba_construct_color_matrix(rr = 1, rg, rb, ra, gr, gg = 1, gb, ga, br, bg, bb = 1, ba, ar, ag, ab, aa = 1, cr, cg, cb, ca) + return list(rr, rg, rb, ra, gr, gg, gb, ga, br, bg, bb, ba, ar, ag, ab, aa, cr, cg, cb, ca) + +/** + * Constructs a colored greyscale matrix. + * WARNING: Bad math up ahead. + */ +/proc/rgba_auto_greyscale_matrix(rgba_string) + // process rgb(a) + var/list/L1 = ReadRGB(rgba_string) + ASSERT(L1.len) + if(L1.len == 3) + return rgba_construct_color_matrix(0.39, 0.39, 0.39, 0, 0.5, 0.5, 0.5, 0, 0.11, 0.11, 0.11, 0, 0, 0, 0, 1, max(-0.5, (L1[1] - 255) / 255), max(-0.5, (L1[2] - 255) / 255), max(-0.5, (L1[3] - 255) / 255), 0) + else + // alpha + return rgba_construct_color_matrix(0.39, 0.39, 0.39, 0, 0.5, 0.5, 0.5, 0, 0.11, 0.11, 0.11, 0, 0, 0, 0, 0, max(-0.5, (L1[1] - 255) / 255), max(-0.5, (L1[2] - 255) / 255), max(-0.5, (L1[3] - 255) / 255), L1[4] / 255) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks_ch.dm b/modular_chomp/code/modules/client/preference_setup/loadout/gear_tweaks.dm similarity index 65% rename from code/modules/client/preference_setup/loadout/gear_tweaks_ch.dm rename to modular_chomp/code/modules/client/preference_setup/loadout/gear_tweaks.dm index 9a7b7b12c3..9e74ccabf1 100644 --- a/code/modules/client/preference_setup/loadout/gear_tweaks_ch.dm +++ b/modular_chomp/code/modules/client/preference_setup/loadout/gear_tweaks.dm @@ -63,3 +63,39 @@ var/datum/gear_tweak/item_tf_spawn/gear_tweak_item_tf_spawn = new() return I.spawn_mob_type = simplemob_list[metadata] I.spawn_mob_name = metadata + +GLOBAL_DATUM_INIT(gear_tweak_free_matrix_recolor, /datum/gear_tweak/matrix_recolor, new) + +/datum/gear_tweak/matrix_recolor + +/datum/gear_tweak/matrix_recolor/get_contents(var/metadata) + if(islist(metadata) && length(metadata)) + return "Matrix Recolor: [english_list(metadata)]" + return "Matrix Recolor" + +/datum/gear_tweak/matrix_recolor/get_default() + return null + +/datum/gear_tweak/matrix_recolor/get_metadata(user, metadata) + var/list/returned = color_matrix_picker(user, "Pick a color matrix for this item", "Matrix Recolor", "Ok", "Erase", "Cancel", TRUE, 10 MINUTES, islist(metadata) && metadata) + var/list/L = returned["matrix"] + if(returned["button"] == 3) + return metadata + if((returned["button"] == 2) || !islist(L) || !ISINRANGE(L.len, 9, 20)) + return list() + var/identity = TRUE + var/static/list/ones = list(1, 5, 9) + for(var/i in 1 to L.len) + if(L[i] != ((i in ones)? 1 : 0)) + identity = FALSE + break + return identity? list() : L + +/datum/gear_tweak/matrix_recolor/tweak_item(obj/item/I, metadata) + . = ..() + if(!islist(metadata) || (length(metadata) < 12)) + return + if(istype(I)) + I.add_atom_colour(metadata, FIXED_COLOUR_PRIORITY) + else + I.color = metadata // fuck off underwear \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/human.dm b/modular_chomp/code/modules/mob/living/carbon/human/human.dm index 0fcc0acc7f..e07f8c603d 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/human.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/human.dm @@ -6,7 +6,7 @@ var/list/new_fullness = ..() . = new_fullness for(var/datum/category_group/underwear/undergarment_class in global_underwear.categories) - if(new_fullness[undergarment_class.name] == 0) + if(!new_fullness[undergarment_class.name]) continue new_fullness[undergarment_class.name] = -1 * round(-1 * new_fullness[undergarment_class.name]) // Doing a ceiling the only way BYOND knows how I guess new_fullness[undergarment_class.name] = (min(2, new_fullness[undergarment_class.name]) - 2) * -1 //Complicated stuff to get it correctly aligned with the expected TRUE/FALSE diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm index 6d2082e5bf..2d374d57bc 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm @@ -14,7 +14,7 @@ icon_gib = "syndicate_gib" faction = "eclipse" - movement_cooldown = 3 + movement_cooldown = 0 status_flags = 0 @@ -104,17 +104,17 @@ //////////////////////////////// /datum/ai_holder/simple_mob/merc/eclipse threaten = FALSE - vision_range = 8 + vision_range = 7 /datum/ai_holder/simple_mob/merc/eclipse/hunter - vision_range = 10 + vision_range = 7 /datum/ai_holder/simple_mob/merc/eclipse/ranged pointblank = TRUE // They get close? Just shoot 'em! firing_lanes = TRUE // But not your buddies! /datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper - vision_range = 15 // We're a person with a long-ranged gun. + vision_range = 12 // We're a person with a long-ranged gun. /datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper/max_range(atom/movable/AM) return holder.ICheckRangedAttack(AM) ? 16 : 1 @@ -123,25 +123,26 @@ //The solar part of the faction, highly resistant to burns and stuff /mob/living/simple_mob/humanoid/eclipse/solar name = "Solar Eclipse Initiate" - desc = "A silver cladded, dangerous looking indivual." + desc = "A dangerous indivual, a gleaming orange shield surronding them, seeming protected from energy and burns." - armor = list(melee = 50, bullet = 50, laser = 95, energy = 95, bomb = 50, bio = 100, rad = 100) //Solar members are nigh immune to burns. - armor_soak = list(melee = 0, bullet = 0, laser = 5, energy = 5, bomb = 0, bio = 0, rad = 0) + armor = list(melee = -10, bullet = -10, laser = 75, energy = 75, bomb = 50, bio = 100, rad = 100) //Solar members are nigh immune to burns. + armor_soak = list(melee = 0, bullet = 0, laser = 15, energy = 15, bomb = 0, bio = 0, rad = 0) /mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle name = "Solar Eclipse Tesla Serpent" - health = 125 - maxHealth = 125 + health = 100 + maxHealth = 100 icon_state = "eclipse_tesla" icon_living = "eclipse_tesla" reload_max = 5 + movement_cooldown = 1 projectiletype = /obj/item/projectile/energy/electrode/eclipse /mob/living/simple_mob/humanoid/eclipse/solar/firemoff name = "Solar Eclipse Inferno Moth" - health = 90 - maxHealth = 90 + health = 75 + maxHealth = 75 icon_state = "eclipse_moth" icon_living = "eclipse_moth" reload_max = 10 @@ -197,23 +198,23 @@ /mob/living/simple_mob/humanoid/eclipse/solar/snipertesh name = "Solar Eclipse Sniper" - health = 75 - maxHealth = 75 - movement_cooldown = 1 + health = 50 + maxHealth = 50 + movement_cooldown = -1 icon_state = "eclipse_snipertesh" icon_living = "eclipse_snipertesh" projectiletype = /obj/item/projectile/beam/sniper/eclipse - projectile_accuracy = 75 + projectile_accuracy = 100 - reload_max = 5 - reload_time = 2.0 SECONDS + reload_max = 1 + reload_time = 1.5 SECONDS ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper - ranged_attack_delay = 0.5 SECONDS + ranged_attack_delay = 1.5 SECONDS /mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/ranged_pre_animation(atom/A) Beam(get_turf(A), icon_state = "sniper_beam", time = 1 SECONDS, maxdistance = 15) @@ -277,16 +278,17 @@ //The lunar mobs, highly resistant to brute based damage. /mob/living/simple_mob/humanoid/eclipse/lunar name = "Lunar Eclipse Initiate" - desc = "A silver cladded, dangerous looking indivual." + desc = "A dangerous indivual, a gleaming red shield surronding them, seemingly protected from blunt force trauma and ballastics." - armor = list(melee = 95, bullet = 95, laser = 50, energy = 50, bomb = 50, bio = 100, rad = 100) //Lunar members are nigh immune to burns. - armor_soak = list(melee = 15, bullet = 5, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) //15 because every melee weapon has dumb amount of AP + armor = list(melee = 75, bullet = 75, laser = -10, energy = -10, bomb = 50, bio = 100, rad = 100) //Lunar members are nigh immune to burns. + armor_soak = list(melee = 15, bullet = 15, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) //15 because every melee weapon has dumb amount of AP /mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle //Bouncing bullet extreme name = "Lunar Eclipse Silver Serpent" - health = 125 - maxHealth = 125 - reload_max = 15 + health = 100 + maxHealth = 100 + reload_max = 6 + movement_cooldown = 1 icon_state = "eclipse_silver" icon_living = "eclipse_silver" @@ -318,8 +320,8 @@ /mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner //wuff with shotgun name = "Lunar Eclipse Shotgunner" - health = 90 - maxHealth = 90 + health = 75 + maxHealth = 75 reload_max = 2 icon_state = "eclipse_shotwuff" @@ -331,10 +333,11 @@ /mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm //tesh got a gun name = "Lunar Eclipse Judge" - health = 75 - maxHealth = 75 + health = 50 + maxHealth = 50 icon_state = "eclipse_shottesh" icon_living = "eclipse_shottesh" + movement_cooldown = -1 projectiletype = /obj/item/projectile/bullet/shotgun @@ -346,8 +349,8 @@ /mob/living/simple_mob/humanoid/eclipse/lunar/ravanger //Tanky boi. Very deadly melee name = "Lunar Eclipse Ravanger" - health = 150 - maxHealth = 150 + health = 125 + maxHealth = 125 icon_state = "eclipse_ravanger" icon_living = "eclipse_ravanger" @@ -366,10 +369,10 @@ /obj/item/projectile/energy/blob/moth - splatter = TRUE damage = 20 armor_penetration = 25 - my_chems = list("fuel") + my_chems = list("fuel", "mold") + flammability = 0.25 modifier_type_to_apply = /datum/modifier/fire modifier_duration = 6 SECONDS color = "#38b9ff" @@ -392,6 +395,7 @@ /obj/item/projectile/beam/sniper/eclipse armor_penetration = 50 + damage = 30 /obj/item/projectile/energy/declone/burn damage = 20 @@ -405,11 +409,11 @@ /mob/living/simple_mob/humanoid/eclipse/solar/hellhound name = "Solar Eclipse Hound" - health = 200 - maxHealth = 200 + health = 150 + maxHealth = 150 ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax projectiletype = /obj/item/projectile/energy/flash - movement_cooldown = 1 + movement_cooldown = -1 melee_damage_lower = 20 melee_damage_upper = 35 attack_armor_pen = 20 @@ -418,25 +422,25 @@ icon_living = "eclipse_hound" size_multiplier = 1.25 var/poison_chance = 100 - var/poison_per_bite = 8 + var/poison_per_bite = 4 var/poison_type = "stoxin" /mob/living/simple_mob/humanoid/eclipse/lunar/wheel - name = "Lunar Eclipse Wheel" - health = 200 - maxHealth = 200 + name = "Lunar Eclipse Armadillo" + health = 150 + maxHealth = 150 melee_damage_lower = 15 melee_damage_upper = 25 attack_armor_pen = 50 - reload_max = 3 + reload_max = 1 icon_state = "eclipse_wheel" icon_living = "eclipse_wheel" ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax projectiletype = /obj/item/projectile/beam/energy_net - movement_cooldown = 2 + movement_cooldown = -0.5 - var/cloaked_alpha = 50 // Lower = Harder to see. + var/cloaked_alpha = 60 // Lower = Harder to see. var/cloak_cooldown = 5 SECONDS // Amount of time needed to re-cloak after losing it. var/last_uncloak = 0 // world.time @@ -539,21 +543,22 @@ /mob/living/simple_mob/humanoid/eclipse/lunar/pummler - name = "Lunar Eclipse Punnler" + name = "Lunar Eclipse Pummeler" projectiletype = /obj/item/projectile/bullet/shotgun/ion/eclipse ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax - melee_damage_lower = 20 + melee_damage_lower = 10 melee_damage_upper = 30 attack_armor_pen = 30 - movement_cooldown = 1 + movement_cooldown = 0 icon_state = "eclipse_pummler" icon_living = "eclipse_pummler" - reload_max = 25 + reload_max = 5 size_multiplier = 1.5 var/poison_per_bite = 5 var/poison_type = "shredding_nanites" - var/poison_chance = 50 - var/shock_chance = 30 + var/poison_chance = 10 + var/shock_chance = 60 + base_attack_cooldown = 6 /mob/living/simple_mob/humanoid/eclipse/lunar/pummler/apply_melee_effects(var/atom/A) if(isliving(A)) diff --git a/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm index 3acd913e25..736b6255d1 100644 --- a/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm +++ b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm @@ -159,6 +159,7 @@ belly_data["digest_oxy"] = B.digest_oxy belly_data["can_taste"] = B.can_taste + belly_data["is_feedable"] = B.is_feedable belly_data["contaminates"] = B.contaminates belly_data["contamination_flavor"] = B.contamination_flavor belly_data["contamination_color"] = B.contamination_color diff --git a/modular_chomp/icons/system/blank_32x32.dmi b/modular_chomp/icons/system/blank_32x32.dmi new file mode 100644 index 0000000000..4f5867e07e Binary files /dev/null and b/modular_chomp/icons/system/blank_32x32.dmi differ diff --git a/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm b/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm index 04c3ba32a9..b5d6587480 100644 --- a/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm +++ b/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm @@ -1,359 +1,3771 @@ -"aS" = (/obj/item/weapon/gun/energy/sizegun,/obj/item/device/bodysnatcher,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/clothing/accessory/collar,/obj/item/weapon/tape_roll,/obj/item/device/perfect_tele/one_beacon,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/selectable_item/chemistrykit,/obj/item/selectable_item/chemistrykit,/obj/item/selectable_item/chemistrykit,/obj/item/capture_crystal,/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"aY" = (/obj/structure/table/reinforced,/obj/random/drinksoft,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"bj" = (/obj/machinery/vending/giftvendor,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"bl" = (/obj/machinery/atm{pixel_x = 30},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"bm" = (/obj/structure/bed/chair/oldsofa{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"bo" = (/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"br" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"bB" = (/obj/machinery/atm{pixel_x = 30},/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"bH" = (/obj/structure/bookcase,/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"bJ" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"bN" = (/obj/structure/toilet{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/obj/item/toy/plushie/suswhite,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"bU" = (/obj/machinery/newscaster{pixel_y = 30},/obj/structure/bed/chair/office,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"ci" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"cB" = (/obj/structure/bookcase,/obj/item/weapon/book/codex/lore/robutt,/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,/obj/item/weapon/book/bundle/custom_library/fiction/silence,/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"cK" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"cL" = (/obj/machinery/button/remote/airlock{id = "awaydorm_restaurationbar1"; name = "Bolt Control"; pixel_y = -29; specialfunctions = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"cT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/turf/space,/area/survivalpod/superpose/RestaurationBar) -"da" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"ds" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"dN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"dP" = (/obj/machinery/honey_extractor,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"ec" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/item/weapon/material/ashtray/glass,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/fancy/cigarettes/professionals,/obj/item/weapon/storage/fancy/cigar/havana,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"ei" = (/obj/structure/table/gamblingtable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"el" = (/obj/machinery/light{layer = 3},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"ep" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"ex" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"eB" = (/obj/machinery/space_heater,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"eD" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"eE" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/item/weapon/flame/candle,/obj/item/device/taperecorder,/obj/random/instrument,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"eF" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/item/weapon/cane,/obj/item/device/radio/subspace{desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!"; name = "Bar subspace radio"; pixel_y = 5},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"eK" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"eN" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"fa" = (/obj/machinery/appliance/cooker/oven,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"fc" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"ff" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"fi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"fq" = (/obj/machinery/light{layer = 3},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"ft" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/whetstone,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"fZ" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"go" = (/obj/machinery/chem_master/condimaster,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"gC" = (/obj/machinery/firealarm/alarms_hidden,/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"gG" = (/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"hk" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"hr" = (/obj/structure/table/bench/glass,/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/machinery/light{layer = 3},/obj/structure/flora/pottedplant/thinbush{pixel_y = 10},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"hu" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"hw" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/royal,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"hE" = (/obj/random/pottedplant,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"hI" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"ii" = (/obj/structure/simple_door/wood,/obj/structure/simple_door/wood,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"ik" = (/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{health = 1e+006},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"iy" = (/obj/structure/window/basic{dir = 1},/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"iz" = (/obj/structure/table/marble,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"jv" = (/turf/simulated/wall/r_wall,/area/survivalpod/superpose/RestaurationBar) -"jL" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"jV" = (/obj/effect/floor_decal/corner/lime/border,/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"ke" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"kz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"kD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"ld" = (/obj/structure/bed,/obj/item/weapon/bedsheet/purple,/obj/structure/curtain/open/bed,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"ll" = (/obj/effect/floor_decal/spline/fancy{dir = 1; icon_state = "spline_fancy_corner"},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"ln" = (/obj/machinery/smartfridge/produce,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = null},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"lo" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"ls" = (/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"lN" = (/obj/machinery/light{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/window/eastleft,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"lT" = (/obj/structure/table/gamblingtable,/obj/item/weapon/pen,/obj/item/weapon/paper_bin,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"lZ" = (/obj/machinery/autolathe{hacked = 1},/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"mp" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"mx" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"mz" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"mU" = (/obj/machinery/door/airlock{id_tag = "awaydorm_restaurationbar1"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"mZ" = (/obj/structure/casino_table/roulette_table,/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"nj" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"nm" = (/obj/machinery/door/window/eastleft,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"nz" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"nB" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/microwave,/obj/effect/map_effect/perma_light,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"nJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"og" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/structure/prop/statue/pillar/dark,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"ow" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"oQ" = (/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"po" = (/obj/structure/casino_table/blackjack_m,/obj/item/weapon/deck/cards,/obj/machinery/light/floortube,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"pv" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"pB" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"pF" = (/obj/structure/flora/ausbushes/ppflowers,/mob/living/simple_mob/vore/alienanimals/teppi/baby,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"pW" = (/obj/machinery/computer/arcade{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"qp" = (/obj/machinery/space_heater,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"qt" = (/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"qv" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"qx" = (/obj/structure/table/fancyblack,/obj/random/mug,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"qy" = (/obj/structure/bed,/obj/item/weapon/bedsheet/blue,/obj/structure/curtain/open/bed,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"qD" = (/obj/machinery/space_heater,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"qO" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/structure/sink{dir = 8; pixel_x = -12},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"qV" = (/obj/structure/flora/ausbushes/stalkybush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"qZ" = (/obj/machinery/biogenerator,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"rd" = (/obj/structure/table/reinforced,/obj/item/weapon/deskbell,/turf/simulated/floor/wood/broken,/area/survivalpod/superpose/RestaurationBar) -"rg" = (/obj/structure/table/rack/shelf,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/makeover,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"rh" = (/obj/machinery/replicator/clothing,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"rO" = (/obj/machinery/vending/dinnerware{req_log_access = null},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"rS" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"si" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"sj" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"sl" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"sy" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"sA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"sC" = (/obj/machinery/appliance/cooker/grill,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"sI" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"sJ" = (/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"sP" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/meta/metapint,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"sY" = (/obj/machinery/vending/hydronutrients{req_log_access = null},/obj/machinery/light{dir = 1; layer = 3},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"sZ" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"tc" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"tj" = (/obj/item/weapon/deck/cards,/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"tz" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"tA" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"tC" = (/obj/machinery/vending/snack{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"tQ" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"uo" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"uu" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"uw" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"uJ" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/rifle,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/black,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"uM" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"uO" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"uX" = (/obj/machinery/appliance/mixer/cereal,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"vf" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"vq" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/dicecup/loaded,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"vs" = (/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"vz" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"vB" = (/obj/structure/window/basic,/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 16},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"vG" = (/obj/machinery/media/jukebox/hacked,/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"vM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"wg" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"wm" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/module/id_auth,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/power_control,/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/mass_driver,/obj/item/weapon/circuitboard/jukebox,/obj/item/weapon/circuitboard/intercom,/obj/item/weapon/circuitboard/firealarm,/obj/item/weapon/circuitboard/airalarm,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/backpack/dufflebag/eng,/obj/item/device/geiger,/obj/item/device/mapping_unit,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"wp" = (/obj/machinery/light{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 36; pixel_y = 3},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"xj" = (/obj/machinery/button/remote/airlock{id = "awaydorm_restaurationbar"; name = "Bolt Control"; pixel_y = 30; specialfunctions = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"xn" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"xo" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"xq" = (/obj/structure/table/fancyblack,/obj/item/trash/plate,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"xt" = (/obj/structure/table/rack,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"xG" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"xK" = (/obj/structure/toilet{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"xM" = (/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"xN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"xO" = (/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"yv" = (/obj/structure/table/marble,/obj/machinery/light{layer = 3},/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/item/weapon/reagent_containers/chem_disp_cartridge/gelatin,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"yL" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"yS" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"yT" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/random/drinkbottle,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"zA" = (/obj/machinery/vending/boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"zG" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"zN" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Ae" = (/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"Af" = (/obj/structure/table/marble,/obj/item/weapon/material/ashtray/glass,/obj/machinery/recharger,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"Aq" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"As" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "gamble_restaurationbar_ch"},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"AG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"AJ" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"AR" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/holder,/obj/random/drinksoft,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"AT" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"AW" = (/obj/machinery/vending/hydroseeds{req_log_access = null},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Bl" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"Br" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"BC" = (/obj/structure/closet/crate,/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/turcarpet,/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/algae{amount = 50},/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/lead{amount = 30},/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/resin{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"BK" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"BX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/machinery/light{dir = 4},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"Ci" = (/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"Cj" = (/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"CW" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Dc" = (/obj/structure/table/fancyblack,/obj/item/weapon/newspaper,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Di" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/freezer/kitchen{req_access = null},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Do" = (/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"DF" = (/obj/structure/table/marble,/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"DU" = (/obj/structure/bed/chair/oldsofa{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"DV" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Ee" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Eh" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Ez" = (/obj/machinery/firealarm/alarms_hidden{dir = 8},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"EA" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"EQ" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"ET" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"Ff" = (/obj/structure/table/standard,/obj/random/donkpocketbox,/obj/item/device/starcaster_news,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"Fi" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/table/marble,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Fk" = (/obj/machinery/appliance/mixer/candy,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Fl" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"FE" = (/obj/machinery/vending/cola{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"FI" = (/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"FO" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/item/weapon/pen,/obj/item/device/taperecorder,/obj/item/weapon/paper_bin,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"FV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"FW" = (/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Gj" = (/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"Gx" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"GB" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/pancakes,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"GC" = (/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"GD" = (/obj/structure/window/reinforced{health = 1e+006},/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"GI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"GN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = null},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"GU" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"HC" = (/obj/structure/closet/crate,/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/green,/obj/item/stack/cable_coil/blue,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/toolbox/syndicate/powertools{pixel_y = 9},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"HH" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"HK" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"HL" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/effect/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"HQ" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"HV" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Ix" = (/obj/structure/bed/chair/oldsofa{dir = 8},/obj/machinery/light{dir = 4},/obj/item/toy/plushie/blue_fox,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"IB" = (/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"II" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"IO" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/obj/machinery/light{dir = 4},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"IR" = (/obj/effect/map_effect/perma_light,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Jb" = (/obj/structure/bed/chair/oldsofa/corner{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Jf" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"Jg" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Jj" = (/obj/machinery/light{layer = 3},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"Jo" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"JH" = (/obj/machinery/computer/arcade{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"JQ" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/machinery/smartfridge/drying_rack,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"JS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"JU" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/random/mug,/obj/item/weapon/reagent_containers/food/snacks/croissant,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Kc" = (/turf/template_noop,/area/template_noop) -"Kh" = (/obj/structure/casino_table/blackjack_l,/obj/random/contraband,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Kl" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Km" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/weapon/reagent_containers/chem_disp_cartridge/nothing,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"Ko" = (/obj/structure/table/marble,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/multi,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"Kw" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"KP" = (/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"KR" = (/mob/living/simple_mob/vore/alienanimals/teppi/baby,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"KS" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"La" = (/obj/machinery/door/airlock{id_tag = "awaydorm_restaurationbar"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Lc" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Lk" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Lo" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Ly" = (/obj/effect/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"LA" = (/obj/structure/bed/chair/oldsofa/corner{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"LE" = (/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"LG" = (/obj/machinery/beehive,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"LH" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"LL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/polarized{id = "gamble_restaurationbar_ch"},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"LR" = (/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"LV" = (/obj/machinery/newscaster,/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"LY" = (/obj/structure/table/rack/shelf,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/makeover,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"Mb" = (/obj/machinery/button/windowtint{id = "gamble_restaurationbar_ch"; pixel_x = -12; pixel_y = -24},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Mi" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"MB" = (/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"MF" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = null},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"MM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"MY" = (/obj/structure/table/standard,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"Nb" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/device/communicator,/obj/item/weapon/lipstick/random,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Nd" = (/obj/machinery/door/airlock/maintenance/common{name = "Restricted Area"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Ne" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Nj" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Nn" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"NE" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"NR" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Oj" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"Ok" = (/obj/effect/floor_decal/corner/lime/border,/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Ov" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"OA" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"OI" = (/obj/structure/sink/puddle,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"OP" = (/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"OR" = (/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Ps" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"PE" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"PH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"PJ" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"PO" = (/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"Qa" = (/obj/structure/sign/directions/exit,/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"Qh" = (/obj/structure/table/fancyblack,/obj/random/drinksoft,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Qm" = (/obj/effect/floor_decal/spline/fancy{dir = 4; icon_state = "spline_fancy_corner"},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"QD" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"QK" = (/obj/machinery/light{dir = 4},/obj/machinery/button/holosign{id = "baropen_restaurationbar_ch"; name = "Open Sign"; pixel_x = 36; pixel_y = 6},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"QQ" = (/obj/structure/bed/chair/oldsofa/right,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"QS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"QX" = (/obj/structure/bed/chair/oldsofa/left{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Rn" = (/obj/structure/bed/chair/oldsofa/corner,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Rt" = (/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"Rx" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Sj" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/weapon/reagent_containers/food/snacks/berrymuffin,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Su" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"Sz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"SJ" = (/obj/machinery/holosign/bar{id = "baropen_restauration_ch"},/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"SS" = (/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Tf" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar) -"Ti" = (/obj/machinery/holoposter,/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar) -"Tn" = (/obj/structure/simple_door/wood,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"Tu" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"TE" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"TT" = (/obj/machinery/atm{pixel_y = -30},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"TW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Uq" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"UH" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/trash/plate,/obj/item/weapon/reagent_containers/food/snacks/hotdog,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"UV" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"Vf" = (/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"Vg" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"Vh" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar) -"Vy" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"VD" = (/obj/structure/table/standard,/obj/item/device/starcaster_news,/obj/item/weapon/reagent_containers/food/snacks/meatsteak,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"VF" = (/obj/machinery/door/window/westleft{name = "Bar"},/obj/machinery/power/apc/alarms_hidden,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"VJ" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"VK" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"VO" = (/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/bee_smoker,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/bee_pack,/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/light{layer = 3},/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar) -"VQ" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"VT" = (/obj/structure/flora/ausbushes/palebush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"Wc" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/map_effect/perma_light,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Wt" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/holder,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"WA" = (/obj/machinery/computer/arcade/clawmachine,/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"WV" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"WZ" = (/obj/effect/floor_decal/spline/fancy,/obj/structure/prop/statue/pillar/dark,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"Xp" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/meta,/obj/item/weapon/storage/box/glasses/meta,/obj/item/weapon/storage/box/glasses/coffeemug{pixel_x = -6; pixel_y = 12},/obj/item/weapon/storage/box/glasses/coffeecup{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"Xs" = (/obj/machinery/light{dir = 8},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar) -"Xt" = (/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"XA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"XI" = (/obj/structure/window/reinforced{health = 1e+006},/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"XS" = (/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Yc" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1; dispense_reagents = list("iron","radium","lemon_lime","sugar","orangejuice","limejuice","sodawater","tonic","beer","kahlua","whiskey","redwine","whitewine","vodka","cider","gin","rum","tequilla","vermouth","cognac","ale","mead","bitters")},/obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar) -"Yf" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/communicator,/obj/item/trash/plate,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar) -"Yg" = (/obj/structure/table/marble,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar) -"Ym" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/secure_closet/hydroponics{req_access = null},/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"Yn" = (/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Yq" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar) -"YX" = (/obj/item/weapon/gun/energy/sizegun,/obj/item/device/bodysnatcher,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/clothing/accessory/collar,/obj/item/weapon/tape_roll,/obj/item/device/perfect_tele/one_beacon,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/selectable_item/chemistrykit,/obj/item/selectable_item/chemistrykit,/obj/item/selectable_item/chemistrykit,/obj/item/selectable_item/chemistrykit,/obj/item/capture_crystal,/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar) -"Zb" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"Zo" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar) -"Zz" = (/obj/structure/bed/chair/oldsofa,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar) -"ZL" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) -"ZR" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"ZS" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar) -"ZU" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aS" = ( +/obj/item/weapon/gun/energy/sizegun, +/obj/item/device/bodysnatcher, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/handcuffs/legcuffs/fuzzy, +/obj/item/clothing/accessory/collar, +/obj/item/weapon/tape_roll, +/obj/item/device/perfect_tele/one_beacon, +/obj/item/weapon/disk/nifsoft/compliance, +/obj/item/selectable_item/chemistrykit, +/obj/item/selectable_item/chemistrykit, +/obj/item/selectable_item/chemistrykit, +/obj/item/capture_crystal, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"aY" = ( +/obj/structure/table/reinforced, +/obj/random/drinksoft, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"bj" = ( +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"bl" = ( +/obj/machinery/atm{ + pixel_x = 30 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"bm" = ( +/obj/structure/bed/chair/oldsofa{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"bo" = ( +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"br" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"bB" = ( +/obj/machinery/atm{ + pixel_x = 30 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"bH" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"bJ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -13 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"bN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/item/toy/plushie/suswhite, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"bU" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/bed/chair/office, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"ci" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"cB" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/codex/lore/robutt, +/obj/item/weapon/book/bundle/custom_library/fiction/metalglen, +/obj/item/weapon/book/bundle/custom_library/fiction/silence, +/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat, +/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"cK" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"cL" = ( +/obj/machinery/button/remote/airlock{ + id = "awaydorm_restaurationbar1"; + name = "Bolt Control"; + pixel_y = -29; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"cT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"da" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"ds" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"dN" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"dP" = ( +/obj/machinery/honey_extractor, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"ec" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/obj/item/weapon/material/ashtray/glass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/fancy/cigarettes/professionals, +/obj/item/weapon/storage/fancy/cigar/havana, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"ei" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"el" = ( +/obj/machinery/light{ + layer = 3 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"ep" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"ex" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"eB" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"eD" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"eE" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/item/weapon/flame/candle, +/obj/item/device/taperecorder, +/obj/random/instrument, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"eF" = ( +/obj/structure/table/fancyblack, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/item/weapon/cane, +/obj/item/device/radio/subspace{ + desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!"; + name = "Bar subspace radio"; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"eK" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"eN" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"fa" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"fc" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"ff" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"fi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"fq" = ( +/obj/machinery/light{ + layer = 3 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"ft" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/whetstone, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"fZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"go" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"gC" = ( +/obj/machinery/firealarm/alarms_hidden, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"gG" = ( +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"hk" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"hr" = ( +/obj/structure/table/bench/glass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/light{ + layer = 3 + }, +/obj/structure/flora/pottedplant/thinbush{ + pixel_y = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"hu" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"hw" = ( +/obj/structure/closet/walllocker_double/north{ + name = "Survival Cabinet" + }, +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/phasegun/pistol, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/device/starcaster_news, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/item/weapon/flame/lighter/zippo/royal, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/clothing/accessory/permit/gun, +/obj/item/device/binoculars, +/obj/item/bodybag/cryobag, +/obj/item/weapon/cell/device/hyper, +/obj/item/sticky_pad/random, +/obj/item/weapon/card/id/external, +/obj/item/weapon/pen/multi, +/obj/item/weapon/storage/box/khcrystal, +/obj/item/weapon/storage/box/survival/comp, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting, +/obj/item/stack/nanopaste, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"hE" = ( +/obj/random/pottedplant, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"hI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"ii" = ( +/obj/structure/simple_door/wood, +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"ik" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"iy" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"iz" = ( +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"jv" = ( +/turf/simulated/wall/r_wall, +/area/survivalpod/superpose/RestaurationBar) +"jL" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"jV" = ( +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + layer = 3 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"ke" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"kz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"kD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"ld" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/purple, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"ll" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1; + icon_state = "spline_fancy_corner" + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"ln" = ( +/obj/machinery/smartfridge/produce, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"lo" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"ls" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"lN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/door/window/eastleft, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"lT" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"lZ" = ( +/obj/machinery/autolathe{ + hacked = 1 + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"mp" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"mx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"mz" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -34 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"mU" = ( +/obj/machinery/door/airlock{ + id_tag = "awaydorm_restaurationbar1" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"mZ" = ( +/obj/structure/casino_table/roulette_table, +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"nj" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"nm" = ( +/obj/machinery/door/window/eastleft, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"nz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"nB" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/microwave, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"nJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"og" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/prop/statue/pillar/dark, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"ow" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"oQ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"po" = ( +/obj/structure/casino_table/blackjack_m, +/obj/item/weapon/deck/cards, +/obj/machinery/light/floortube, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"pv" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"pB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"pF" = ( +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"pW" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"qp" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"qt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"qv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"qx" = ( +/obj/structure/table/fancyblack, +/obj/random/mug, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"qy" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/blue, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"qD" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"qO" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"qV" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"qZ" = ( +/obj/machinery/biogenerator, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"rd" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/deskbell, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/RestaurationBar) +"rg" = ( +/obj/structure/table/rack/shelf, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/item/weapon/makeover, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"rh" = ( +/obj/machinery/replicator/clothing, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"rO" = ( +/obj/machinery/vending/dinnerware{ + req_log_access = null + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"rS" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"si" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"sj" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"sl" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"sy" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"sA" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"sC" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"sI" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"sJ" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"sP" = ( +/obj/structure/table/marble, +/obj/item/weapon/storage/box/glasses/meta/metapint, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"sY" = ( +/obj/machinery/vending/hydronutrients{ + req_log_access = null + }, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"sZ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"tc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"tj" = ( +/obj/item/weapon/deck/cards, +/obj/structure/table/fancyblack, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"tz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"tA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"tC" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"tQ" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"uo" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"uu" = ( +/obj/structure/bed/chair/oldsofa/left{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"uw" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"uJ" = ( +/obj/structure/closet/walllocker_double/north{ + name = "Survival Cabinet" + }, +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/phasegun/rifle, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/device/starcaster_news, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/item/weapon/flame/lighter/zippo/black, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/clothing/accessory/permit/gun, +/obj/item/device/binoculars, +/obj/item/bodybag/cryobag, +/obj/item/weapon/cell/device/hyper, +/obj/item/sticky_pad/random, +/obj/item/weapon/card/id/external, +/obj/item/weapon/pen/multi, +/obj/item/weapon/storage/box/khcrystal, +/obj/item/weapon/storage/box/survival/comp, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting, +/obj/item/stack/nanopaste, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"uM" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"uO" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"uX" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"vf" = ( +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"vq" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/dicecup/loaded, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"vs" = ( +/obj/effect/floor_decal/spline/fancy, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"vz" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"vB" = ( +/obj/structure/window/basic, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"vG" = ( +/obj/machinery/media/jukebox/hacked, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"vM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"wg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"wm" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/module/id_auth, +/obj/item/weapon/module/card_reader, +/obj/item/weapon/module/cell_power, +/obj/item/weapon/module/power_control, +/obj/item/weapon/circuitboard/microwave, +/obj/item/weapon/circuitboard/mass_driver, +/obj/item/weapon/circuitboard/jukebox, +/obj/item/weapon/circuitboard/intercom, +/obj/item/weapon/circuitboard/firealarm, +/obj/item/weapon/circuitboard/airalarm, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/tape_roll, +/obj/item/weapon/tape_roll, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/belt/utility/full/multitool, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/backpack/dufflebag/eng, +/obj/item/device/geiger, +/obj/item/device/mapping_unit, +/obj/item/clothing/under/waiter, +/obj/item/clothing/under/waiter, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"wp" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 36; + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"xj" = ( +/obj/machinery/button/remote/airlock{ + id = "awaydorm_restaurationbar"; + name = "Bolt Control"; + pixel_y = 30; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"xn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"xo" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"xq" = ( +/obj/structure/table/fancyblack, +/obj/item/trash/plate, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"xt" = ( +/obj/structure/table/rack, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"xG" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"xK" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"xM" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"xN" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"xO" = ( +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"yv" = ( +/obj/structure/table/marble, +/obj/machinery/light{ + layer = 3 + }, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/gelatin, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"yL" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"yS" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"yT" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"zA" = ( +/obj/machinery/vending/boozeomat{ + req_access = null; + req_log_access = null + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"zG" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"zN" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Ae" = ( +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"Af" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/recharger, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"Aq" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"As" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "gamble_restaurationbar_ch" + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"AG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"AJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"AR" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/holder, +/obj/random/drinksoft, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"AT" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"AW" = ( +/obj/machinery/vending/hydroseeds{ + req_log_access = null + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Bl" = ( +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"Br" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"BC" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/cardboard{ + amount = 50 + }, +/obj/item/stack/material/cardboard{ + amount = 50 + }, +/obj/item/stack/material/cardboard{ + amount = 50 + }, +/obj/item/stack/material/cardboard{ + amount = 50 + }, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/turcarpet, +/obj/item/stack/material/wood{ + amount = 50; + color = "#824B28" + }, +/obj/item/stack/material/wood{ + amount = 50; + color = "#824B28" + }, +/obj/item/stack/material/wood/hard{ + amount = 50 + }, +/obj/item/stack/material/wood/hard{ + amount = 50 + }, +/obj/item/stack/material/wood/sif{ + amount = 50 + }, +/obj/item/stack/material/wood/sif{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/obj/item/stack/material/algae{ + amount = 50 + }, +/obj/item/stack/material/sandstone, +/obj/item/stack/material/sandstone, +/obj/item/stack/material/sandstone, +/obj/item/stack/material/lead{ + amount = 30 + }, +/obj/item/stack/material/plasteel{ + amount = 30; + pixel_y = 5 + }, +/obj/item/stack/material/resin{ + amount = 50 + }, +/obj/item/stack/material/smolebricks{ + amount = 50 + }, +/obj/item/stack/material/smolebricks{ + amount = 50 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"BK" = ( +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"BX" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"Ci" = ( +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"Cj" = ( +/obj/structure/table/rack, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"CW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Dc" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/newspaper, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Di" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Do" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"DF" = ( +/obj/structure/table/marble, +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"DU" = ( +/obj/structure/bed/chair/oldsofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"DV" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Ee" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Eh" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Ez" = ( +/obj/machinery/firealarm/alarms_hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"EA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"EQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"ET" = ( +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"Ff" = ( +/obj/structure/table/standard, +/obj/random/donkpocketbox, +/obj/item/device/starcaster_news, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"Fi" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Fk" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Fl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"FE" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"FI" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"FO" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/item/weapon/pen, +/obj/item/device/taperecorder, +/obj/item/weapon/paper_bin, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"FV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"FW" = ( +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Gj" = ( +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"Gx" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"GB" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/pancakes, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"GC" = ( +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"GD" = ( +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"GI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"GN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"GU" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"HC" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/blue, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/toolbox/syndicate/powertools{ + pixel_y = 9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/storage/belt/utility/full/multitool, +/obj/item/weapon/storage/belt/utility/full/multitool, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"HH" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"HK" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"HL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"HQ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"HV" = ( +/obj/effect/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Ix" = ( +/obj/structure/bed/chair/oldsofa{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/toy/plushie/blue_fox, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"IB" = ( +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"II" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"IO" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"IR" = ( +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Jb" = ( +/obj/structure/bed/chair/oldsofa/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Jf" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"Jg" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Jj" = ( +/obj/machinery/light{ + layer = 3 + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"Jo" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"JH" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"JQ" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"JS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"JU" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/random/mug, +/obj/item/weapon/reagent_containers/food/snacks/croissant, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Kc" = ( +/turf/template_noop, +/area/template_noop) +"Kh" = ( +/obj/structure/casino_table/blackjack_l, +/obj/random/contraband, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Kl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Km" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/nothing, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"Ko" = ( +/obj/structure/table/marble, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"Kw" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"KP" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant/tall, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"KR" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"KS" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"La" = ( +/obj/machinery/door/airlock{ + id_tag = "awaydorm_restaurationbar" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Lc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Lk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Lo" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Ly" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"LA" = ( +/obj/structure/bed/chair/oldsofa/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"LE" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"LG" = ( +/obj/machinery/beehive, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"LH" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"LL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/polarized{ + id = "gamble_restaurationbar_ch" + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"LR" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"LV" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"LY" = ( +/obj/structure/table/rack/shelf, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/item/weapon/makeover, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"Mb" = ( +/obj/machinery/button/windowtint{ + id = "gamble_restaurationbar_ch"; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Mi" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"MB" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"MF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"MM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"MY" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/random/soap, +/obj/random/soap, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"Nb" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/device/communicator, +/obj/item/weapon/lipstick/random, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Nd" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Restricted Area" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Ne" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Nj" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Nn" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"NE" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"NR" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Oj" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"Ok" = ( +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Ov" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"OA" = ( +/obj/structure/table/marble, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"OI" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"OP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/melee/umbrella/random, +/obj/structure/table/rack, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"OR" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Ps" = ( +/obj/structure/bed/chair/oldsofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"PE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"PH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"PJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"PO" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"Qa" = ( +/obj/structure/sign/directions/exit, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"Qh" = ( +/obj/structure/table/fancyblack, +/obj/random/drinksoft, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Qm" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4; + icon_state = "spline_fancy_corner" + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"QD" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"QK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/holosign{ + id = "baropen_restaurationbar_ch"; + name = "Open Sign"; + pixel_x = 36; + pixel_y = 6 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"QQ" = ( +/obj/structure/bed/chair/oldsofa/right, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"QS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"QX" = ( +/obj/structure/bed/chair/oldsofa/left{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Rn" = ( +/obj/structure/bed/chair/oldsofa/corner, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Rt" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Rx" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Sj" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/snacks/berrymuffin, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Su" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"Sz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"SJ" = ( +/obj/machinery/holosign/bar{ + id = "baropen_restauration_ch" + }, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"SS" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Tf" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/RestaurationBar) +"Ti" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/survivalpod/superpose/RestaurationBar) +"Tn" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"Tu" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"TE" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"TT" = ( +/obj/machinery/atm{ + pixel_y = -30 + }, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"TW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Uq" = ( +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"UH" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/item/weapon/reagent_containers/food/snacks/hotdog, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"UV" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Vf" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"Vg" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"Vh" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/survivalpod/superpose/RestaurationBar) +"Vy" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"VD" = ( +/obj/structure/table/standard, +/obj/item/device/starcaster_news, +/obj/item/weapon/reagent_containers/food/snacks/meatsteak, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"VF" = ( +/obj/machinery/door/window/westleft{ + name = "Bar" + }, +/obj/machinery/power/apc/alarms_hidden, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"VJ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"VK" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"VO" = ( +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" + }, +/obj/item/beehive_assembly, +/obj/item/bee_smoker, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/weapon/tool/crowbar, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/bee_pack, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ + layer = 3 + }, +/turf/simulated/floor/grass, +/area/survivalpod/superpose/RestaurationBar) +"VQ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"VT" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"Wc" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Wt" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/holder, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"WA" = ( +/obj/machinery/computer/arcade/clawmachine, +/obj/machinery/light{ + dir = 1; + layer = 3 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"WV" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"WZ" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/structure/prop/statue/pillar/dark, +/obj/effect/map_effect/perma_light, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"Xp" = ( +/obj/structure/table/marble, +/obj/item/weapon/storage/box/glasses/meta, +/obj/item/weapon/storage/box/glasses/meta, +/obj/item/weapon/storage/box/glasses/coffeemug{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/weapon/storage/box/glasses/coffeecup{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"Xs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/melee/umbrella/random, +/obj/structure/table/rack, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/RestaurationBar) +"Xt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"XA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"XI" = ( +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"XS" = ( +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Yc" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 1; + dispense_reagents = list("iron","radium","lemon_lime","sugar","orangejuice","limejuice","sodawater","tonic","beer","kahlua","whiskey","redwine","whitewine","vodka","cider","gin","rum","tequilla","vermouth","cognac","ale","mead","bitters") + }, +/obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/RestaurationBar) +"Yf" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/communicator, +/obj/item/trash/plate, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/RestaurationBar) +"Yg" = ( +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/RestaurationBar) +"Ym" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics{ + req_access = null + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"Yn" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = null + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006; + req_access = list(5) + }, +/obj/structure/window/reinforced{ + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Yq" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/RestaurationBar) +"YX" = ( +/obj/item/weapon/gun/energy/sizegun, +/obj/item/device/bodysnatcher, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/handcuffs/legcuffs/fuzzy, +/obj/item/clothing/accessory/collar, +/obj/item/weapon/tape_roll, +/obj/item/device/perfect_tele/one_beacon, +/obj/item/weapon/disk/nifsoft/compliance, +/obj/item/selectable_item/chemistrykit, +/obj/item/selectable_item/chemistrykit, +/obj/item/selectable_item/chemistrykit, +/obj/item/selectable_item/chemistrykit, +/obj/item/capture_crystal, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/RestaurationBar) +"Zb" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/outdoors/grass/sif, +/area/template_noop) +"Zo" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/survivalpod/superpose/RestaurationBar) +"Zz" = ( +/obj/structure/bed/chair/oldsofa, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/RestaurationBar) +"ZL" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) +"ZR" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"ZS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/survivalpod/superpose/RestaurationBar) +"ZU" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/RestaurationBar) (1,1,1) = {" -KcKcKcKcKcKcKcKcKcAeAeAeCWLLAsAsAsAsGCAeAeAeKcKcKcKcKcKcKcKcKcKc -KcKcKcKcKcKcKcKcAeTibHcBhEsJeiNEMbsJhEWAbjTiAeKcKcKcKcVfRtRtRtKc -KcKcKcKcKcKcKcqVdshkhkhkORsJKhpotQsJpWNENEJHkDZbKcKcVfVfRtRtfZKc -KcKcKcKcKcKcKcepZoWtvqeDexsJNENENEsJpWNENEJHXAVTKcVfVfTuRtRtVfKc -KcKcKcKcKcKcVfVfZovzvzvzORsJsJsJsJsJpWNENEJHXAVfVfVfVfVfRtVfVfKc -KcKcKcKcKcVfVfOjFWORORORORORORORORORORORORORnJsjVfVKVfAeTnAeAeKc -KcKcKcKcVfVfVfVfAeORNElTORORORORORORORQQZzRnAeVfVfVfVfQavfCjAeKc -KcKcKcVffZfZfZVfAeTWmZUVORORxMogTEORORNbARIxAefZfZfZfZAevfxtAeKc -TuVfVfVffZPHQSAeAeNENENEORORoQxOPOORORPsDUJbAekzvMvMcTAeTnAeAeKc -AeAeAeAefiJSmpbUlNxMHQHQHQHQQmxOllHQHQHQbBAeTiJUEhNReEDVAJzNMMKc -AeXsOPAeXtNerdaYJgLRvsvsvsvsvsWZvsvsvsvsIOAeKPuMuMuMuMuMSSYfGNKc -TnvfvfTnCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiEAxnGNKc -iivfvfTnCiETCiCiCiTTCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiEAUHGNKc -AeAeAeAeAeAeAeMiSJAeCiCiCiqvQDQDAJNReFEhpBAemxAJAJAJAJHLsykeSzKc -AeBKSuBlSuBlSueKMYTiCiCiCizGDcxqsZBryTsZwgAeQXDcqxMBMBLcAeAeAeKc -AeBlqtBlqtBlqtBlBlAeVhCiCizGQhtjsZBrJosZcigCLAbmuuuMuMhrAeKcKcKc -AeOvAeLHAeHKAeLEBlAeCiCiCiEAuoLyuMGUGUGUvGAeAeAeAeKwKwAeAeAeAeKc -AerhAeVgAeZUAeEzBlslCiCiCiEAMBciOAjLizizAfTihufasCxNxNuXFkrOAeKc -AeAeAeAeAeAeAeAeAeAeAeCiCifcMBRxbrgGgGgGQKAexNxNxNxNxNxNxNxNAGKc -KcAeaSmprSmpmpmpmpxjLaCiCiSjsZRxsIgGgGXpgGGBxNxNxNxNxNxNxNxNKlKc -KctcmploFfEQmpFIFIqDAeCiCixGMBRxizATgGsPowAebJxNVJNjftxNxNFiKlKc -KcXSmploJfEQIRFIFIcKAeVhCiEAMBRxizgGgGDFgGKwxNxNgoYgnBxNxNIIKlKc -KcAeWVmpmpmpmpFIFITfLVCiCifcMBciKogGgGuOFlAeAesixNxNxNxNxNIIGIKc -KcAeAejvZLAeAeAeAeAeTiCiCiFOVQPEVFgGgGgGgGAqMidNxNxNxNxNxNDiAeKc -KcAexKeNyLAeLYVyvBAeFECiCiCiCiBXAeKmyvYcgGzAAeEexNxNxNxNxNpvAeKc -KcAeiyfqrgAelselbNAetCCiCiCiqpAeAeAeAeAeAeAeAeAeqZKwlnAeAeAeAeKc -KcAejvjvjvAeZLAeAeAeAeCiCiCiblAeqyuJhwldAexoAWGxLoIBffdPsYJQAeKc -KcAeYXmpmpmpmpxOxOZRAeCiCiCiecAewmmpmpBCAeySIBIBIBIBHVXIXIGDMiKc -KcDompPJuwZSmpxOxOsAgCVhCiCidaAeAeFVwpAeAeySYqIBWcIBnmKRpFOIAeKc -KcikmpPJVDZSIRxOxOeBAeCiCiCiCiNnAempmprSHHUqYqIBYqIBnztAGjKSAeKc -KcAeWVmpmzmpmpmpmpcLmUCiJjCiCiCiNdmplZHCAeqOjVOkOkboYmLGVOLGAeKc -KcAeAeAeAeAegCAeAeAeAeTiAeMFhILkAeAeAeAeAeAeAeYnnjnjtzAeAeAeAeKc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Tu +Ae +Ae +Tn +ii +Ae +Ae +Ae +Ae +Ae +Ae +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +"} +(2,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Vf +Ae +Xs +vf +vf +Ae +BK +Bl +Ov +rh +Ae +Ae +tc +XS +Ae +Ae +Ae +Ae +Ae +Ae +Do +ik +Ae +Ae +"} +(3,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Vf +Ae +OP +vf +vf +Ae +Su +qt +Ae +Ae +Ae +aS +mp +mp +WV +Ae +xK +iy +jv +YX +mp +mp +WV +Ae +"} +(4,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Vf +Vf +Ae +Ae +Tn +Tn +Ae +Bl +Bl +LH +Vg +Ae +mp +lo +lo +mp +jv +eN +fq +jv +mp +PJ +PJ +mp +Ae +"} +(5,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Kc +Vf +fZ +fZ +fi +Xt +Ci +Ci +Ae +Su +qt +Ae +Ae +Ae +rS +Ff +Jf +mp +ZL +yL +rg +jv +mp +uw +VD +mz +Ae +"} +(6,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Vf +Vf +fZ +PH +JS +Ne +Ci +ET +Ae +Bl +Bl +HK +ZU +Ae +mp +EQ +EQ +mp +Ae +Ae +Ae +Ae +mp +ZS +ZS +mp +Ae +"} +(7,1,1) = {" +Kc +Kc +Kc +Kc +Vf +Vf +Vf +fZ +QS +mp +rd +Ci +Ci +Ae +Su +qt +Ae +Ae +Ae +mp +mp +IR +mp +Ae +LY +ls +ZL +mp +mp +IR +mp +gC +"} +(8,1,1) = {" +Kc +Kc +qV +ep +Vf +Oj +Vf +Vf +Ae +bU +aY +Ci +Ci +Mi +eK +Bl +LE +Ez +Ae +mp +FI +FI +FI +Ae +Vy +el +Ae +xO +xO +xO +mp +Ae +"} +(9,1,1) = {" +Kc +Ae +ds +Zo +Zo +FW +Ae +Ae +Ae +lN +Jg +Ci +Ci +SJ +MY +Bl +Bl +Bl +Ae +mp +FI +FI +FI +Ae +vB +bN +Ae +xO +xO +xO +mp +Ae +"} +(10,1,1) = {" +Ae +Ti +hk +Wt +vz +OR +OR +TW +NE +xM +LR +Ci +TT +Ae +Ti +Ae +Ae +sl +Ae +xj +qD +cK +Tf +Ae +Ae +Ae +Ae +ZR +sA +eB +cL +Ae +"} +(11,1,1) = {" +Ae +bH +hk +vq +vz +OR +NE +mZ +NE +HQ +vs +Ci +Ci +Ci +Ci +Vh +Ci +Ci +Ae +La +Ae +Ae +LV +Ti +FE +tC +Ae +Ae +gC +Ae +mU +Ae +"} +(12,1,1) = {" +Ae +cB +hk +eD +vz +OR +lT +UV +NE +HQ +vs +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Vh +Ci +Ci +Ci +Ci +Ci +Ci +Vh +Ci +Ci +Ti +"} +(13,1,1) = {" +CW +hE +OR +ex +OR +OR +OR +OR +OR +HQ +vs +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Ci +Jj +Ae +"} +(14,1,1) = {" +LL +sJ +sJ +sJ +sJ +OR +OR +OR +OR +HQ +vs +Ci +Ci +qv +zG +zG +EA +EA +fc +Sj +xG +EA +fc +FO +Ci +Ci +Ci +Ci +Ci +Ci +Ci +MF +"} +(15,1,1) = {" +As +ei +Kh +NE +sJ +OR +OR +xM +oQ +Qm +vs +Ci +Ci +QD +Dc +Qh +uo +MB +MB +sZ +MB +MB +MB +VQ +Ci +qp +bl +ec +da +Ci +Ci +hI +"} +(16,1,1) = {" +As +NE +po +NE +sJ +OR +OR +og +xO +xO +WZ +Ci +Ci +QD +xq +tj +Ly +ci +Rx +Rx +Rx +Rx +ci +PE +BX +Ae +Ae +Ae +Ae +Nn +Ci +Lk +"} +(17,1,1) = {" +As +Mb +tQ +NE +sJ +OR +OR +TE +PO +ll +vs +Ci +Ci +AJ +sZ +sZ +uM +OA +br +sI +iz +iz +Ko +VF +Ae +Ae +qy +wm +Ae +Ae +Nd +Ae +"} +(18,1,1) = {" +As +sJ +sJ +sJ +sJ +OR +OR +OR +OR +HQ +vs +Ci +Ci +NR +Br +Br +GU +jL +gG +gG +AT +gG +gG +gG +Km +Ae +uJ +mp +FV +mp +mp +Ae +"} +(19,1,1) = {" +GC +hE +pW +pW +pW +OR +OR +OR +OR +HQ +vs +Ci +Ci +eF +yT +Jo +GU +iz +gG +gG +gG +gG +gG +gG +yv +Ae +hw +mp +wp +mp +lZ +Ae +"} +(20,1,1) = {" +Ae +WA +NE +NE +NE +OR +QQ +Nb +Ps +HQ +vs +Ci +Ci +Eh +sZ +sZ +GU +iz +gG +Xp +sP +DF +uO +gG +Yc +Ae +ld +BC +Ae +rS +HC +Ae +"} +(21,1,1) = {" +Ae +bj +NE +NE +NE +OR +Zz +AR +DU +bB +IO +Ci +Ci +pB +wg +ci +vG +Af +QK +gG +ow +gG +Fl +gG +gG +Ae +Ae +Ae +Ae +HH +Ae +Ae +"} +(22,1,1) = {" +Ae +Ti +JH +JH +JH +OR +Rn +Ix +Jb +Ae +Ae +Ci +Ci +Ae +Ae +gC +Ae +Ti +Ae +GB +Ae +Kw +Ae +Aq +zA +Ae +xo +yS +yS +Uq +qO +Ae +"} +(23,1,1) = {" +Kc +Ae +kD +XA +XA +nJ +Ae +Ae +Ae +Ti +KP +Ci +Ci +mx +QX +LA +Ae +hu +xN +xN +bJ +xN +Ae +Mi +Ae +Ae +AW +IB +Yq +Yq +jV +Ae +"} +(24,1,1) = {" +Kc +Kc +Zb +VT +Vf +sj +Vf +fZ +kz +JU +uM +Ci +Ci +AJ +Dc +bm +Ae +fa +xN +xN +xN +xN +si +dN +Ee +Ae +Gx +IB +IB +IB +Ok +Yn +"} +(25,1,1) = {" +Kc +Kc +Kc +Kc +Vf +Vf +Vf +fZ +vM +Eh +uM +Ci +Ci +AJ +qx +uu +Ae +sC +xN +xN +VJ +go +xN +xN +xN +qZ +Lo +IB +Wc +Yq +Ok +nj +"} +(26,1,1) = {" +Kc +Kc +Kc +Vf +Vf +VK +Vf +fZ +vM +NR +uM +Ci +Ci +AJ +MB +uM +Kw +xN +xN +xN +Nj +Yg +xN +xN +xN +Kw +IB +IB +IB +IB +bo +nj +"} +(27,1,1) = {" +Kc +Kc +Vf +Vf +Vf +Vf +Vf +fZ +cT +eE +uM +Ci +Ci +AJ +MB +uM +Kw +xN +xN +xN +ft +nB +xN +xN +xN +ln +ff +HV +nm +nz +Ym +tz +"} +(28,1,1) = {" +Kc +Vf +Vf +Tu +Vf +Ae +Qa +Ae +Ae +DV +uM +Ci +Ci +HL +Lc +hr +Ae +uX +xN +xN +xN +xN +xN +xN +xN +Ae +dP +XI +KR +tA +LG +Ae +"} +(29,1,1) = {" +Kc +Rt +Rt +Rt +Rt +Tn +vf +vf +Tn +AJ +SS +EA +EA +sy +Ae +Ae +Ae +Fk +xN +xN +xN +xN +xN +xN +xN +Ae +sY +XI +pF +Gj +VO +Ae +"} +(30,1,1) = {" +Kc +Rt +Rt +Rt +Vf +Ae +Cj +xt +Ae +zN +Yf +xn +UH +ke +Ae +Kc +Ae +rO +xN +xN +Fi +II +II +Di +pv +Ae +JQ +GD +OI +KS +LG +Ae +"} +(31,1,1) = {" +Kc +Rt +fZ +Vf +Vf +Ae +Ae +Ae +Ae +MM +GN +GN +GN +Sz +Ae +Kc +Ae +Ae +AG +Kl +Kl +Kl +GI +Ae +Ae +Ae +Ae +Mi +Ae +Ae +Ae +Ae +"} +(32,1,1) = {" +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc "} diff --git a/tgui/packages/tgui/interfaces/CharacterDirectory.js b/tgui/packages/tgui/interfaces/CharacterDirectory.js index 0749816aa7..9c7fc14968 100644 --- a/tgui/packages/tgui/interfaces/CharacterDirectory.js +++ b/tgui/packages/tgui/interfaces/CharacterDirectory.js @@ -71,14 +71,14 @@ export const CharacterDirectory = (props, context) => { - - - - - - -
- {items.map((item, i) => ( - - #{i + 1}: {item} - - ))} -
- - )) || ( -
- No items inserted. -
- )} - - - ); -}; diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js index e08be216d5..667c188df4 100644 --- a/tgui/packages/tgui/interfaces/VorePanel.js +++ b/tgui/packages/tgui/interfaces/VorePanel.js @@ -571,6 +571,7 @@ const VoreSelectedBellyOptions = (props, context) => { const { belly } = props; const { can_taste, + is_feedable, nutrition_percent, digest_brute, digest_burn, @@ -604,6 +605,14 @@ const VoreSelectedBellyOptions = (props, context) => { content={can_taste ? 'Yes' : 'No'} /> + +